-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
40 lines (37 loc) · 930 Bytes
/
index.html
File metadata and controls
40 lines (37 loc) · 930 Bytes
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Smooth Scrolling</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<a class="forkme" href="https://github.com/codeessentials/smooth-scrolling">View on GitHub</a>
<nav class="navigation">
<a class="active" href="#about" title="About">About</a>
<a href="#work" title="Work">Work</a>
<a href="#clients" title="Clients">Clients</a>
<a href="#blogs" title="Blogs">Blogs</a>
<a href="#contact" title="Contact">Contact</a>
</nav>
<div id="container">
<div id="about" class="box">
About
</div>
<div id="work" class="box">
Work
</div>
<div id="clients" class="box">
Clients
</div>
<div id="blogs" class="box">
Blogs
</div>
<div id="contact" class="box">
Contact
</div>
</div>
<script src="https://code.jquery.com/jquery-3.1.1.min.js"></script>
<script src="target.js"></script>
</body>
</html>