blob: bb26cf7c1090a2157a31156855895157677a525a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
<!DOCTYPE html>
<html>
<head>
<title>A Document</title>
</head>
<body>
<h1 id="section1">Section 1</h1>
<p>This is the content of section 1.</p>
<h2 id="section2">Section 2</h2>
<p>This is the content of section 2.</p>
<p>
<a href="#section1">Go to Section 1</a> |
<a id="clickme" href="#section2">Go to Section 2</a>
</p>
</body>
</html>
|