-
Notifications
You must be signed in to change notification settings - Fork 0
/
venue.html
55 lines (53 loc) · 2.57 KB
/
venue.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 lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Venue</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<header class="header">
<section class="logo flex-header">
<a href="index.html">IT <br> Conference</a>
</section>
<section class="date flex-header">
<h3>August 24th - 25th - Kumasi, AR</h3>
<a href="index.html">Home</a>
<a href="speakers.html">Speakers</a>
<a href="schedule.html">Schedule</a>
<a href="venue.html">Venue</a>
<a href="register.html">Register</a>
</section>
<section class=" intro flex-header">
<h2>Teaching people how to code</h2>
<p>Every year the brightest software developers gather to discuss the latest technologies. Join this August!.</p>
<a class="reg" href="register.html">Register Now</a>
</section>
</header>
<div class="venue">
<section>
<h4>kumasi cultural centre</h4>
<p>Ashanti Region, kumasi.</p>
<p><a href="thekumasiculturalcentre.com">thekumasiculturalcentre.com</a><br>(321) 456 780</p>
</section>
<iframe src="https://www.google.com/maps/embed?pb=!1m14!1m8!1m3!1d4046755.893748551!2d-1.0304069!3d7.9044654!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0xfdb950882e669bf%3A0x650ce06eebab18c4!2sCultural%20Center!5e0!3m2!1sen!2sgh!4v1584031424151!5m2!1sen!2sgh" width="400" height="350" frameborder="0" style="border:0;" allowfullscreen="" aria-hidden="false" tabindex="0"></iframe>
<section>
<h4>Kumasi Hotel</h4>
<p>Ashanti Region, kumasi.</p>
<p><a href="kumasihotel.com">kumasihotel.com</a><br>(987) 654 432</p>
</section>
<iframe src="https://www.google.com/maps/embed?pb=!1m14!1m8!1m3!1d4046755.893748551!2d-1.0304069!3d7.9044654!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0xfdb942c070d7013%3A0x5ff59d2cc63a51c!2sHotel%20St%20Patrick!5e0!3m2!1sen!2sgh!4v1584031533652!5m2!1sen!2sgh" width="400" height="350" frameborder="0" style="border:0;" allowfullscreen="" aria-hidden="false" tabindex="0"></iframe>
</div>
<footer>
<small>©IT conference</small>
<section>
<a href="index.html">Home</a>
<a href="speakers.html">Speakers</a>
<a href="schedule.html">Schedule</a>
<a href="venue.html">Venue</a>
<a href="register.html">Register</a>
</section>
</footer>
</body>
</html>