-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathplan.html
42 lines (41 loc) · 1.83 KB
/
plan.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
<!DOCTYPE html>
<html lang="pt-br">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Planos de Sono</title>
<link rel="shortcut icon" href="assets/favicons/favicon.ico" type="image/x-icon">
<link rel="stylesheet" href="css/style.css">
<link rel="manifest" href="manifest.json" />
<script defer src="js/index.js"></script>
<script src="js/auth.js"></script>
</head>
<body class="body-home">
<header>
<div class="menu-hamburguer">
<div class="line1"></div>
<div class="line2"></div>
<div class="line3"></div>
</div>
<a href="index.html" class="meio-header">
<img src="assets/logo.png" alt="Logo do Site">
<h1>Meu Soninho</h1>
</a>
<img src="assets/UserIcon.svg" alt="Foto de Perfil" class="user-icon-home">
</header>
<div class="page">
<nav class="nav-home">
<img class="foto-perfil-home" src="assets/UserIcon.svg" alt="Foto de Perfil">
<a href="index.html"><img src="assets/NavIcons/HomeIcon.png" alt="Início"><span>Início</span></a>
<a href="alarm.html"><img src="assets/NavIcons/AlarmIcon.png" alt="Alarme"><span>Alarme</span></a>
<a href="music.html"><img src="assets/NavIcons/MusicIcon.png" alt="Música"><span>Músicas</span></a>
<a href="rank.html"><img src="assets/NavIcons/RankIcon.png" alt="Ranking"><span>Ranking</span></a>
<a style="background-color: var(--cor-contraste);" href="plan.html"><img src="assets/NavIcons/PlanIcon.png" alt="Plano"><span>Plano</span></a>
<a href="stats.html"><img src="assets/NavIcons/StatsIcon.png" alt="Estatísticas"><span>Estatísticas</span></a>
<a href="config.html"><img src="assets/NavIcons/ConfigIcon.png" alt="Configurações"><span>Configurações</span></a>
</nav>
<main>
</main>
</div>
</body>
</html>