-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
73 lines (72 loc) · 2.63 KB
/
index.html
File metadata and controls
73 lines (72 loc) · 2.63 KB
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
61
62
63
64
65
66
67
68
69
70
71
72
73
<!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 href="https://fonts.googleapis.com/css2?family=League+Spartan:wght@400;500;700&family=Noto+Sans:wght@400;700&family=Poppins:wght@300;400;500&family=Righteous&family=Sarala:wght@400;700&family=Work+Sans:wght@400;500&display=swap" rel="stylesheet">
<title>Responsive Sidebar</title>
<!-- Link Styles -->
<link rel="stylesheet" href="css/style.css">
<link rel="stylesheet" href="css/style-close.css">
</head>
<body>
<aside class="sidebar close">
<div class="logo-details">
<img src="images/logo.svg" alt="logo">
<img id="btn-menu" src="images/menu.svg" alt="menu">
</div>
<ul class="nav-list">
<li class="search">
<img src="images/search.svg" alt="buscar">
<input type="text" placeholder="Buscar">
</li>
<li>
<a href="#">
<img src="images/grid.svg" alt="grid">
<span class="link-name">Dashboard</span>
</a>
</li>
<li>
<a href="#">
<img src="images/pet.svg" alt="pet">
<span class="link-name">Pets</span>
</a>
</li>
<li>
<a href="#">
<img src="images/user.svg" alt="usuário">
<span class="link-name">Clientes</span>
</a>
</li>
<li>
<a href="#">
<img src="images/vet.svg" alt="vet">
<span class="link-name">Vets</span>
</a>
</li>
<li>
<a href="#">
<img src="images/settings.svg" alt="configurações">
<span class="link-name">Ajustes</span>
</a>
</li>
</ul>
<div id="profile">
<div class="profile-details">
<img src="images/photo.jpg" alt="foto de perfil">
<div class="profile-content">
<p class="name">Maria Candida</p>
<p class="designation">Veterinária</p>
</div>
</div>
<img id="log-out" src="images/log-out.svg" alt="sair">
</div>
<section class="home-section">
<p class="text">Dashboard</p>
</section>
</aside>
<!-- Scripts -->
<script src="js/script.js"></script>
</body>
</html>