-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathevent-booking.html
More file actions
65 lines (65 loc) · 2.59 KB
/
event-booking.html
File metadata and controls
65 lines (65 loc) · 2.59 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Conference Center</title>
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Google+Sans:ital,opsz,wght@0,17..18,400..700;1,17..18,400..700&display=swap" rel="stylesheet">
<script src="https://kit.fontawesome.com/6c7d4602c1.js" crossorigin="anonymous"></script>
<link rel="stylesheet" href="styles.css" class="css">
</head>
<body>
<nav>
<div class="leftSide">
<h2><a href="index.html"><i class="fa-solid fa-code-branch"></i>Branch Out <span>Convention Center</span></a></h2>
</div>
<div class="middleSection">
<ul>
<li><a href="about.html">About</a></li>
<li><a href="events.html">Events</a></li>
<li><a href="dining-catering.html">Dining and Catering</a></li>
</ul>
</div>
<div class="rightSide">
<a href="event-booking.html" class="btn">Book an Event</a>
</div>
</nav>
<main class="booking">
<h2 class="cardTitle">Book an Event</h2>
<form action="#">
<h3>Please Complete the Form Below<h3>
<div class="inputBox">
<input type="text" placeholder="Organization" required/>
</div>
<div class="inputBox">
<input type="text" placeholder="Name" required/>
</div>
<div class="inputBox">
<input type="tel" placeholder="Phone #" required/>
</div>
<div class="inputBox">
<input type="email" placeholder="Email" required/>
</div>
<div class="inputBox">
<input type="text" placeholder="Type of Event" required/>
</div>
<div class="inputBox">
<input type="date" placeholder="Preferred Date" required/>
</div>
<div class="inputBox">
<input type="number" placeholder="Estimated Attendance" required/>
</div>
<div class="inputBox textArea">
<p>Additional Information:</p>
<textarea placeholder="Message" required></textarea>
</div>
<div class="inputbox btnArea">
<input type="submit" value="Send"/>
</div>
</form>
</main>
<footer>© Branch Out Conventions 2026</footer>
</body>
</html>