-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
56 lines (45 loc) · 1.85 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
<!DOCTYPE html>
<html lang="pt-br">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Sonoplastia vai dar namoro</title>
<meta name="description" content="Boilerplate para um projeto usando HTML, CSS e JS" />
<!-- FAVICON -->
<link rel="shortcut icon" type="image/jpg" href="./assets/favicon.ico" />
<!-- GOOGLE FONTS -->
<link rel="preconnect" href="https://fonts.gstatic.com" />
<!-- *currently set to "Roboto". Feel free to change it to whatever you like* -->
<link
href="https://fonts.googleapis.com/css2?family=Archivo+Black&family=Lato:wght@300;400;700&display=swap"
rel="stylesheet"
/>
<!-- CSS STYLE LINK -->
<link rel="stylesheet" href="./styles/global.css" />
</head>
<body>
<div class="background-heart"></div>
<div class="background-heart-small"></div>
<div id="app">
<h1>
VAI DAR
<br />
NAMORO
</h1>
<p>
Lorem ipsum, dolor sit amet consectetur adipisicing elit. Suscipit,
et praesentium expedita repellendus repudiandae necessitatibus optio dicta
</p>
<div data-id='sounds' class="sounds"></div>
</div>
<div id="shortcuts">
<ul data-id="shortcuts" class="shortcut__options"></ul>
<button class="shortcut__button" type="button" onclick="changeHiddenShortcuts()">
<svg xmlns="http://www.w3.org/2000/svg" class="h-6 w-6" fill="none" viewBox="0 0 24 24" stroke="currentColor" stroke-width="2">
<path stroke-linecap="round" stroke-linejoin="round" d="M18.364 5.636l-3.536 3.536m0 5.656l3.536 3.536M9.172 9.172L5.636 5.636m3.536 9.192l-3.536 3.536M21 12a9 9 0 11-18 0 9 9 0 0118 0zm-5 0a4 4 0 11-8 0 4 4 0 018 0z" />
</svg>
</button>
</div>
<script src="./scripts/index.js"></script>
</body>
</html>