-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathindex.html
executable file
·47 lines (37 loc) · 1.67 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
<!DOCTYPE html>
<html lang="en">
<head>
<title>Sign</title>
<script src="node_modules/leapjs/leap-0.6.4.js"></script>
<link rel="stylesheet" href="ui/style/normalize.css" />
<link rel="stylesheet" href="ui/style/owl.carousel.min.css" />
<link rel="stylesheet" href="ui/style/owl.theme.default.min.css" />
<link rel="stylesheet" href="ui/style/sweetalert.css" />
<link rel="stylesheet" href="ui/style/general.css" />
<link href="https://fonts.googleapis.com/css?family=Lato:300,400,700" rel="stylesheet">
</head>
<body>
<div class="content">
<div class="question-container">
<p class="question"></p>
<div class="letter-box">
<svg width="415" height="350" version="1.1" xmlns="http://www.w3.org/2000/svg">
<rect id="letter-border" x="60" y="10" rx="35" ry="35" width="300" height="300" stroke="black" fill="transparent" stroke-width="1"/>
<text id="letter-text" x="50%" y="63%" text-anchor="middle" font-weight: bold font-family="Lato" font-size="165" fill="#000"></text>
</svg>
</div>
</div>
</div>
<div class="how-bar">
<span id="how-button">How do I show that?</span>
</div>
<div class="owl-carousel owl-theme nav-letters">
</div>
<script src="main.js"></script> <!-- Pleb library -->
<script type="text/javascript" src="ui/scripts/jquery-3.2.0.min.js"></script>
<script type="text/javascript" src="ui/scripts/TweenMax.min.js"></script>
<script type="text/javascript" src="ui/scripts/owl.carousel.min.js"></script>
<script type="text/javascript" src="ui/scripts/sweetalert.min.js"></script>
<script type="text/javascript" src="ui/scripts/general.js"></script>
</body>
</html>