You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
28 lines
716 B
28 lines
716 B
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>Seznam stránek</title>
|
|
</head>
|
|
<body>
|
|
<h1>Strom stránek</h1>
|
|
<h2>Domů</h2>
|
|
<ul>
|
|
<li><a href="index.html">Domů</a></li>
|
|
<li><a href="users.html">Uživatelé</a></li>
|
|
|
|
<li><a href="album/index.html">Fotoalbum</a>
|
|
<ul>
|
|
<li><a href="album/stage1.html">Stage 1</a></li>
|
|
<li><a href="album/stage2.html">Stage 2</a></li>
|
|
</ul>
|
|
</li>
|
|
|
|
<li><a href="years/index.html">Ročníky</a></li>
|
|
<li><a href="contacts.html">Kontakty</a></li>
|
|
</ul>
|
|
|
|
</body>
|
|
</html>
|