-
Notifications
You must be signed in to change notification settings - Fork 0
/
feisbok.html
36 lines (34 loc) · 1.09 KB
/
feisbok.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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>FEISBOK</title>
<link href="css/reset.css" rel="stylesheet">
<link href="css/style.css" rel="stylesheet">
</head>
<body>
<div id="header"><h1>Feisbok</h1></div>
<div id="main">
<div class="row">
<div class="row">
<label>Genero</label>
<select id="genero">
<option value="F">Femenino</option>
<option value="M">Masculino</option>
<option value="T">Todos</option>
</select>
</div>
<div class="row">
<label>Pasatiempos</label>
<input type="text" id="hobby"/>
</div>
<div class="row">
<button id="btnBuscar">Buscar</button>
</div>
</div>
<div id="resultados">
</div>
</div>
<script src="js/codigoJs.js"></script>
</body>
</html>