Files
JS/03_dom/uebungen/u14_awesome-tours/index.html
Philippe Torrel 145dee58e6
2026-07-16 14:40:36 +02:00

51 lines
2.5 KiB
HTML
Raw Blame History

This file contains invisible Unicode characters
This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
<!DOCTYPE html>
<html lang="de">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Übung 14: awesome tours</title>
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.7/dist/css/bootstrap.min.css" rel="stylesheet" />
<link rel="stylesheet" href="assets/css/awesome-tours.css" />
<script src="assets/js/awesome-tours.js" defer></script>
</head>
<body>
<main>
<div class="main-wrapper">
<h1>Übung 14: awesome tours</h1>
<div class="m-tours tours-grid">
<div id="fr">
<img
src="assets/img/eiffelturm.jpg"
alt="Eiffel Tower"
data-description="The Eiffel Tower (/ˈaɪfəl ˈtaʊər/ eye-fəl towr; French: Tour Eiffel French pronunciation: [tuʁ‿ɛfɛl] About this sound listen) is a wrought iron lattice tower on the Champ de Mars in Paris, France. It is named after the engineer Gustave Eiffel, whose company designed and built the tower..."
data-country-code="fr"
data-flag-name="French-Flag" />
</div>
<div id="uk">
<img
src="assets/img/tower_bridge.jpg"
alt="Tower Bride"
data-description="Tower Bridge (built 18861894) is a combined bascule and suspension bridge in London. The bridge crosses the River Thames close to the Tower of London and has become an iconic symbol of London. Tower Bridge is one of five London bridges now owned..."
data-country-code="uk"
data-flag-name="Union-Jack" />
</div>
<div id="it">
<img
src="assets/img/colosseum.jpg"
alt="Colosseum"
data-description="The Colosseum or Coliseum (/kɒləˈsiːəm/ kol-ə-see-əm), also known as the Flavian Amphitheatre (Latin: Amphitheatrum Flavium; Italian: Anfiteatro Flavio [amfiteˈaːtro ˈflaːvjo] or Colosseo [kolosˈːo]), is an oval amphitheatre in the centre of the city of Rome, Italy. Built of concrete and sand,[1] it is the largest amphitheatre ever built. The Colosseum is situated just east of the Roman Forum. Construction began..."
data-country-code="it"
data-flag-name="Italian-Flag" />
</div>
<section id="info">
<p>Move your mouse pointer over the images to read the descriptions here!</p>
</section>
</div>
</div>
</main>
</body>
</html>