-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
23 lines (23 loc) · 908 Bytes
/
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
<!DOCTYPE html>
<html lang="fr">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Team NAPS</title>
<link rel="stylesheet" href="styles.css">
<script src="script.js"></script>
</head>
<body>
<div class="background-image">
<div class="cloud" id="welcome-cloud">
<h1>OKAY OKAY Bienvenue sur le site officiel de la Team NAPS</h1>
<div class="buttons">
<button class="btn" onclick="toggleMusic('chicha.mp3', this)">Chicha Kaloud</button>
<button class="btn" onclick="toggleMusic('faitpourca.mp3', this)">On est fait pour ça</button>
<button class="btn" onclick="toggleMusic('carrevip.mp3', this)">Carré VIP</button>
</div>
</div>
</div>
<audio id="audio-player" controls style="display: none;"></audio>
</body>
</html>