-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathejercicio.html
101 lines (82 loc) · 2.46 KB
/
ejercicio.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
97
98
99
100
101
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html>
<head>
<meta http-equiv="content-type" content="text/html; charset=utf-8">
<title>Ejercicio</title>
<link rel="stylesheet" href="estilo.css" type="text/css" media="screen" charset="utf-8" />
<link rel="stylesheet" href="estilo2.css" type="text/css" media="screen" charset="utf-8" />
<style type="text/css" media="screen">
/* @import url ("estilo3.css");*/
body{
font-size:12pt;
}
div#contenedor{
width: 80%;
margin-left: auto;
margin-right: auto;
border: 1px solid black;
}
div#xy{
color: red;
border:1px solid black;
margin: 20px;
padding: 20px;
width: 200px;
}
p{
font-size:2em;
}
h1{
margin: 40px;
padding: 20px;
color: #334455 !important;
}
li em { color : olive ;}
h1 em , h2 em , h3 em { color : red ; }
img[title='prueba'] {
border:3px solid red;
width: 250px;
}
*[lang|="it"]{
font-family: SimSum-18030, SimHei, serif;
border: 1px solid black;
font-size: 19pt;
}
blockquote:before {
content : '"';
font-size:24px;
color : purple;
}
blockquote :after {
content: '"';
font-size:24px ;
color:purple;
}
</style>
</head>
<body>
<div id="contenedor">
<div id="contenido">
<h1 id="titulo1">Prueba de titulo1 </h1>
<h2 id="titulo2">Prueba de titulo2</h2>
<h3 id="titulo3"><em>Prueba de titulo3 EM</em></h3>
<h4 id="titulo4">Prueba de titulo4</h4>
<h5 id="titulo5">Prueba de titulo5</h5>
<img src="dog.jpg" title="prueba" />
<li>
<ul>Prueba 1</ul>
<ul>
<em>Prueba </em>
</ul>
</li>
<div id="xy">
<p>Prueba.</p>
</div>
<blockquote>Esto es una prueba de blokquote.!</blockquote>
<p>Esto es una prueba de Parrafo!</p>
<p lang="it-CH"> Questa é la storia di un mondo ideale </p>
</div>
</div>
</body>
</html>