-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtest.html
32 lines (31 loc) · 969 Bytes
/
test.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
<html>
<head>
<style type="text/css">
.page-default {
width: 21cm;
height: 29.7cm;
color: #777777 ;
font-family: Arial
}
</style>
</head>
<div class="page-default">
Lets consider this to be our TOC, or anything else. The main point is that we use a href to an element in this document by id.<br />
If you scroll a bit, or click one of the hrefs below, you will find the next pages.
<a href="#test-1">Test 1</a><br />
<a href="#test-2">Test 2</a><br />
<a href="#test-3">Test 3</a><br />
</div>
<div style="page-break-before: always; padding-bottom: 1px;"></div>
<div class="page-default" id="test-1">
Test 1
</div>
<div style="page-break-before: always; padding-bottom: 1px;"></div>
<div class="page-default" id="test-2">
Test 2
</div>
<div style="page-break-before: always; padding-bottom: 1px;"></div>
<div class="page-default" id="test-3">
Test 3
</div>
</html>