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
113 lines (110 loc) · 3.73 KB
/
Copy pathindex.html
File metadata and controls
113 lines (110 loc) · 3.73 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
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
102
103
104
105
106
107
108
109
110
111
112
113
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Periodico Digital Noticioso</title>
<link rel="stylesheet" href="/css/index.css">
</head>
<body>
<header class="Header-general">
<section>
<!-- Esto es para el logo-->
<div class="Logo-container">
</div>
<!-- Esto es para el titulo-->
<div class="Menu-container">
<img
src="/images/Logo_trasnparente.png"
alt="Logo"
class="photo-logo"
>
<img
src="/images/Nombre_trasnparente.png"
alt="Nombre periodico"
>
<p class="Titulos">Periodico Digital Informativo</p>
<nav>
<a href="index.html" class="nav-botones">Inicio</a>
<a href="Deportes.html" class="nav-botones">Deportes</a>
<a href="Internacional.html" class="nav-botones">Internacional</a>
<a href="Contacto.html" class="nav-botones">Contactanos</a>
</nav>
</div>
</section>
</header>
<main class="Body-general">
<section>
<h1 class="Subtitulos">
<a href="Deportes.html"
style="color: #ffffff;"
>Deportes</a>
</h1>
<table style=”width: 100%”>
<colgroup>
<col style="width: 50%"/>
<col style="width: 50%"/>
</colgroup>
<tr>
<td>
<a href="Deportes.html#Futbol" class="Secciones">Futbol</a>
<img
src="/images/Futbol.jpg"
alt="Futbol"
width="100%"
>
</td>
<td>
<a href="Deportes.html#Basquetbol" class="Secciones">Basquetbol</a>
<img
src="/images/Basquetball.jpg"
alt="Basquetball"
width="100%"
>
</td>
</tr>
</table>
</section>
<br>
<section>
<h1 class="Subtitulos">
<a href="Internacional.html"
style="color: #ffffff;"
>Internacional</a>
</h1>
<table style=”width: 100%”>
<colgroup>
<col style="width: 50%"/>
<col style="width: 50%"/>
</colgroup>
<tr>
<td>
<a href="Internacional.html#EU" class="Secciones">Estados Unidos</a>
<img
src="/images/Estados Unidos.jpg"
alt="E.U."
width="90%"
>
</td>
<td>
<a href="Internacional.html#Europa" class="Secciones">Europa</a>
<img
src="/images/Europa.jpg"
alt="Europa"
width="100%"
>
</td>
</tr>
</table>
</section>
</main>
<footer class="footer">
<img
src="/images/Logo_trasnparente.png"
alt="Logo"
class="photo-logo"
>
<p>Derechos reservados Omar Osorio 2020</p>
</footer>
</body>
</html>