-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
41 lines (39 loc) · 928 Bytes
/
index.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
<!DOCTYPE html>
<html>
<head>
<title>Sistema de Comentarios</title>
<link rel="stylesheet" type="text/css" href="css/style.css">
<link href='http://fonts.googleapis.com/css?family=Indie+Flower' rel='stylesheet' type='text/css'>
<link href='http://fonts.googleapis.com/css?family=Roboto' rel='stylesheet' type='text/css'>
</head>
<body>
<p class="titulo">SISTEMA DE COMENTARIOS</p>
<form action="#">
<table>
<tr>
<td class="subtitulos">Usuario</td>
<td><input type="text" name="nombre" id="usuario"/></td>
</tr>
<br>
<br>
<tr>
<td class="subtitulos">Comentario</td>
<td><textarea rows="5" cols="4" id="comentario"></textarea></td>
</tr>
<tr>
<td colspan="2"><input type="submit" name="enviar" id="boton" /></td>
</tr>
</table>
</form>
<br>
<br>
<p class="titulo">COMENTARIOS</p>
<div id="contenedor">
<table>
<tr>
<td><div class="comentarios">Inserte comentario aqui</div></td>
</tr>
</table>
</div>
</body>
</html>