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 pathindex.html
25 lines (19 loc) · 906 Bytes
/
index.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
25
<!DOCTYPE html>
<html lang="eng">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width,initial-scale=1.0">
<title>Travel Simulator</title>
</head>
<body>
<link rel="stylesheet" href="style.css">
<div id="header"><h1>Travel Simulator</h1><h2>Click a portal to travel to a new location!</h2></div>
<div id="container">
<a href="antartica.html"><img class="portal" src="assets/portal.gif" alt="Travel to antartica"></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>
</body>
</html>