-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathregistration.html
70 lines (60 loc) · 2.39 KB
/
registration.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
58
59
60
61
62
63
64
65
66
67
68
69
70
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=0.3">
<link rel="stylesheet" href="styles.css">
<title> Registration </title>
</head>
<body class="about">
<header class="header">
<a href="" class="logo">KAC233</a>
<nav class="navbar">
<a href="index.html">Home</a>
<a href="about.html">About</a>
<a href="registration.html">Registration</a>
<a href="contact.html">Contact</a>
</nav>
</header>
<main class="registration">
<div class="category">
<div class="container">
<div class="cg">
<img src="img/speaker.jpg" alt="A speaker speaking" class="cg-photo">
<div class="cg-btn">
<button type="button" class="cg-block"><a href="speaker.html">Speaker</a></button>
</div>
</div>
<div class="reg-cg">
<p class="midtext">
<h2>
Register and join us for <span><h2>KAC233 TOKYO</h2></span>
</h2> <br>
Participants have the option to register as <br>
<span>Speaker</span> or member of the <span>Audience</span> <br>
with differing prices.
<br><br>
Also on offer are special <em>all access</em> packages for each session,
as well as <em>discounts</em> of <em>%15</em> for attending more than <em>two(2)</em>
sessions and totalling costs over <em>€1000</em>.
</p>
</div>
<div class="cg">
<img src="img/audience.jpg" alt="A large audience" class="cg-photo">
<div class="cg-btn">
<button type="button" class="cg-block"><a href="audience.html">Audience</a></button>
</div>
</div>
</div>
</div>
</main>
<footer>
<p>
Copyrights ©<script>
document.write(new Date().getFullYear());
</script>, Project 233. All rights reserved. <br>
KUDZAI ABUBAKAR COLLINS
</p>
</footer>
</body>
</html>