-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
53 lines (49 loc) · 2.39 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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Nunito:wght@300;400;500;700&display=swap" rel="stylesheet">
<link rel="stylesheet" href="./css/style.css">
<title>Formulario</title>
<!-- Primary Meta Tags -->
<title>Formulario</title>
<meta name="title" content="Formulario">
<meta name="description" content="Formulario de Prueba">
<!-- Open Graph / Facebook -->
<meta property="og:type" content="website">
<meta property="og:url" content="https://josueenriquez.github.io/Formulario/">
<meta property="og:title" content="Formulario">
<meta property="og:description" content="Formulario de Prueba">
<meta property="og:image" content="https://i.ibb.co/6stv6pz/a.png">
<!-- Twitter -->
<meta property="twitter:card" content="summary_large_image">
<meta property="twitter:url" content="https://josueenriquez.github.io/Formulario/">
<meta property="twitter:title" content="Formulario">
<meta property="twitter:description" content="Formulario de Prueba">
<meta property="twitter:image" content="https://i.ibb.co/6stv6pz/a.png">
</head>
<body>
<main class="main">
<h1 class="title">Formulario</h1>
<form class="form">
<label class="label" for="Name">Name</label>
<input class="input" type="text" id="Name" placeholder="Enter your name">
<label class="label" for="LastName">Last Name</label>
<input class="input" type="text" id="LastName" placeholder="Enter your last name">
<label class="label" for="Email">Email</label>
<input class="input" type="text" id="Email" placeholder="Enter your email">
<label class="label" for="User">User</label>
<input class="input" type="text" id="User" placeholder="Enter your User">
<label class="label" for="Password">Password</label>
<input class="input" type="text" id="Password" placeholder="Enter your Password">
<label class="label" for="color_of_preference">Color Preferido</label>
<input class="input input-color" type="color" id="color_of_preference">
<input class="button label" type="button" value="Log In">
</form>
</main>
</body>
</html>