<!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>Kiur Arbeiter, koduleht</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<header>
<h1>Kiur Arbeiter, koduleht veebirakenduste tööde koduleht</h1>
</header>
<main>
<table border="1" class="custom-table">
<tr>
<td>Minu HTML/CSS tööd</td>
<td>
<a href="Retseptiraamat/index.html">Retsepti raamat</a>
<br>
<a href="">Töö2</a>
<br>
<a href="">Töö3</a>
</td>
</tr>
<tr>
<td >Minu PHP tööd</td>
<td>
<a href="Harjutus14/index.html">Harjutus1</a>
<br>
<a href="Jalgrattaeksam/registreerimine.php">Jalgrattaeksam</a>
<br>
<a href="">PHPTöö3</a>
</td>
</tr>
</table>
</main>
</body>
</html>
Ja css kujundus on lisatud eraldi failina
body {
font-family: Arial, sans-serif;
margin: 0;
padding: 0;
}
header {
background-color: #f2f2f2;
padding: 20px;
text-align: center;
}
.main {
padding: 20px;
}
.custom-table {
width: 50%;
border-collapse: collapse;
border: 5px solid #000;
margin: 1%;
}
.custom-table th {
background-color: #f2f2f2;
text-align: left;
}
.custom-table a {
text-decoration: none;
color: #0055ff;
}
.custom-table a:hover {
text-decoration: underline;
color: #00366d;
}