-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
48 lines (48 loc) · 2.2 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
<!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="./src/styles/globalStyles.css">
<link rel="stylesheet" href="./src/styles/displays.css">
<link rel="stylesheet" href="./src/styles/header.css">
<link rel="stylesheet" href="./src/styles/buttons.css">
<link rel="stylesheet" href="./src/styles/homepage.css">
<link rel="stylesheet" href="./src/styles/footer.css">
<link rel="stylesheet" href="./src/styles/modal.css">
<link rel="stylesheet" href="./src/styles/toast.css">
<link rel="icon" type="image/x-icon" href="./src/imgs/FaviconPetSete.png">
<title>PetSete - Home</title>
</head>
<body>
<header class="flex al-center jus-center">
<div class="flex al-center jus-between gap18">
<img class="logo-header" src="./src/imgs/LogoPetSete.png" alt="logo" name="logo petsete">
<div class="button-box-header flex al-center">
<div id="profile_avatar_box" class="profile-avatar none">
<img id="profile_avatar"src="" alt="">
</div>
<button class="button-white-purple pointer" id="register">Register</button>
<button class="button-purple pointer" id="login">Login</button>
</div>
</div>
</header>
<main class="flex flex-col al-center">
<div class="container flex flex-col al-center jus-center">
<div class="select-box flex flex-col al-center jus-between">
<h2>Pets em busca de um lar</h2>
<select name="espécies" id="select_home"></select>
</div>
<ul id="card_list" class="card-list-home flex jus-center wrap gap36">
<img src="./src/imgs/gifcat.gif" alt="">
</ul>
</div>
<img src="./src/imgs/check.svg" alt="">
</main>
<footer class='flex al-center jus-center'>
<p>PetSete | Todos os direitos reservados | <a href="./src/pages/about.html">PetSete Team</a></p>
</footer>
<script type="module" src="./src/scripts/homepage.js"></script>
</body>
</html>