forked from Mr-majifu/Parallax-Scrolling-Website
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathwork.html
More file actions
26 lines (25 loc) · 679 Bytes
/
Copy pathwork.html
File metadata and controls
26 lines (25 loc) · 679 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
<!DOCTYPE html>
<html lang="zh_CN">
<head>
<meta charset = "UTF-8">
<title>Parallax Scrolling Website</title>
<link rel="stylesheet" href="css/style.css">
</head>
<body>
<nav>
<a href="#" class="logo">BLOG</a>
<ul>
<li><a href="index.html" >Home</a></li>
<li><a href="about.html" >About</a></li>
<li><a href="work.html" class="active">Work</a></li>
<li><a href="contact.html">Contact</a></li>
</ul>
</nav>
<section>
<img src="images/stars.png" id="stars">
<img src="images/moon.png" id="moon">
<img src="images/mountains_behind.png" id="mountains_behind">
<img src="images/mountains_front.png" id="mountains_front">
</section>
</body>
</html>