forked from NateWr/html-css-project
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
48 lines (42 loc) · 1.24 KB
/
index.html
File metadata and controls
48 lines (42 loc) · 1.24 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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
<html lang="en">
<head>
<link rel="stylesheet" href="index.css">
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
</head>
<body>
<header>
<h1>Only you can save the world!</h1>
<p>desde hace mucho tiempo hemos visto como cada vez se habla mas
del cambio climatico, algunos se lo toman en serio, puede que
otros se burlen de ello, pero, ¿Vale la pena tomar el riesgo
de esperar a ver si es verdad? Yo personalmente creo que no y
por eso este blog.
</p>
</header>
<main>
<article>
<h2>esta es la imagen numero uno</h2>
<img src="img/img1.jpg" alt="">
<p>para mas información</p>
<a href="">visitanos aquí</a>
</article>
<article>
<h2></h2>
<img src="img/img2.jpg" alt="">
<p></p>
<a href=""></a>
</article>
<article>
<h2></h2>
<img src="img/img3.jpg" alt="">
<p></p>
<a href=""></a>
</article>
</main>
<footer>
<h3>texto a escribir</h3>
</footer>
</body>
</html>