forked from ActoSoft/WebDevCourse-HTML-Newspaper-exercise
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
69 lines (60 loc) · 2.41 KB
/
Copy pathindex.html
File metadata and controls
69 lines (60 loc) · 2.41 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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Newpaper</title>
</head>
<body>
<header>
<nav>
<a href="deportes.html">DEPORTES</a>
<a href="internacional.html">INTERNACIONAL</a>
<a href="contacto.html">CONTACTO</a>
</nav>
<div>
<p id="encabezado_principal"><h1>Notimex</h1></p>
</div>
<div class="style_encabezado">
<span class="descripcion_periodico"><h2>servicio de experiencias de noticias digitales (END)
envían directamente a sus dispositivos la mejor cobertura deportiva en contenido de formato múltiple que los
para los fanáticos del fútbol, basquetbol </h2>
<figure>
<img src="img/logo_notimex.gif" alt="logo" style ="width:408px; height:188px;">
<figcaption>Logo Notimex</figcaption>
</figure>
<br>
</span>
</div>
</header>
<main>
<section>
<h3>Era Digital</h3>
<p>
Nuesto portal digital de noticias ha Contribuido a nuestras vidas temas de deportes, salud noticias Internacionales
en la cual los usuarios obtienen información y entretenimiento personalizado de manera
gratuita con tan sólo acceder al sitio.
</p>
</section>
</main>
<footer>
<div class="rights_reserved">
<span>Derechos reservados @ Grupo Notimex 2020</span>
</div>
<nav>
<a href="">Sucripciones</a>
<a href="">Anunciate</a>
<a href="">Historia</a>
<a href="">Aviso Legal</a>
<a href="">Aviso Privacidad</a>
</nav>
<div class="social-network">
<nav>
<a href="https://web.facebook.com/agencianotimex?_rdc=1&_rdr>facebook">facebook </a>
<a href="https://www.instagram.com/notimexfoto/?hl=es-la">instagram</a>
<a href="https://twitter.com/Notimex">twiter</a>
</nav>
</div>
</footer>
</body>
</html>