-
Notifications
You must be signed in to change notification settings - Fork 3
/
index.html
95 lines (82 loc) · 3.18 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
<!DOCTYPE html>
<html lang="en">
<head>
<title>Dank or Dark?</title>
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.5/css/bootstrap.min.css">
<link rel="stylesheet" type="text/css" href="app.css">
<link href="https://fonts.googleapis.com/css?family=Lato:400,700" rel="stylesheet">
<link rel="stylesheet" type="text/css" href="https://maxcdn.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css">
<link rel="stylesheet" type="text/css" href="https://fonts.googleapis.com/css?family=Raleway">
</head>
<body>
<div class= "space">
<div class= "space">
<div class= "space">
<div class= "space">
</div>
</div>
</div>
</div>
<div class = "headerholder">
<div class="pagehead" onclick="reloadPG()">
Dank <font color="grey"> or </font> <font color=E94B35> Dark?</font>
</div>
</div>
<div id ="images"></div>
<div class ="caption">
Please Click "Dank" or "Dark" to Generate a New Meme!
</div>
<div class="content">
<p><a class="button" id="dank" onclick="loadImageDank()" role="button">
<b> Dank </b>
</a>
<a class = "divider"/>
<a class="button" id="dark" onclick="loadImageDark()" role="button">
<b><font color=E94B35> Dark </font></b>
</a></p>
<p>
<a class = "divider"/>
<a class="button" id="Wholesome" onclick="loadImageWholesome()" role="button">
<b> <font color=#ffcc00> Wholesome </font></b>
</a></p>
</div>
<div id="share-buttons">
<!-- Facebook -->
<a href="http://www.facebook.com/sharer.php?u=https://dankordark.com" target="_blank">
<img src="https://simplesharebuttons.com/images/somacro/facebook.png" alt="Facebook" />
</a>
<!-- Tumblr-->
<a href="http://www.tumblr.com/share/link?url=https://dankordark.com&title=Check out Dank or Dark Memes!" target="_blank">
<img src="https://simplesharebuttons.com/images/somacro/tumblr.png" alt="Tumblr" />
</a>
<!-- Twitter -->
<a href="https://twitter.com/share?url=https://dankordark.com&text=Look%20at%20these%20memes%20!%20&hashtags=dankordarkmemes" target="_blank">
<img src="https://simplesharebuttons.com/images/somacro/twitter.png" alt="Twitter" />
</a>
<!-- Reddit -->
<a href="http://reddit.com/submit?url=https://dankordark.com&title=Epic Meme I found on Dank or Dark" target="_blank">
<img src="https://simplesharebuttons.com/images/somacro/reddit.png" alt="Reddit" />
</a>
<!-- Github -->
<a href="https://github.com/clarisaleu/Dank-Or-Dark">
<img src="https://shefcompsoc.uk/images/social/github.png" />
</a>
</div>
<div class ="space">
</div>
<div class="footerholder">
<div class="footer">
<h6>
<p>Uncommon Hacks | 2018</p>
<p>Created by: Meghan Kimball, Clarisa Leu-Rodriguez,
Riya Dave, and Mark Baker </p>
</h6>
</div>
</div>
<script src="https://code.jquery.com/jquery-3.2.1.js"
integrity="sha256-DZAnKJ/6XZ9si04Hgrsxu/8s717jcIzLy3oi35EouyE="
crossorigin="anonymous"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.5/js/bootstrap.min.js"></script>
<script src="main.js"></script>
</body>
</html>