-
Notifications
You must be signed in to change notification settings - Fork 0
/
horizontalPage.html
47 lines (39 loc) · 1.09 KB
/
horizontalPage.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
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Horizontal Scroll</title>
<link rel="stylesheet" href="src/static/css/default.css">
<link rel="stylesheet" href="src/static/css/horizontalPage.css">
</head>
<body>
<div class="navBar">
<div class="icon"><a href="/HUI">HUI</a></div>
<div class="cursor" color="#fff"></div>
</div>
<div class="container">
<section>
<div class="content">
<h2>Section 1</h2>
</div>
</section>
<section>
<div class="content">
<h2>Section 2</h2>
</div>
</section>
<section>
<div class="content">
<h2>Section 3</h2>
</div>
</section>
<section>
<div class="content">
<h2>Section 4</h2>
</div>
</section>
</div>
</body>
<script src="src/static/js/cursor.js"></script>
<script src="src/static/js/horizontalPage.js"></script>
</html>