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.
16 lines
447 B
16 lines
447 B
<!DOCTYPE html>
|
|
<html lang="cs">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<title>Document</title>
|
|
</head>
|
|
<body>
|
|
<h1>Treti stranka</h1>
|
|
<!-- špatná (absolutní) cesta -->
|
|
<a href="C:\Users\skrabanek\Documents\gitclone\3J_WTL_2024\01\index.html">Domu</a>
|
|
<!-- lepší (relativní) relativní cesta k souboru -->
|
|
<a href="druha.html">Druha stranka</a>
|
|
<br>
|
|
<img src="../img/img3.jpg" alt="Obrazek profilu">
|
|
</body>
|
|
</html>
|