-
Notifications
You must be signed in to change notification settings - Fork 3
/
index.html
62 lines (44 loc) · 2.01 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
<!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">
<title>YES or NO</title>
<link rel="stylesheet" href="./style.css">
<script type="text/javascript" src="./script.js"></script>
<link rel="icon" href="assets/question.png" />
<!-- Meta Tags-->
<meta name="og:title" property="og:title" content="Yes or No? What's your choice?">
<meta name='twitter:title' content="Yes or No? What's your choice?">
<meta name="description"
content="Yes or No Decision Polls. Know what the world is thinking. Popular social opinion and polls forum.">
<meta property='og:description'
content='Endless Yes or No Questions updated with answers from people. Know what everyone is thinking.'>
<meta name='twitter:description'
content="Endless Yes or No Questions updated with answers from people. Haven't you cast your vote yet?">
<meta property="og:image"
content="https://raw.githubusercontent.com/thenithinbalaji/YES-or-NO/main/assets/yesno.png">
<meta name="twitter:image"
content="https://raw.githubusercontent.com/thenithinbalaji/YES-or-NO/main/assets/yesno.png">
<meta property="og:type" content="website" />
</head>
<body>
<div class="stats" id="stats">
<div class="stats-percentage" id="stats-percentage">00 %</div>
<div class="stats-text" id="stats-text">answered YES to<br>previous question</div>
</div>
<div class="elements">
<h1 class="question" id="question">Are you ready!</h1>
<button id="buttonyes" onclick="next(this)">YES</button><br>
<button id="buttonno" onclick="next(this)">NO</button>
</div>
<div class="credits">
<a href="https://github.com/thenithinbalaji/YES-or-NO" target="_blank">
<div class="credits-text">
<p>WEBSITE BY THE NITHIN BALAJI</p>
</div>
</a>
</div>
</body>
</html>