-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
80 lines (69 loc) · 2.02 KB
/
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
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
<!DOCTYPE html>
<html>
<head>
<title>Document</title>
<link rel="stylesheet" href="style.css" />
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Roboto:wght@300&display=swap" rel="stylesheet">
</head>
<body>
<section class="center">
<p>Hola mundo</p>
</section>
<div class="inline-block">inline-block 1</div>
<div class="inline-block">inline-block 2</div>
<div class="container">
<article class="column right">1</article>
<article class="column right">2</article>
<article class="column right">3</article>
</div>
<div class="container">
<img src="img/Gohan.jpg" class="left">
<p>Soy un parrafo a la right</p>
</div>
<div class="inline">lala</div>
<div class="inline">lele</div>
<span>span 1</span>
<span>span 2</span>
<table>
<tr>
<th>Nombre</th>
<th>Apellido</th>
</tr>
<tr>
<td>Rodolfo</td>
<td>Olguin</td>
</tr>
<tr>
<td>Bruno</td>
<td>Olguin</td>
</tr>
<tr>
<td>Pedro</td>
<td>Olguin</td>
</tr>
</table>
<ul>
<li>Uno jaj a laa jkak ak a</li>
<li>Dos jka aj a jiswkm slls </li>
<li>Tres kakjakma a ajhakkja </li>
</ul>
<a href="http://www.google.cl">Ir a Google</a>
<p class="text">Esto es un texto</p>
<div class="margen">
Cerdo margen
</div>
<article id="fondo">Soy un background</article>
<h1 class="color">Propiedad color</h1>
<h1 id="titulo">Titulo</h1>
<p class="texto">Texto parrafo cerdo feliz</p>
<p class="texto especial">Texto parrafo cerdo feliz</p>
<p class="especial">Texto parrafo cerdo feliz</p>
<div>
<p>Hola cerdo feliz</p>
<h2>Soy un subtitulo</h2>
<h3>Soy un sub subtitulo</h3>
</div>
</body>
</html>