forked from ICSpark/icspark-spring-2025-travel-sim-icspark-mentor-training-spring-2024-travel-sim-travel-sim
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathantartica.html
24 lines (20 loc) · 1.11 KB
/
antartica.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
<!DOCTYPE html>
<html lang="eng">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width,initial-scale=1.0">
<title>Welcome to antartica</title>
<link rel="stylesheet" href="antartica.css">
</head>
<body>
<div id="header">
<h1>Welcome to antartica!</h1>
<h2>Click on the first portal to be transported back to the start, or click another to go to a different location.</h2>
</div>
<div id="container">
<a href="index.html"><img class="portal" src="assets/portal.gif" alt="Home"></a>
<a href="Paris.html"><img class="portal" src="assets/portal.gif" alt="Travel to Paris"></a>
<a href="LA.html"><img class="portal" src="assets/portal.gif" alt="Travel to Las Vegas"></a>
<a href="rome.html"><img class="portal" src="assets/portal.gif" alt="Travel to Rome"></a>
<a href="tokyo.html"><img class="portal" src="assets/portal.gif" alt="Travel to Tokyo"></a>
</div>