-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
112 lines (108 loc) · 4.24 KB
/
Copy pathindex.html
File metadata and controls
112 lines (108 loc) · 4.24 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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
<!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>
<section class="hero">
<h1>The Largest Event Center In Philly</h1>
</section>
<main>
<section class="intro">
<div class="col50 textContainer">
<h2 class="cardTitle">An Event Space That Suits All Your Needs</h2>
<p>
From tech conferences to private conventions, Branch Out
is the perfect place to host your event.
</p>
<br>
<p>
With large meeting rooms built to suit your event, world
class dining, and friendly staff, you can feel confident
that your event will be a memorable experience.
</p>
<a href="about.html" class="button">About Us</a>
</div>
<div class="col50 imgContainer">
<img src="assets/conv1.png" alt="Convention">
</div>
</section>
<section class="diningIntro">
<div class="col50 imgContainer">
<img src="assets/catering.png" alt="Catering">
</div>
<div class="col50 textContainer">
<h2 class="cardTitle">Dining and Catering</h2>
<p>
When you book your event at Branch Out you have access to a
multitude of mouth-watering dining or catering options. We
offer many different cuisines:
</p>
<ul>
<li>Italian</li>
<li>Thai</li>
<li>Japanese</li>
<li>American</li>
<li>Indian</li>
<li>Mediterranean</li>
<li>And More!</li>
</ul>
<a href="dining-catering.html" class="button">Explore</a>
</div>
</section>
<section class="eventsIntro">
<div class="col50 textContainer">
<h2 class="cardTitle">Upcoming Events</h2>
<p>
View our upcoming events!
</p>
<a href="events.html" class="button">View All</a>
</div>
<div class="col50 imgContainer">
<img src="assets/conv2.png" alt="">
</div>
</section>
</main>
<section class="contact">
<h2 class="cardTitle">Have Questions? Contact Us!</h2>
<form action="#">
<h3>Contact Info</h3>
<div class="inputBox">
<input type="text" placeholder="Name" required/>
</div>
<div class="inputBox">
<input type="email" placeholder="Email" required/>
</div>
<div class="inputBox textArea">
<textarea placeholder="Message" required></textarea>
</div>
<div class="inputbox btnArea">
<input type="submit" value="Send"/>
</div>
</form>
</section>
<footer>© Branch Out Conventions 2026</footer>
</body>
</html>