-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
36 lines (35 loc) · 1.48 KB
/
index.html
File metadata and controls
36 lines (35 loc) · 1.48 KB
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
<!doctype html>
<html>
<head>
<title>Wall Slider</title>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/tachyons/4.11.1/tachyons.min.css" />
<link href="https://fonts.googleapis.com/css2?family=Source+Sans+Pro:wght@400;600;700&display=swap" rel="stylesheet">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
<style>
body {
font-family: 'Source Sans Pro', sans-serif;
}
iframe {
display: block;
margin: 0 auto;
}
</style>
</head>
<body class="bg-near-black">
<div class="center pa4 mh2 w-100 mw8 light-silver flex flex-wrap justify-center items-center">
<div class="mh3">
<iframe src="WebGL/index.html" width="370" height="670" frameborder="0"></iframe>
<p class="tc f6 gray mt0 mb3">Try clicking the game window above if the controls aren't working.</p>
</div>
<div class="w5 pa3 ba dark-gray mt2">
<div class="flex flex-wrap justify-between items-center">
<i class="fa fa-arrows-h gray fa-3x"></i>
<p class="dark-pink ba ph3 pv2 mv0">Space</p>
</div>
<div class="mt4 mb2 gray f6">
<a href="https://forms.gle/JowvD4BJA6UZ37fn7" class="dark-pink dim" target="_blank">Click here</a> to leave feedback, it doesn't take long and helps me a ton!
</div>
</div>
</div>
</body>
</html>