-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathValidadorsumativo.html
More file actions
55 lines (54 loc) · 1.59 KB
/
Validadorsumativo.html
File metadata and controls
55 lines (54 loc) · 1.59 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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
<!DOCTYPE html>
<html>
<head>
<meta charset='utf-8'>
<meta http-equiv='X-UA-Compatible' content='IE=edge'>
<title>mi pagina</title>
<meta name='viewport' content='width=device-width, initial-scale=1'>
<meta name="author" content="John Doe">
<meta name="keywords" content="html, javascript, css">
<meta name="description" content="Jardinería">
<link rel='stylesheet' href='style.css'>
<script src='main.js'></script>
</head>
<body>
<h1>Mapa del sitio</h1>
<table>
<thead>
<tr>
<th>Sección</th>
<th>URL</th>
</tr>
</thead>
<tbody>
<tr>
<td>Home</td>
<td><a href="http://www.mipagina.com/home">http://www.mipagina.com/home</a></td>
</tr>
<tr>
<td>Blog</td>
<td><a href="http://www.mipagina.com/blog">http://www.mipagina.com/blog</a></td>
</tr>
<tr>
<td>Galería</td>
<td><a href="http://www.mipagina.com/galeria">http://www.mipagina.com/galeria</a></td>
</tr>
</tbody>
</table>
<h1>Búsqueda</h1>
<form>
<div>
<label for="pclave">Palabra clave</label>
<input type="text" id="pclave"/><br>
</div>
<div>
<label for="autor">Autor</label>
<input type="text" id="autor"/><br>
</div>
<div>
<input type="submit" value="Buscar"/>
<input type="reset" value="Restablecer"/>
</div>
</form>
</body>
</html>