generated from Code-Institute-Org/gitpod-full-template
-
Notifications
You must be signed in to change notification settings - Fork 1
/
book.html
88 lines (74 loc) · 3.47 KB
/
book.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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="description" content="Wipeout surf camp for beginer and intermediate surfers and surfing enthusiasts">
<meta name="keywords" content="surfing, surf camp, waves, beach, sun, surf school">
<link rel="stylesheet" href="assets/css/style.css">
<title>Wipeout surf camp</title>
</head>
<body id="background-book">
<!-- main logo and navigation structure -->
<header>
<a href="index.html">
<!-- Font awesome script -->
<h1 id="logo">Wipeout <span><i class="fas fa-snowboarding"></i></span><br>surf camps</h1>
</a>
<nav>
<ul id="main-navigation">
<li>
<!-- Font awesome script -->
<a href="book.html" class="active"><span><i class="fas fa-sun"></i></span>Book</a>
</li>
<li>
<a href="contact.html">Contact</a>
</li>
<li>
<a href="gallery.html">Gallery</a>
</li>
</ul>
</nav>
</header>
<!-- page form structure -->
<main>
<section class="form-section">
<form class="signup-form" method="post">
<h2> The best wave of your life is still out there.<br>Let's catch some waves! <i class="far fa-hand-peace"></i></h2>
<div class="name-labels">
<label for="fname">First Name</label>
<input class="text-input" id="fname" type="text" name="first_name" required>
<label for="lname">Last Name</label>
<input class="text-input" id="lname" type="text" name="last_name" required>
<label for="email">Email Address</label>
<input class="text-input" id="email" type="email" name="email_address" required>
</div>
<div class="camp-labels">
<label for="corralejo">Corralejo</label>
<input class="corralejo" id="corralejo" type="radio" name="camp-choice" value="corralejo" required>
<label for="maspalomas">Maspalomas</label>
<input class="maspalomas" id="maspalomas" type="radio" name="camp-choice" value="maspalomas" required>
<input class="join-button" type="submit" value="Surf's up!">
</div>
</form>
</section>
</main>
<!-- Footer structure -->
<footer>
<ul id="footer-links">
<li>
<a href ="https://www.facebook.com/" target="_blank" rel="noopener" aria-label="Visit our Facebook page (opens in a new tab)"><i class="fab fa-facebook-square"></i></a>
</li>
<li>
<a href="https://www.instagram.com/" target="_blank" rel="noopener" aria-label="Visit our Instagram page (opens in a new tab)"><i class="fab fa-instagram"></i></a>
</li>
<li>
<a href="https://twitter.com/" target="_blank" rel="noopener" aria-label="Visit our Twitter page (opens in a new tab)"><i class="fab fa-twitter-square"></i></a>
</li>
</ul>
</footer>
<!-- font awesome script -->
<script src="https://kit.fontawesome.com/816e169a71.js" crossorigin="anonymous"></script>
</body>
</html>