-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathnoticias.html
143 lines (137 loc) · 4.3 KB
/
noticias.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
143
<!DOCTYPE html>
<html lang="pt-br">
<head>
<title>Document</title>
<meta charset="UTF-8">
<link rel="stylesheet" href="css/global.css">
<link rel="stylesheet" href="css/noticias.css" />
<link rel="stylesheet" href="css/responsive.css" media="screen and (max-width: 950px)" />
<meta name="viewport" content="width=device-width, initial-scale=1.0">
</head>
<body>
<header>
<div class="container">
<div class="menu-section">
<div class="imagem">
<a href="#">
<img src="img/logo-white.png" alt="Logo Dados Abertos RN" id="logo" />
</a>
</div>
<div class="menu-toggle">
<div class="one"></div>
<div class="two"></div>
<div class="three"></div>
</div>
<nav class="navbar">
<ul>
<li>
<a href="#">Início</a>
</li>
<li>
<a href="#">Notícias</a>
</li>
<li>
<a href="#">Produções Acadêmicas</a>
</li>
<li>
<a href="#">Portais de Transparência</a>
</li>
</ul>
</nav>
</div>
</div>
<section class="hero">
<div class="container">
<div>
<h2>
Bem-vindo ao portal <br> de Dados Abertos RN</h2>
<p>
Aqui você sobre o que acontece em nosso Estado.
</p>
<a href="#" class="button-white ">Saiba mais</a>
</div>
</div>
</section>
</header>
<section class="noticias">
<div class="container">
<div class="titulo">
<h1>Veja as principais notícias do Rio Grande do Norte</h1>
</div>
<div class="item">
<div class="conteudo">
<div class="intro">
<h2 class="title">Título de notícia </h2>
<p class="description">
Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the
industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and
scrambled it to make a type specimen book.
Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the
industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and
scrambled it to make a type specimen book.
</p>
<a href="#" class="button" id="btn-noticias">Saiba mais</a>
</div>
<div class="slide">
<div class="image"></div>
</div>
</div>
</div>
</div>
</section>
<footer class="footer">
<div class="container">
<div class="conteudo">
<div class="logo">
<a href="#">
<img src="img/logo2.png" alt="logo" id="logo2">
</a>
</div>
<div class="menu">
<ul>
<li><a href="#">Início</a></li>
<li><a href="#">Notícias</a></li>
<li><a href="#">Produções Acadêmicas</a></li>
<li><a href="#">Portais de Transparência</a></li>
</ul>
</div>
<div class="sociais">
<ul>
<li>
<a href="#">
<img src="img/facebook.png" alt="icone">
</a>
<a href="#">
<img src="img/instagram.png" alt="icone">
</a>
<a href="#">
<img src="img/telegram.png" alt="icone">
</a>
<a href="#">
<img src="img/share.png" alt="icone">
</a>
</li>
</ul>
</div>
<div class="form">
<h1>Dúvidas ou Sugestões?</h1>
<form action="#">
<div class="wrapper">
<input type="text" id="email">
</div>
<div class="wrapper">
<textarea type="text" id="mensagem"></textarea>
</div>
<button type="submit" class="button" id="btn-contato">Enviar</button>
</form>
</div>
</div>
<div class="copy">
copyright © 2020 Dados Abertos Rio Grande do Norte.
</div>
</div>
</footer>
<script src="js/noticias.js"></script>
<script src="js/menu.js"></script>
</body>
</html>