blob: a434b1aa4a1379e7d95a1b5beac95afc1d254d6b (
plain)
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
|
<!DOCTYPE html>
<html lang="en">
<head>
<title>Niclas Dobbertins Homepage</title>
<link rel="stylesheet" href="style.css">
</head>
<div id="content">
<div id="sidebar">
<li><a href="sub/">first item</a></li>
<li><a href="sub/">second item</a></li>
</div>
<body>
<h1>A new website is born!</h1>
<p>... nothing to see here PepeHands ...</p>
<a href="sub/">a subpage :)</a>
<div id="box-one">
<p>This is box one</p>
</div>
<h2>Hi Ayumi! :D</h2>
</body>
</div>
</html>
|