-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathindex.html
More file actions
30 lines (28 loc) · 1.06 KB
/
index.html
File metadata and controls
30 lines (28 loc) · 1.06 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="./css/reset.css">
<link href="https://fonts.googleapis.com/css?family=Lato:400,900" rel="stylesheet">
<link rel="stylesheet" href="./css/main.css">
<title>Formulario</title>
</head>
<body>
<div class="container">
<div class="form__top">
<h2>Formulario <span>Registro</span></h2>
</div>
<form class="form__reg" action="">
<input class="input" type="text" placeholder="👤 Nombre" required autofocus>
<input class="input" type="email" placeholder="✉ Email" required>
<input class="input" type="text" placeholder="📞 Telefono" required>
<input class="input" type="text" placeholder="⌂ Dirección" required>
<div class="btn__form">
<input class="btn__submit" type="submit" value="REGISTRAR">
<input class="btn__reset" type="reset" value="LIMPIAR">
</div>
</form>
</div>
</body>
</html>