-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
43 lines (42 loc) · 1.44 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Sociau</title>
<link rel="stylesheet" href="./styles/root.css">
<link rel="stylesheet" href="./styles/responsive.css">
<link rel="stylesheet" href="./styles/top-menu.css">
<link rel="stylesheet" href="./styles/landingPage.css">
</head>
<body>
<div class="top-menu">
<a class="logo" href="./index.html">
<div class="logo-icon">
<img src="./public/images/svg/Sociau_icon.svg" alt="">
</div>
<img id="logo" src="./public/images/png/sociau_logo.png" alt="">
</a>
<div class="menu">
<ul>
<li><a id="option" href="./pages/aboutUs.html">Quem Somos</a></li>
<li><a id="option" href="./pages/help.html">Quero Ajudar</a></li>
<li><a id="option" href="./pages/contact.html">Contato</a></li>
<li>
<a href="./pages/login.html">
<button class="button-login">Login/Cadastre-se</button>
</a>
</li>
</ul>
</div>
</div>
<main>
<div class="welcome">
<p>
Seja bem vindo ao Sociau!
</p>
<button class="main-button">Conheça seu futuro melhor amigo!</button>
</div>
</main>
</body>
</html>