-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
34 lines (32 loc) · 1022 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
24
25
26
27
28
29
30
31
32
33
34
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="index.css">
<title>Date?</title>
</head>
<body onload="alert('Please Open on Desktop for best Experience')">
<br>
<h1>Will you Go On a Date With Me? ♥</h1>
<div id="main">
<button class="btn-pushable" role="button" id="yes">
<span class="btn-shadow"></span>
<span class="btn-edge"></span>
<span class="btn-front text" id="yes-text">
Yes
</span>
</button>
<button class="btn-pushable" role="button" id="no">
<span class="btn-shadow"></span>
<span class="btn-edge"></span>
<span class="btn-front text" id="no-text">
No
</span>
</button>
</div>
</body>
<script src="index.js">
</script>
</html>