-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
44 lines (39 loc) · 1.3 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
<!DOCTYPE html>
<html>
<head>
<title>Momentum clone</title>
<link rel="stylesheet" href="momentum.css">
<link href="https://maxcdn.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css" rel="stylesheet" integrity="sha384-wvfXpqpZZVQGK6TAh5PVlGOfQNHSoD2xbE+QkPxCAFlNEevoEH3Sl0sibVcOQVnN" crossorigin="anonymous">
</head>
<body>
<!-- Alessio's momentum settings part start here pls don't touch without asking-->
<div class="settings-icon">
<i id="cog-icon" class="fa fa-cog fa-2x" aria-hidden="true"></i>
</div>
<div class="settings-tab">
<div class="tab-name">
<h1>Settings</h1>
</div>
<div id="show-tab">
<input type="radio" name="sections" id="show" checked>
<label for="show">Show Options</label>
<section>
<p>Show Weather</p>
<p>Show Links</p>
<p>Show To Do</p>
</section>
</div>
<div id="about-tab">
<input type="radio" name="sections" id="about" checked>
<label for="about">About</label>
<section>
<h3>Turtles-Team-17 Momentun App</h3>
<p>Bla bla bla</p>
</section>
</div>
</div>
<!-- Alessio's momentum settings part ends here pls don't touch without asking-->
<script type="text/javascript" src="jquery-3.2.1.min.js"></script>
<script type="text/javascript" src="background.js"></script>
</body>
</html>