-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
56 lines (50 loc) · 1.73 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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
<!DOCTYPE html>
<html lang="pt-BR">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="css/style.css">
<title>Rocket sect</title>
</head>
<body>
<div class="container">
<nav>
<a href="index.html">
<img src="assets/logo.svg" alt="Logo da Rocket sect">
</a>
<ul>
<li>
<a href="#">Início</a>
</li>
<li>
<a href="#">Serviços</a>
</li>
<li>
<a href="#">Contato</a>
</li>
</ul>
</nav>
<main>
<img src="assets/img1.svg" alt="Desenho de uma mulher com um laptop do lado">
<section>
<h1>
Seus dados estão <span>protegidos</span>?
</h1>
<p>
A informação é fundamental e de <span>extrema importância</span> para qualquer empresa.
</p>
<p>
Aqui vai um <strong>texto</strong> como se fosse uma empresa de <span>segurança da informação</span> apresentando o seu produto e com o texto todo estilizado.
</p>
</section>
</main>
<footer>
<div class="line"></div>
<p>
Para mais informações nos siga no instagram <a href="https://www.instagram.com/filipe_santos_07" target="_blank">@rocketsect</a>
</p>
</footer>
</div>
<img class="padlock" src="assets/padlock-decoration.svg" alt="Desenho de um cadeado na parte inferior esquerda da tela">
</body>
</html>