-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
27 lines (26 loc) · 851 Bytes
/
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
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Full Page Accordion UI</title>
<link rel="stylesheet" type="text/css" href="css/style.css">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.8.1/jquery.min.js"></script>
<script src="https://code.jquery.com/ui/1.11.4/jquery-ui.min.js" type="text/javascript"></script>
</head>
<body>
<div class="wrapper">
<div class="section channel active-panel" id="panel1" data-panel="channel">
<div class="content">Channel</div>
</div>
<div class="section blog panel" id="panel2" data-panel="blog">
<div class="content">Blog</div>
</div>
<div class="section social panel" id="panel3" data-panel="social">
<div class="content">Social</div>
</div>
</div>
<footer>
<script src="js/script.js" type="text/javascript"></script>
</footer>
</body>
</html>