-
Notifications
You must be signed in to change notification settings - Fork 0
/
index_styles.html
81 lines (78 loc) · 2.47 KB
/
index_styles.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
<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=Nunito:ital,wght@0,200..1000;1,200..1000&family=Yarndings+20+Charted&display=swap" rel="stylesheet">
<link rel="stylesheet" href="/assets/css/styles.css"/>
</head>
<body>
<section class="center">
<p>Hola mundo!</p>
</section>
<div class="inline-block">inline block</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="/assets/img/stardew_valley.png" class="left">
<p>Soy un parrafo a la derecha</p>
</div>
<div class="inline">lala</div>
<div class="inline">lele</div>
<span>span 1</span>
<span>span 2</span>
<article id="position">Soy prop de posicion</article>
<table>
<thead>
<tr>
<th>Nombre</th>
<th>Apellido</th>
</tr>
</thead>
<tbody>
<tr>
<td>Roberto</td>
<td>Leiva</td>
</tr>
<tr>
<td>Chanchito</td>
<td>Feliz</td>
</tr>
<tr>
<td>Perrito</td>
<td>Triste</td>
</tr>
</tbody>
</table>
<ul>
<li>Uno Uno Uno Uno Uno Uno</li>
<li>Dos Dos Dos Dos Dos Dos Dos Dos </li>
<li>Tres Tres Tres Tres Tres Tres</li>
</ul>
<a href="https:/www.google.com">Chanchito feliz</a>
<p class="text">Esto es un texto </p>
<div class="margen">
Chanchito de margen
</div>
<article id="fondo">
Soy la propiedad de background
</article>
<h1 class="color">propiedad color</h1>
<h1 id="titulo">Titulo</h1>
<p class="texto">Texto parrafo chanchito feliz</p>
<p class="texto especial">Texto parrafo chanchito feliz</p>
<p class="especial">Texto parrafo chanchito feliz</p>
<div>
<p>Hola chanchito feliz!</p>
<h2>Soy un subtitulo</h2>
<h3>Soy un sub-subtitulo</h3>
</div>
</body>
</html>