-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
42 lines (35 loc) · 1.04 KB
/
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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
<!--
pages.js test #1
Diego Castaño (Dowrow) 2014
-->
<!DOCTYPE html>
<html>
<head>
<title>pages.js test #1</title>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8"/>
<link rel="stylesheet" href="css/index.css"/>
</head>
<body>
<main>
<section id="page1">
<p>
This is the page 1.<br>
<a href="#page2">Go to the page 2</a>
</p>
</section>
<section id="page2">
<p>
This is the page 2.<br>
<a href="#page3">Go to the page 3</a>
</p>
</section>
<section id="page3">
<p>
This is the page 3.<br>
<a href="#page1">Go to the page 1</a>
</p>
</section>
</main>
<script src="js/pages.js"></script>
</body>
</html>