-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathregistro.html
More file actions
38 lines (38 loc) · 1.71 KB
/
registro.html
File metadata and controls
38 lines (38 loc) · 1.71 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
31
32
33
34
35
36
37
38
<!DOCTYPE html>
<html>
<link rel="stylesheet" href="style.css">
<head>
<title>registro</title>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, user-scalable=no, initial-scale=1, maximum-scale=1, minimum-scale=1">
</head>
<body>
<header>
<input type="checkbox" id="btn-menu">
<label id="btn" for="btn-menu"><img src="imagenes/iconmenu.png" width="35px" height="30px"></label>
<img id="logo" src="imagenes/logo.png" width="90px" height="46px">
<nav class="menu">
<ul>
<li><img src="imagenes/logo.png" width="100px" height="46px"></li>
<li><a href="">CURSOS</a></li>
<li><a href="">TALLLERES</a></li>
<li><a href="">ARTICULOS</a></li>
<li><a href="">INICIAR SESIÓN</a></li>
</ul>
</nav>
</header>
<form action="" method="" id="registro">
<input type="text" placeholder="name" name="name">
<input type="text" placeholder="lastname" name="lastname">
<input type="number" placeholder="age" name="age">
<select name="typeid">
<option>cedula ciudadania</option>
<option>tarjeta de identidad</option>
<option>pasaporte</option>
</select>
<input type="number" placeholder="id" name="id">
<input type="submit" value="REGISTRY" name="reg">
</form>
<footer>Untitled. All rights reserved © Design: <a href="http://html5up.net">HTML5 UP</footer>
</body>
</html>