-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathindex.html
144 lines (141 loc) · 4.91 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
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Wanna be My Valentine??</title>
<link rel="stylesheet" href="style.css" />
<meta name="description" content="There is a surprise." />
<meta name="keywords" content="Valentine, Love, Surprise" />
<meta name="author" content="Dennis Nzioki" />
<meta name="robots" content="index, follow" />
<meta name="revisit-after" content="3 days" />
<meta name="language" content="English" />
<meta name="web_author" content="Dennis Nzioki" />
<meta name="reply-to" content="" />
<meta name="rating" content="general" />
<meta name="og:title" content="There is a Surprise" />
<meta name="og:description" content="There is a surprise." />
<meta name="og:image" content="https://i.ibb.co/k6xD4nM/New-Project.jpg" />
<meta name="og:url" content="https://will-you-be-my-valentine-murex.vercel.app/" />
<meta name="og:site_name" content="There is a Surprise" />
<meta name="og:locale" content="en_US" />
<meta name="og:type" content="website" />
<meta name="og:author" content="Dennis Nzioki" />
<meta name="og:reply-to" content="" />
<meta name="og:web_author" content="Dennis Nzioki" />
<meta name="og:rating" content="general" />
</head>
<body>
<div class="flex f-aps">
<p>
Made with ❤️ by
<a rel="noopener" href="https://linktr.ee/dnxempire" target="_blank">Dennis Nzioki</a>
</p>
</p>
<a rel="noopener" target="_blank" href="https://github.com/DNXEMPIRE-1/WillYouBeMyValentine">
<img
class="image2"
src="https://logodix.com/logo/1205168.png"
alt="heyy"
id="heart1"
/>
</a>
</div>
<h1 class="headerText" id="wedate">Do you want to be my Valentine? 🥺</h1>
<img class="image" src="./resources/happy1.gif" alt="heyy" id="mainImg" />
<div class="flex" id="btns">
<button
class="button"
id="yes"
onmouseenter="happy()"
onmouseleave="normal()"
onclick="yes()"
>
Yes 🥰
</button>
<button
class="button"
id="no"
onmouseenter="angry()"
onmouseleave="normal()"
onclick="no()"
>
No 😭
</button>
</div>
<div class="absImages" id="absImg">
<img class="image1" src="./resources/heart.gif" alt="heyy" />
<img class="image1" src="./resources/heart.gif" alt="heyy" />
<img class="image1" src="./resources/heart.gif" alt="heyy" />
<img class="image1" src="./resources/heart.gif" alt="heyy" />
<img class="image1" src="./resources/heart.gif" alt="heyy" />
<img class="image1" src="./resources/heart.gif" alt="heyy" />
<img class="image1" src="./resources/heart.gif" alt="heyy" />
<img class="image1" src="./resources/heart.gif" alt="heyy" />
<img class="image1" src="./resources/heart.gif" alt="heyy" />
<img class="image1" src="./resources/heart.gif" alt="heyy" />
<!-- <img class="image2" src="./resources/sad.gif" alt="heyy" /> -->
</div>
<div class="model" id="model2">
<audio id="happyMusic" style="opacity: 0" controls loop>
<source src="./resources/happy.mp3" type="audio/mp3" />
Your browser does not support the audio element.
</audio>
<div class="model-content">
<p class="modelText" id="modelText2">I Love you 😘😘</p>
<img
class="modelImg"
id="modelImg2"
src="https://takelessons.com/blog/wp-content/uploads/2013/07/happy-cat.gif"
alt="heyy"
/>
<button
class="button"
id="yes"
onmouseenter="happy()"
onmouseleave="normal()"
onclick="ly2()"
>
Love You Too 🥰
</button>
</div>
</div>
<div id="model" class="model">
<audio id="sadMusic" style="opacity: 0" controls loop>
<source src="./resources/sad.mp3" type="audio/mp3" />
Your browser does not support the audio element.
</audio>
<div class="model-content">
<p class="modelText" id="modelText">Please</p>
<img
class="modelImg"
id="modelImg"
src="https://media1.tenor.com/images/9413ffc5a11722a3cc456a88810750bd/tenor.gif?itemid=14193216"
alt="heyy"
/>
<div class="flex">
<button
class="button"
id="yes"
onmouseenter="happy()"
onmouseleave="normal()"
onclick="yes()"
>
Yes 🥰
</button>
<button
class="button"
id="no"
onmouseenter="angry()"
onmouseleave="normal()"
onclick="no()"
>
No 😭
</button>
</div>
</div>
</div>
</body>
<script src="script.js"></script>
</html>