-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathind.html
57 lines (48 loc) · 1.4 KB
/
ind.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
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
<!DOCTYPE html>
<html>
<head>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="style.css">
</head>
<header>
<div class="topnav">
<a link rel="Home" href="home.php">Home</a>
<a href="#">About Us</a>
<a link rel="Contact Us" href="ContactUs.php">Contact Us</a>
<a link rel="cart" style="float:right" class="fa fa-shopping-cart" href="cart.php"> <?php echo $_SESSION['items']; ?></a>
<a link rel="Log out" style="float:right" href="logout.php">Log out</a>
</div><br><br>
</header>
<body>
<div class="header">
<h1>The Local Theatre</h1>
</div>
<div class="row">
<div class="col-3 menu">
<ul>
<li>The Flight</li>
<li>The City</li>
<li>The Island</li>
<li>The Food</li>
</ul>
</div>
<div class="col-6">
<h1>The City</h1>
<p>Inverness is the capital of the Highlands in Scotland. The city can be divided in two parts, the old town and the modern city.</p>
</div>
<div class="col-3 right">
<div class="aside">
<h2>What?</h2>
<p>Inverness is a city of the Scotland.</p>
<h2>Where?</h2>
<p>Scotland is a country in the United Kingdom.</p>
<h2>How?</h2>
<p>You can reach Inverness airport from all over Europe.</p>
</div>
</div>
</div>
<div class="footer">
<p>Resize the browser window to see how the content respond to the resizing.</p>
</div>
</body>
</html>