forked from Launch-X-Latam/MisionFrontEnd
-
Notifications
You must be signed in to change notification settings - Fork 0
/
1.-selectores.html
60 lines (47 loc) · 1.19 KB
/
1.-selectores.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Selectores</title>
<style>
*{
font-family: Arial, Helvetica, sans-serif;
}
body{
background-color: aqua;
}
p{
color: red;
text-align: center;
}
#titulo{
color: rgb(200,150,220);
text-align: right;
}
.izquierda{
color: green;
}
p.izquierda{
text-decoration: underline;
text-align: left;
}
.contraste{
background-color: black;
}
h1, h2, p{
font-weight: bold;
}
/* Comentario CSS */
</style>
</head>
<body>
<h1>Header simple</h1>
<h2 id="titulo" class="izquierda">Header con id Titulo</h2>
<p>Parrafo simple</p>
<h3 class="izquierda">Prueba clase Header 3</h3>
<p class="izquierda">Prueba clase parrafo</p>
<h3 class="izquierda contraste">Prueba multiples clases parrafo</h3>
</body>
</html>