-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
32 lines (32 loc) · 1.56 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
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport"
content="width=device-width, user-scalable=no, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Ты будешь моей валентинкой? 💋</title>
<link rel="icon" type="image/x-icon" href="public/heart.gif">
<link rel="stylesheet" href="style.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=DotGothic16&family=Handjet:[email protected]&family=Tiny5&display=swap" rel="stylesheet">
<audio id="hoverSound" src="https://www.soundjay.com/buttons/sounds/button-3.mp3"></audio>
<audio id="yesSound" src="https://www.soundjay.com/human/sounds/applause-01.mp3"></audio>
<audio id="noSound" src="https://www.soundjay.com/misc/sounds/fail-trombone-03.mp3"></audio>
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/confetti.browser.min.js"></script>
</head>
<body>
<div class="container">
<h1>Ты будешь моей валентинкой? 💖</h1>
<img src="https://i.pinimg.com/originals/07/6d/a6/076da60f5b9569f2cc8cadee0e8c1992.gif" alt="Cute GIF" class="gif">
<div class="buttons">
<button id="yesBtn">Да</button>
<button id="noBtn">Нет</button>
</div>
<p id="responseText"></p>
</div>
<canvas id="heartsCanvas"></canvas>
<script src="script.js"></script>
</body>
</html>