-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
126 lines (113 loc) · 4.86 KB
/
index.html
File metadata and controls
126 lines (113 loc) · 4.86 KB
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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
<!DOCTYPE html>
<html lang="en">
<head>
<link rel="stylesheet" href="style.css">
<link href="https://fonts.googleapis.com/css2?family=Bebas+Neue&display=swap" rel="stylesheet">
<link href="https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400..900;1,400..900&display=swap" rel="stylesheet">
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Ages of Time</title>
</head>
<body>
<header id="main-header">
<div id="logo-container">
<img id="logo-header" src="/images/ages_of_time_logo.png" alt="Logo of the website">
<img id="handprint-logo-footer" src="/images/handprints_logo.png" alt="Handprint part of logo">
</div>
<nav>
<ul id="navbar-ul">
<li><a href="" class="navbutton">Home</a></li>
<li><a href="" class="navbutton">What's on</a></li>
<li><a href="" class="navbutton">Visit</a></li>
<li><a href="" class="navbutton">About Ages of Time </a></li>
</ul>
</nav>
</header>
<main>
<div id="main-content">
<article>
<header>
<h1 id="events-header">EVENTS</h1>
</header>
<div class="gallery">
<img id="bryant-giles-pic" src="/images/bryant_giles_pic.jpg" alt="Bryant Giles gallery picture">
<div class="gallery-info">
<h2 id="bryant-giles-header">Bryant Giles: I'M ALIVE?</h2>
<p>October 1- November 30, 2024<br>Ages of Time, London
</p>
<img id="henri-matisse-pic"src="/images/henri_matisse.jpg" alt="Henri Matisse gallery picture">
<h2 id="henri-matisse-header">Art Historian tours: Henri Matisse </h2>
<p>December 1- December 30<br>Ages of Time, London</p>
</div>
</div>
</article>
<article>
<div class="performances">
<img id="imogen-heap-live-pic" src="/images/imogen_heap_live.jpg" alt="Imogen Heap">
<div class="imogen-heap-info">
<h3 id="imogen-heap-live-header">Performing: Imogen Heap</h3>
<p>Experience a live performance by a pop and electropop pioneer this Autumn!</p>
<button id="imogen-heap-tickets" type="button">Tickets</button>
</div>
<img id="swan-lake-pic"src="/images/swan_lake_pic.jpg" alt="Swan lake by The Royal Ballet">
<div class="swan-lake-info">
<h3 id="swan-lake-header">Performing: Swan Lake by The Royal Ballet</h3>
<p>Enjoy a live performance of the Royal Ballet's Swan Lake this autumn!</p>
<button type="button">Tickets</button>
</div>
</div>
</article>
<article>
<div class="films">
<img id="masculin_feminin_poster"src="/images/masculin_feminin_poster.jpg" alt="Masculin Feminin film poster">
<div class="film-info">
<h4 id="film-header">Playing: Masculin Féminin</h4>
<p>Romantic/Documentary 1h 50m <br>Discover the Timeless Charm of French Wave This Autumn. </p>
<button type="button">Tickets</button>
</div>
</div>
</div>
</article>
<article>
<div class="magazine">
<h2 id="magazine-header">Sign up for our magazine!</h2>
<form action="" method="">
<label for="first_name">First Name:</label>
<input type="text" id="first_name" required>
<br>
<label for="last_name">Last Name:</label>
<input type="text" id="last_name" required>
<br>
<label for="email">Email:</label>
<input type="email" name="email" id="email">
<br>
<label for="password">Password:</label>
<input type="password" name="password" id="password">
<br>
</div>
</article>
</div>
</main>
<footer>
<img id="logo-footer" src="/images/ages_of_time_logo.png" alt="Logo of the website">
<img id="handprint-logo-footer" src="/images/handprints_logo.png" alt="Handprint part of logo">
<nav>
<section>
<nav>
<ul id="footer-ul">
<div>
<li><a href="">Home</a></li>
<li><a href="">About us</a></li>
<li><a href="">Contact us</a></li>
</div>
<div>
<li><a href="">Privay Policy</a></li>
<li><a href="">Terms and Conditions</a></li>
<li><a href="">Cookie Policy</a></li>
</div>
</ul>
</nav>
</section>
</footer>
</body>
</html>