-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
60 lines (60 loc) · 2.22 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
57
58
59
60
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Landing Page</title>
<link rel="stylesheet" href="./style/style.css">
<link href="https://cdn.jsdelivr.net/npm/[email protected]/font/bootstrap-icons.css" rel="stylesheet">
</head>
<body>
<header class="cabecalho">
<div class="cabecalho__menu">
<div class="logo">
<img src="./template/Logo.png" alt="Logo">
</div>
<div class="menu">
<a href="">Features</a>
<a href="">Pricing</a>
<a href="">Enterprise</a>
<a href="">Careers</a>
</div>
</div>
<div class="cabecalho__profile">
<a href="">Open an Account</a>
<a class="cabecalho__profile__login" href="">
<i class="bi bi-person-circle"></i>
<p>Sign In</p>
</a>
</div>
</header>
<div class="sub_cabecalho">
<h1>Start monitoring your website like a pro</h1>
<h3>Get a bird's eye view with our customizable dashboard. Stay on top of things! Revamp your work process with our game-changing feature. Boost productivity and efficiency!</h3>
<div class="sub_cabecalho__botoes">
<a href="">Try for free</a>
<a href="">
<p>View Pricing</p>
<i class="bi bi-arrow-right-short"></i>
</a>
</div>
</div>
<main>
<div class="principal">
<img class="template" src="./template/full.png" alt="white-template">
</div>
</main>
<footer class="rodape">
<div class="rodape__item">
<p>Trusted by these companies</p>
<div class="rodape__item__links">
<a><img src="./template/Google.png" alt="Google"></a>
<a><img src="./template/Slack.png" alt="Slack"></a>
<a><img src="./template/Trustpilot.png" alt="Trustpilot"></a>
<a><img src="./template/CNN logo.png" alt="CNN"></a>
<a><img src="./template/Clutch.png" alt="Clutch"></a>
</div>
</div>
</footer>
</body>
</html>