forked from abookapart/css-grid-layout-code
-
Notifications
You must be signed in to change notification settings - Fork 0
/
ch4-layout.html
57 lines (47 loc) · 1.85 KB
/
ch4-layout.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
56
57
<!DOCTYPE html>
<html>
<head>
<title>Putting it all together</title>
<meta charset="utf-8">
<link rel="stylesheet" href="ch4-layout-styles.css" type="text/css">
</head>
<body>
<div class="wrapper">
<header class="mainheader">
<nav>
<ul>
<li><a href="">Balloons</a></li>
<li><a href="">More balloons</a></li>
<li><a href="">Even more balloons</a></li>
</ul>
</nav>
</header>
<aside class="feature-pull"><img src="images/balloon5.jpg" alt="Bristol Balloon Fiesta"></aside>
<article class="feature">
<h1>Bristol Balloon Fiesta</h1>
<p>The 2014 Bristol Balloon Fiesta was a great success. Despite the strong possibility of bad weather launches were held on 2 mornings and evenings with hundreds of hot air balloons heading off into the West Country skies.</p>
<ul class="cta-list">
<li class="box"><a href=""><h2>2015 tickets</h2>
<p>Tickets for 2015 are now available.</p>
</a></li>
<li class="box"><a href=""><h2>Photos</h2>
<p>See more photos of the 2014 fiesta.</p>
</a></li>
</ul>
</article>
<ul class="gallery">
<li class="box"><img src="images/balloon1.jpg" alt="Inflating balloons">
<p>Hot air balloons being inflated</p></li>
<li class="box"><img src="images/balloon2.jpg" alt="Balloons at night">
<p>The night glow</p></li>
<li class="box"><img src="images/balloon3.jpg" alt="Balloons">
<p>Taking to the air</p></li>
<li class="box"><img src="images/balloon6.jpg" alt="Balloons">
<p>Crowds assemble to watch the launches</p></li>
</ul>
<footer class="mainfooter box">
<p>The Bristol Balloon Fiesta happens in August each year in Bristol, UK. You can find out about it <a href="http://www.bristolballoonfiesta.co.uk/">here</a>.</p>
</footer>
</div>
</body>
</html>