-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
45 lines (45 loc) · 2.52 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
<!DOCTYPE html>
<html>
<head>
<meta charset = "UTF-8">
<meta name = "viewport" content = "width=device-width, initial-scale=1.0">
<title>Silly Quotes!</title>
<link rel = "stylesheet" href = "styles.css">
<link rel = "icon" type = "image/x-icon" href = "favicon.png">
</head>
<body>
<h4>Welcome to...</h4>
<h1>Silly Quotes!</h1>
<h4>all "quotes" come from me (<a href = "https://github.com/noobieyuh" target = "_blank">noobieyuh</a>), would love if you checked out meh stuff c:</h4>
<script src = "index.js"></script>
<div class = "container">
<div class = "center">
<button onclick = "quote()">Click me for a silly quote to appear!</button>
</div>
</div>
<div class = "container">
<div class = "center">
<div class = "box">
<p id = "insertQuote">(quotes will show up here!)</p>
</div>
</div>
</div>
<p><u>Silly Quotes was made with love <3</u></p>
<p>(i had a lot of fun making this... a little too much honestly but its fineeeeee :p)</p>
<p>You clicked the button: <u><a id = "counter">0</a> time(s)</u></p>
<p>There is (as of right now) 100 unique quotes!</p>
<p class = "hidden" id = "firstSecret">Wow! 100 clicks? Nice :]</p>
<p class = "hidden" id = "secondSecret">Holy moly! 200 clicks? You must really want quotes... c:</p>
<p class = "hidden" id = "thirdSecret">300 clicks..? Thanks for clicking the button a lot :D</p>
<p class = "hidden" id = "fourthSecret">400 clicks..? You are the master at clicking c:</p>
<p class = "hidden" id = "lastSecret">500 clicks..? 50/50 chance this is the last one, thanks for checking out my project :D... no console right? :o</p>
<p class = "hidden" id = "actualLastSecret">1000 clicks is insane... if you didn't use console, thank you :D</p>
<p class = "hidden" id = "noWay">10,000 clicks is just crazy. There's no way you didn't use console >:c</p>
<p class = "hidden" id = "okayWhat">100,000 clicks is just unrealistic, kinda funny tho hehe :D</p>
<p class = "hidden" id = "impossible">1,000,000 clicks is something a robot would get >:c</p>
<p class = "hidden" id = "moreImpossible">1,000,000,000 clicks... this is for real the last time :o</p>
<p class = "hidden" id = "moreMoreImpossible">1,000,000,000,000 clicks... you didn't listen... >:c</p>
<h6 class = "supportMessage">Made with lots and lots of love! Show support by starring my repos :D</h6>
<h6 class = "supportMessageTwo">Coding is so much fun :p</h6>
</body>
</html>