-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
42 lines (41 loc) · 1.63 KB
/
index.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
<!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">
<title>RocketNews</title>
<link rel="stylesheet" href="./style/style.css">
</head>
<body>
<main>
<div id="main">
<header>
<img src="./assets/images/logo.svg" alt="logo-página" id="logo">
</header>
<div>
<h2>atualize ideias e informações em 5 minutos.</h2>
<p id="p1"><strong>tudo que você precisa saber para começar o seu dia bem e informado</strong><br></p>
<p id="p2">notícias sobre o universo Rocketseat, e tudo o que precisa para começar o seu dia melhor.<br>
perfeito para se preparar para codar ☕</p>
</div>
<form action="" id="form-email">
<label for="email" id="label">Insira seu e-mail:<br></label>
<div class="form-shadow">
<input type="email" name="email" form="form-email" id="email" placeholder="oi@email.com" autocomplete="email">
<button type="submit" form="form-email" name="button" id="btn" autofocus onclick="alert('Inscrição completa')"><img src="./assets/images/send.svg" alt="botao-enviar"></button>
</div>
</form>
<div id="read-first">
<a href="#">
<p id="last-text">deixe-me ler primeiro</p>
<img src="./assets/images/arrow-right.svg" id="right-arrow" alt="seta-direita">
</a>
</div>
</div>
</main>
<aside>
<img src="./assets/images/read_news.jpg" alt="homem-lendo" id="man">
</aside>
</body>
</html>