-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpolitica.html
142 lines (120 loc) · 5.67 KB
/
politica.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
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
<!DOCTYPE html>
<html lang="pt-BR">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="css/header.css">
<link rel="stylesheet" href="css/main-template.css">
<link rel="stylesheet" href="css/footer.css">
<title>GNEWS - Política</title>
</head>
<body>
<header class="header">
<div class="content-container">
<p class="logo"><a href="index.html">GNEWS</a></p>
<div class="menu-btn">
<span class="first"></span>
<span class="second"></span>
<span class="third"></span>
</div>
<nav class="navbar">
<ul class="menu">
<li class="menu-items"><a href="tecnologia.html">Tecnologia</a></li>
<li class="menu-items"><a href="negocio.html">Negócios</a></li>
<li class="menu-items"><a href="politica.html">Política</a></li>
<li class="menu-items"><a href="curiosidades.html">Curiosidades</a></li>
<li class="menu-items"><a href="ciencia.html">Ciência</a></li>
</ul>
</nav>
</div>
</header>
<main class="main-container">
<h1 class="section-title">Política</h1>
<div class="destaque">
<a href="#" onclick="event.preventDefault()" class="image-link">
<img src="images/cadeiado.jpg" alt="">
</a>
<a href="#" onclick="event.preventDefault()" class="title-link">
<h2>
Desculpa! Sem notícia...
</h2>
</a>
</div>
<div class="news-container">
<section class="news-section">
<a href="#" onclick="event.preventDefault()" class="image-link">
<img src="images/cadeiado.jpg" alt="">
</a>
<article class="content">
<span>Política</span>
<a href="#" onclick="event.preventDefault()">Desculpe! Sem notícia...</a>
</article>
</section>
<section class="news-section">
<a href="#" onclick="event.preventDefault()" class="image-link">
<img src="images/cadeiado.jpg" alt="">
</a>
<article class="content">
<span>Política</span>
<a href="#" onclick="event.preventDefault()">Desculpe! Sem notícia...</a>
</article>
</section>
<section class="news-section">
<a href="#" onclick="event.preventDefault()" class="image-link">
<img src="images/cadeiado.jpg" alt="">
</a>
<article class="content">
<span>Política</span>
<a href="#" onclick="event.preventDefault()">Desculpe! Sem notícia...</a>
</article>
</section>
<section class="news-section">
<a href="#" onclick="event.preventDefault()" class="image-link">
<img src="images/cadeiado.jpg" alt="">
</a>
<article class="content">
<span>Política</span>
<a href="#" onclick="event.preventDefault()">Desculpe! Sem notícia...</a>
</article>
</section>
<section class="news-section">
<a href="#" onclick="event.preventDefault()" class="image-link">
<img src="images/cadeiado.jpg" alt="">
</a>
<article class="content">
<span>Política</span>
<a href="#" onclick="event.preventDefault()">Desculpe! Sem notícia...</a>
</article>
</section>
<section class="news-section">
<a href="#" onclick="event.preventDefault()" class="image-link">
<img src="images/cadeiado.jpg" alt="">
</a>
<article class="content">
<span>Política</span>
<a href="#" onclick="event.preventDefault()">Desculpe! Sem notícia...</a>
</article>
</section>
</div>
</main>
<footer class="footer">
<p>© GNEWS - 2022</p>
<ul class="social-links">
<li>
<a href="#" onclick="event.preventDefault()" ><img src="images/gmail-img.svg" alt="Gmail"></a>
</li>
<li>
<a href="#" onclick="event.preventDefault()" ><img src="images/facebok-img.svg" alt="Facebook"></a>
</li>
<li>
<a href="#" onclick="event.preventDefault()" ><img src="images/twitter-img.svg" alt="Twitter"></a>
</li>
<li>
<a href="#" onclick="event.preventDefault()" ><img src="images/instagram-img.svg" alt="Instagram"></a>
</li>
</ul>
</footer>
<script src="js/header.js"></script>
</body>
</html>