-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindexpagina.html
96 lines (95 loc) · 2.78 KB
/
indexpagina.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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
<!DOCTYPE html>
<html lang="en">
<head>
<title>Mi primera web</title>
<style>
table, th, td {
border: 1px solid black;
}
</style>
</head>
<body>
<table style="width: 500px;">
<thead>
<tr>
<th>Producto</th>
<th>Precio</th>
</tr>
</thead>
<tbody>
<tr>
<td>Laptop</td>
<td>$350.000</td>
</tr>
<tr>
<td>Desktop PC</td>
<td>$450.000</td>
</tr>
<tr>
<td>Projector</td>
<td>$150.000</td>
</tr>
</tbody>
<tfoot>
<td></td>
<td>Total: $950.000</td>
</tfoot>
</table>
<!-- ul es lista no ordenada-->
<ul>
<li>Elemento 1</li>
<li>Elemento 2</li>
<li>Elemento 3</li>
<li>Elemento 4</li>
</ul>
<!-- ol es lista ordenada-->
<ol>
<li>Elemento 1</li>
<li>Elemento 2</li>
<li>Elemento 3</li>
<li>Elemento 4</li>
<li>
<ol>
<li style="list-style-type: lower-alpha;">sub elemento 1</li>
<li style="list-style-type: lower-alpha;">sub elemento 2</li>
<li style="list-style-type: lower-alpha;">sub elemento 3</li>
</ol>
</li>
</ol>
<form action="/formulario" method="POST">
<label for="nombre">Nombre</label>
<input value="nomito" type="text" id="nombre" name="nombre" placeholder="Nombre" />
<br>
<label for="apellido">Apellido</label>
<input value="feliz" type="text" id="apellido" name="apellido" placeholder="Apellido" />
<br>
<label for="cometario">Comentario</label>
<br>
<textarea cols="50" rows="10" id="cometario" placeholder="Ingrese cometario" name="cometario">este es un valor por defecto</textarea>
<br>
<button type="button">Tipo botón</button>
<button type="reset">Tipo reset</button>
<button type="submit">Tipo submit</button>
</form>
<h1>Mi primer heading</h1>
<h2>Mi segundo heading</h2>
<h3>Mi tercer heading</h3>
<h4>Mi cuarto heading</h4>
<h5>Mi quinto heading</h5>
<h6>Mi sexto heading</h6>
<p>Esta es una página web</p>
<P>Con excelente información</P>
<hr>
<h2>La información es correcta</h2>
<p>
Este texto es <span style="color:blue">mucho más largo</span>
y es para mostrar <br><br>
la etiqueta de span!
</p>
<!-- este texto es un comentario y no
aparece en la página -->
<a target="_blank" href="https://www.google.cl">Ir a google</a>
<br>
<img src="img/python-logo.png" height="400" />
</body>
</html>