-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
41 lines (38 loc) · 1.44 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
<!DOCTYPE html>
<html lang="en-US">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<title>Happy Valentine!</title>
<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=Pangolin&display=swap" rel="stylesheet">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.6.1/jquery.min.js"></script>
<link href="css/index.css" rel="stylesheet" />
</head>
<body>
<div class="envelope-wrapper">
<div id="envelope" class="close">
<div class="front flap"></div>
<div class="front pocket"></div>
<div class="letter">
<p class="words line1">Приветики красота, ты – мой смех и радость!</p>
<p class="words line2">С Днем Святого Валентина! Будешь моей валентинкой? 🌹💖 </p>
<p class="words line4">Бибизян</p>
</div>
<div class="hearts">
<div class="heart a1"></div>
<div class="heart a2"></div>
<div class="heart a3"></div>
</div>
</div>
</div>
<div class="reset">
<button id="open">Открыть</button>
<button id="reset">Повторить</button>
</div>
<h1 class="valentine">С Днем Святого Валентина!</h1>
<script src="scripts/main.js"></script>
</body>
</html>