<!DOCTYPE html>
<html lang=”hr”>
<head>
<meta charset=”UTF-8″>
<meta name=”viewport” content=”width=device-width, initial-scale=1.0″>
<title>Usporedba Putovanja</title>
<link rel=”stylesheet” href=”css.css”>
</head>
<body>
<header>
<h1>Usporedba Putovanja</h1>
<p>Odaberite vaše idealno putovanje među različitim destinacijama!</p>
</header>
<section class=”comparison-table”>
<table>
<caption>Karakteristike Putovanja</caption>
<thead>
<tr>
<th>Destinacija</th>
<th>Trajanje</th>
<th>Vrsta Smještaja</th>
<th>Obroci</th>
<th>Cijena</th>
<th>Slika</th>
<th>Poveznica</th>
</tr>
</thead>
<tbody>
<tr>
<td>Berlin, Njemačka</td>
<td>7 dana</td>
<td>Hotel 4*</td>
<td>Uključena tri obroka</td>
<td>950 €</td>
<td><img src=”https://media.istockphoto.com/id/486585530/photo/berlin-skyline-with-spree-river-at-sunset-germany.jpg?s=612×612&w=0&k=20&c=COfGf3zm3CDWUUKv8Kowew73ie5wGr8DfJ0gd88EafQ=” alt=”Berlin”></td>
<td><a href=”https://balloonmuseum.world/berlin-articles/BALOON-EN/index.html?gad_source=1&gclid=EAIaIQobChMIhKWS1pqqiwMVIhEGAB0GJDJqEAAYASAAEgLBJ_D_BwE”>Više informacija</a></td>
</tr>
<tr>
<td>Boston, SAD</td>
<td>10 dana</td>
<td>Apartman</td>
<td>Uključena dva obroka (doručak, večera)</td>
<td>2,500 €</td>
<td><img src=”https://upload.wikimedia.org/wikipedia/commons/c/c7/Boston_%C3%A0_lheure_bleue_%284769294947%29.jpg” alt=”Boston”></td>
<td><a href=”https://staywithmaverick.com/?gad_source=1&gclid=EAIaIQobChMIgZ-Gm5uqiwMV1qloCR35hgnTEAAYAiAAEgJA5vD_BwE”>Više informacija</a></td>
</tr>
<tr>
<td>Tokyo, Japan</td>
<td>14 dana</td>
<td>Hostel</td>
<td>Samo doručak</td>
<td>3,000 €</td>
<td><img src=”https://www.gotokyo.org/en/destinations/western-tokyo/shibuya/images/xmain.jpg.pagespeed.ic.dMwK5EfW6X.jpg” alt=”Tokyo”></td>
<td><a href=”https://www.gotokyo.org/en/see-and-do/attractions/index.html”>Više informacija</a></td>
</tr>
</tbody>
</table>
</section>
<footer>
<p>© 2025 Usporedba putovanja. Svi prava pridržana.</p>
</footer>
</body>
</html>
CSS
/* Resetiranje osnovnih stilova */
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
/* Opći stilovi */
body {
font-family: ‘Arial’, sans-serif;
background-color: #f4f4f9;
color: #333;
line-height: 1.6;
}
header {
text-align: center;
background-color: #2d3e50;
color: white;
padding: 20px;
}
h1 {
font-size: 3em;
margin-bottom: 10px;
}
p {
font-size: 1.2em;
}
/* Stilizacija tablice */
.comparison-table table {
width: 90%;
margin: 20px auto;
border-collapse: collapse;
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}
table caption {
font-size: 2em;
margin-bottom: 10px;
}
th, td {
padding: 15px;
text-align: center;
border: 1px solid #ddd;
}
th {
background-color: #4CAF50;
color: white;
}
td img {
width: 100px;
height: 100px;
object-fit: cover;
border-radius: 8px;
}
a {
color: #007bff;
text-decoration: none;
}
a:hover {
text-decoration: underline;
}
/* Stilizacija footer-a */
footer {
text-align: center;
padding: 10px;
background-color: #2d3e50;
color: white;
margin-top: 40px;
}
footer p {
font-size: 1em;
}