-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
72 lines (63 loc) · 2.13 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>UniFECAF Music</title>
<link rel="stylesheet" href="./styles/style.css">
<link rel="shortcut icon" href="./assets/images/favicon.ico" type="image/x-icon">
</head>
<body>
<nav>
<div class="logo">
<span class="music_icon">♫</span>
<span class="logo_text">
UniFECAF<br>
<span class="music">music</span>
</span>
</div>
<ul>
<li>Home</li>
<li>About</li>
<li>Pages</li>
<li>News</li>
<li>Contact</li>
</ul>
<div class="login">
<span class="login_text">help</span>
<span class="dash">/</span>
<span class="login_text">login</span>
<span class="login_text">create an account</span>
</div>
</nav>
<main>
<div class="container">
<div class="container-content">
<div class="main_text">
<header>
<h1><span>Music</span> for everyone.</h1>
</header>
<p>Listening to music is a rich and engaging experience that goes beyond language and culture
barriers.
The
captivating melody, inspiring lyrics, and pulsating rhythms have the unique power to transport
us
and
evoke deep emotions.
</p>
<div class="buttons">
<button>Download</button>
<button>Start Free Trial</button>
</div>
</div>
<div class="main_img">
<img src="./assets/images/arctic-monkeys.avif" alt="Arctic Monkeys">
</div>
</div>
</div>
</main>
<footer>
<span>© Unifecaf Music - Todos os direitos reservados.</span>
</footer>
</body>
</html>