-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
34 lines (32 loc) · 1.38 KB
/
index.html
File metadata and controls
34 lines (32 loc) · 1.38 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Document</title>
</head>
<body>
<div style="background-color: green; color: white">
<h1>Ciudad de México</h1>
<p>Lorem ipsum dolor sit amet, consectetur adipisicing elit. Tempora cupiditate, quam! Eligendi obcaecati aspernatur, vel accusamus. Quo ea, porro repellendus, quasi ipsum rerum nihil mollitia, <span style= "color: yellow"> atque repudiandae commodi eum.</span> Dicta.</p>
</div>
<div style="background-color: red; color: white">
<h2>Lima</h2>
<p>Lima es la capital de la <span style ="color: yellow">República del
Perú</span> y de la provincia homónima. Se sitúa en la costa central
del país, a orillas del océano Pacífico, conformando una extensa y
populosa área urbana conocida como Lima Metropolitana, flanqueada por
el desierto costero y extendida sobre los valles de los ríos Chillón,
Rímac y Lurín.
</p>
</div>
<div style="background-color: blue; color: white">
<h2>Santiago</h2>
<p>Santiago, llamada también Santiago de Chile, es la capital de
<span style ="color: yellow">Chile</span> y de la región Metropolitana
de Santiago. Es el principal núcleo urbano del país y su área
metropolitana se conoce también con el nombre de Gran Santiago.
</p>
</div>
</div>
</body>
</html>