-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathfrontPage.html
56 lines (49 loc) · 1.67 KB
/
frontPage.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
<!DOCTYPE html>
<html>
<head>
<title>FrontPage</title>
<link rel="stylesheet" type="text/css" href="//fonts.googleapis.com/css?family=Open+Sans" />
<script src="./js/jquery.js"></script>
<link type="text/css" href="./css/style_frontpage.css" rel="stylesheet"/>
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0">
<script type="text/javascript" src="js/jstorage.js"></script>
<script type="text/javascript" src="js/swift.js"></script>
<script type="text/javascript" src="js/rebound.js"></script>
<script type="text/javascript" src="js/parse.js"></script>
<script type="text/javascript" src="js/api_auth.js"></script>
<script type="text/javascript" src="/js/front_page.js" defer></script>
<style>
#speek-button{
height: 80px;
width: 80px;
border-radius: 50%;
background: url(./img/icons/mic.png) center no-repeat, #e74c3c;
background-size: 50%;
position: fixed;
bottom: 10px;
left: 50%;
margin-left: -40px;
border: 0px solid #ccc;
z-index: 9999;
}
</style>
</head>
<body>
<header>
<a href="profile.html"><img id="bprofile" src="./img/icons/profile_button.png"></a>
<div id="App_Name">Speek</div>
<a href="Namelist.html"><img id="bsearch" src="./img/icons/search_button.png"></a>
</header>
<div id="wrapper">
<div id="scroller"></div>
</div>
<div id="record-wrapper">
<div id="timer">
<div id="timer-inner"></div>
<span id="current-time">0</span>
</div>
<canvas id="visualiser"></canvas>
</div>
<div id="speek-button"></div>
</body>
</html>