-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
85 lines (78 loc) · 3.34 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
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
74
75
76
77
78
79
80
81
82
83
84
85
<html lang="pt-BR">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>FEAY Music - Lições</title>
<link rel="stylesheet" href="src/css/styles-head-foot.css">
<link rel="stylesheet" href="src/css/styles-index.css">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Oswald:wght@200..700&family=Outfit:wght@100..900&display=swap" rel="stylesheet">
<link rel="shortcut icon" href="imgs/clave_de_sol.png" type="image/x-icon">
</head>
<body>
<header>
<h1 class="title">FEAY MUSIC</h1>
<div class="header-right">
<img src="imgs/clave_de_sol.png" alt="Logo" class="logo">
<div class="user-actions">
<img src="imgs/usuario.png" alt="Ícone de Usuário" class="user-icon">
<a href="src/no-use/bad-index.html"><span>Cadastre-se</span></a>
<a href="src/no-use/bad-index.html"><span>Entrar</span></a>
</div>
</div>
</header>
<main>
<div class="center-content" id="center-content">
<h2 class="center-text">Qual o nome desta nota?</h2>
<img id="noteImage" src="imgs\Mi.png" alt="Imagem Central" class="center-image">
<div class="choices-container">
<div class="choice-box">
<input type="submit" id="note_1" name="nota" value="1">
<label for="note_1">1</label>
</div>
<div class="choice-box">
<input type="submit" id="note_2" name="nota" value="2">
<label for="note_2">2</label>
</div>
<div class="choice-box">
<input type="submit" id="note_3" name="nota" value="3">
<label for="note_3">3</label>
</div>
</div>
</div>
</div>
</main>
<footer>
<div class="footer-content">
<div class="left-section">
<div class="footer-item">
<img src="imgs/instagram.png" alt="Instagram Icon">
<a href="https://instagram.com" target="_blank"><span>@feaymusic</span></a>
</div>
<div class="footer-item">
<img src="imgs/whatsapp.png" alt="WhatsApp Icon" class="whatsapp">
<span>(43) 9 9883-7674</span>
</div>
<div class="footer-item">
<img src="imgs/X.png" alt="X Icon">
<a href="https://x.com" target="_blank"><span>feaymusic</span></a>
</div>
</div>
<div>
<div class="footer-item-home">
<a href="main.html"><span>Home</span></a>
</div>
<div class="footer-item-licoes">
<span>Lições</span>
</div>
</div>
<div class="right-section">
<img src="imgs/interrogacao.png" alt="Help Icon">
<a href="src/no-use/bad-index.html"><span>Saiba Mais</span></a>
</div>
</div>
</footer>
<script src="src/js/script.js"></script>
</body>
</html>