-
Notifications
You must be signed in to change notification settings - Fork 9
/
index.php
132 lines (124 loc) · 6.8 KB
/
index.php
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
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>Bootstrap Web Design</title>
<?php require 'utils/styles.php'; ?><!--css links. file found in utils folder-->
<?php require 'utils/scripts.php'; ?><!--js links. file found in utils folder-->
</head>
<body>
<?php require 'utils/header.php'; ?><!--header content. file found in utils folder-->
<div class = "content"><!--body content holder-->
<div class = "container">
<div class = "col-md-12"><!--body content title holder with 12 grid columns-->
<h1>What we organize</h1><!--body content title-->
</div>
</div>
<div class="container">
<div class="col-md-12">
<hr>
</div>
</div>
<div class="row"><!--wedding content-->
<section>
<div class="container">
<div class="col-md-6"><!--image holder with 6 grid columns-->
<img src="images/wedding2.jpg" class="img-responsive">
</div>
<div class="subcontent col-md-6"><!--Text holder with 6 column grid-->
<h1>Wedding</h1><!--title-->
<p><!--content-->
The most important day in a couple's life.
Guaranteeing personalized solutions and flawless execution, our venues provide the perfect
location for your special day.
</p>
<hr class="customline"><!--css modified horizontal line-->
<button type="button" class="btn btn-default btn-lg"><!--view event button (no function implemented)-->
View Events <span class="glyphicon glyphicon-arrow-right" aria-hidden="true"></span><!--arrow right glyphicon-->
</button>
</div><!--subcontent div-->
</div><!--container div-->
</section>
</div><!--row div-->
<div class="container">
<div class="col-md-12">
<hr>
</div>
</div>
<div class="row">
<section>
<div class="container">
<div class="col-md-6"><!--image holder with 6 grid columns-->
<img src="images/birthday2.jpg" class="img-responsive">
</div>
<div class="subcontent col-md-6"><!--Text holder with 6 column grid-->
<h1>Birthday</h1><!--title-->
<p><!--content-->
Whether an all-day or the ultimate extravaganza that
lasts well into the wee hours, our Urban Events team is here to make sure all your birthday
party wishes come true so you can kick back, drink up and enjoy your special day!
</p>
<hr class="customline"><!--css modified horizontal line-->
<button type="button" class="btn btn-default btn-lg"><!--view event button (no function implemented)-->
View Events <span class="glyphicon glyphicon-arrow-right" aria-hidden="true"></span><!--arrow right glyphicon-->
</button>
</div><!--subcontent div-->
</div><!--container div-->
</section>
</div><!--row div-->
<div class="container">
<div class="col-md-12">
<hr>
</div>
</div>
<div class="row">
<section>
<div class="container">
<div class="col-md-6"><!--image holder with 6 grid columns-->
<img src="images/fashion2.jpg" class="img-responsive">
</div>
<div class="subcontent col-md-6"><!--Text holder with 6 column grid-->
<h1>Fashion</h1><!--title-->
<p><!--content-->
Fast becoming to go-to location for fashion events, PR gatherings and product launches,
The Urban Purveyor Group venues provide you with choice and quality in premium locations
for all your event needs.
</p>
<hr class="customline"><!--css modified horizontal line-->
<button type="button" class="btn btn-default btn-lg"><!--view event button (no function implemented)-->
View Events <span class="glyphicon glyphicon-arrow-right" aria-hidden="true"></span><!--arrow right glyphicon-->
</button>
</div><!--subcontent div-->
</div><!--container div-->
</section>
</div><!--row div-->
<div class="container">
<div class="col-md-12">
<hr>
</div>
</div>
<div class="row">
<section>
<div class="container">
<div class="col-md-6"><!--image holder with 6 grid columns-->
<img src="images/meeting2.jpg" class="img-responsive">
</div>
<div class="subcontent col-md-6"><!--Text holder with 6 column grid-->
<h1>Meeting</h1><!--title-->
<p><!--content-->
From formal, to not-so-formal, our flexible event
spaces can cater to your every need for meetings and conferences large or small, and our
dedicated event team can assist with all aspects of your event planning.
</p>
<hr class="customline"><!--css modified horizontal line-->
<button type="button" class="btn btn-default btn-lg"><!--view event button (no function implemented)-->
View Events <span class="glyphicon glyphicon-arrow-right" aria-hidden="true"></span><!--arrow right glyphicon-->
</button>
</div><!--subcontent div-->
</div><!--container div-->
</section>
</div><!--row div-->
</div><!--body content div-->
<?php require 'utils/footer.php'; ?><!--footer content. file found in utils folder-->
</body>
</html>