-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
47 lines (43 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
<!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">
<link rel="stylesheet" href="./assets/css/styles.css">
<link rel="stylesheet" href="./assets/css/index.css">
<title>Adopet | Home</title>
</head>
<body>
<header>
<nav class="cabecalho">
<a href="./index.html" class="cabecalho__item cabecalho__item--logo">
<img src="./assets/img/nav-logo.svg" alt="Logo Page">
</a>
<a href="./pages/home.html" class="cabecalho__item">
<img src="./assets/img/home.svg" alt="Home Page">
</a>
<a href="./pages/mensagem.html" class="cabecalho__item">
<img src="./assets/img/contato.svg" alt="Contato Page">
</a>
</nav>
</header>
<!-- CONTEÚDO -->
<main>
<div class="conteudo">
<img id="conteudo__logo-adopet" src="./assets/img/logo.svg" alt="Logo da Adopet">
<p class="conteudo__boas-vindas">Boas-vindas!</p>
<p class="conteudo__paragrafo">Que tal mudar sua vida adotando seu novo melhor amigo? Vem com a gente!</p>
<div class="conteudo__botoes">
<a href="./pages/login.html" class="conteudo__botoes--btn">Já tenho conta</a>
<a href="./pages/cadastro.html" class="conteudo__botoes--btn">Quero me Cadastrar</a>
</div>
</div>
</main>
<div class="ilustracao">
</div>
<footer class="rodape">
<p>2022 - Desenvolvido por <a href="https://www.linkedin.com/in/hebert-santana/" target="_blank">Hebert Santana</a></p>
</footer>
</body>
</html>