-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathabout.html
37 lines (32 loc) · 1.17 KB
/
about.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
<!doctype html>
<html lang="en" class="no-js">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link href='http://fonts.googleapis.com/css?family=PT+Sans:400,700' rel='stylesheet' type='text/css'>
<link rel="stylesheet" href="css/reset.css"> <!-- CSS reset -->
<link rel="stylesheet" href="css/style.css"> <!-- Resource style -->
<title>about</title>
</head>
<body class="about-page">
<nav class="side-navigation fixed">
<ul>
<li >
<a href="#" data-menu="index">home</a>
</li>
<li class="selected"><a href="#" data-menu="about">about</a></li>
<li><a href="#" data-menu="gallery">gallery</a></li>
<li><a href="#" data-menu="contacts">contacts</a></li>
</li>
</ul>
</nav>
<main class="main">
<section class="page-section about visible">
<p>two Lorem ipsum dolor sit amet, consectetur adipisicing elit. Veniam ab, vitae pariatur sint libero saepe fugit, perferendis debitis, totam eum perspiciatis quidem. Nulla omnis eius voluptas aliquid suscipit repellat a?
</p>
</section>
</main>
<script src="js/jquery-2.1.4.js"></script>
<script src="js/main-custom.js"></script> <!-- Resource jQuery -->
</body>
</html>