-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
37 lines (35 loc) · 1.85 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
<!DOCTYPE html>
<html lang="es">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Pastefy</title>
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link rel="stylesheet" href="https://fonts.googleapis.com/css2?family=Roboto+Mono:ital,wght@0,100..700;1,100..700&family=Roboto:ital,wdth,wght@0,75..100,100..900;1,75..100,100..900&display=swap">
<link rel="stylesheet" href="/styles/index.css">
<link rel="stylesheet" href="/styles/render-styles.css">
<script type="module" src="scripts/index.js" defer></script>
<meta name="theme-color" content="#4b69ff">
<link rel="shortcut icon" href="/assets/icons/favicon.svg" type="image/x-icon">
<meta name="author" content="Jhonatan Seminario">
</head>
<body class="hidden">
<main>
<section id="hero">
<h1 class="title">Bienvenido a <span class="accent">Pastefy</span></h1>
<p class="description">Pegar y compartir nunca fue tan fácil.</p>
<div class="background"></div>
</section>
<div class="form">
<label class="label" for="titleInput">Título</label>
<input class="input title-input" type="text" id="titleInput" placeholder="Escribe un título, si lo prefieres" maxlength="128" autocomplete="off">
<label class="label" for="pasteInput">Contenido</label>
<textarea class="input paste-input" id="pasteInput" placeholder="Introduce tu texto aquí..."
maxlength="100000" autocomplete="off"></textarea>
<button class="button send-button" id="sendButton">Crear</button>
</div>
<div class="notification hidden-notification">El enlace ha sido copiado al portapapeles</div>
</main>
</body>
</html>