-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
47 lines (45 loc) · 1.25 KB
/
index.html
File metadata and controls
47 lines (45 loc) · 1.25 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
37
38
39
40
41
42
43
44
45
46
47
<!DOCTYPE html>
<html lang="en" >
<head>
<meta charset="UTF-8">
<title>Gyroscope Ring Inspired</title>
<link rel="stylesheet" href="https://public.codepenassets.com/css/normalize-5.0.0.min.css">
<link rel='stylesheet' href='https://fonts.googleapis.com/css?family=Raleway:300,500,700'><link rel="stylesheet" href="./style.css">
</head>
<body>
<!-- partial:index.partial.html -->
<div class="wrapper">
<div class="controler">
<ul>
<li class="active">
<a href="#one" class="option">
<h2>Option One</h2>
<h5>Has some stuff about option one</h5>
</a>
</li>
<li>
<a href="#two" class="option">
<h2>Option two</h2>
<h5>Has some stuff about option two</h5>
</a>
</li>
<li>
<a href="#three" class="option">
<h2>Option three</h2>
<h5>Has some stuff about option three</h5>
</a>
</li>
</ul>
</div>
<div class="visual">
<div class="rings">
<div class="inner-ring"></div>
<div class="middle-ring"></div>
<div class="outer-ring"></div>
</div>
</div>
</div>
<!-- partial -->
<script src='https://code.jquery.com/jquery-2.2.4.min.js'></script><script src="./script.js"></script>
</body>
</html>