-
Notifications
You must be signed in to change notification settings - Fork 8
/
index.html
43 lines (43 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
<!DOCTYPE html>
<html>
<head>
<title>Faceclash</title>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width,initial-scale=1,user-scalable=no">
<link rel="icon" href="/images/favicon.png" type="image/png">
<link rel="stylesheet" href="/assets/css/faceclash.min.css">
</head>
<body>
<div id="wrapper">
<div id="header">
<ul class="list">
<li class="logo"><a href="#play" title="Play now">Faceclash</a></li>
<li><a href="#about" title="About Faceclash">About</a></li>
<li><a href="#leaderboard" title="Player leaderboard">Leaderboard</a></li>
<li><a href="#settings" title="Change settings">Settings</a></li>
<li><a href="#report" title="Report issues">Report</a></li>
<li class="submit blink"><a href="#submit" title="Submit a photo">Submit</a></li>
</ul>
</div>
<noscript>
<div id="no-js">
<h1 class="heading">Where's JavaScript?</h1>
<p>
You're seeing this because you've disabled JavaScript. In order for Faceclash to work properly,
you'll need to enable it. Without it, we wouldn't be able to dynamically change content,
update the photos you see, or have any fancy transitions. Learn more about enabling JavaScript
<a href="http://enable-javascript.com" target="_blank">here</a>.
</p>
</div>
</noscript>
<div id="content"></div>
<div id="footer">
<ul class="list">
<li>© 2016 <a href="https://ifvictr.com" target="_blank">ifvictr</a></li>
<li>Made by Victor</li>
</ul>
</div>
</div>
<script src="/assets/js/faceclash.min.js"></script>
</body>
</html>