-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
90 lines (87 loc) · 3.81 KB
/
index.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
89
90
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Home Venues</title>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/bulma/0.6.2/css/bulma.min.css">
<link rel="stylesheet" href="./assets/css/style.css">
<script src="https://code.jquery.com/jquery-3.3.1.min.js" integrity="sha256-FgpCb/KJQlLNfOu91ta32o/NMZxltwRo8QtmkMRdAu8=" crossorigin="anonymous"></script>
<script defer src="https://use.fontawesome.com/releases/v5.0.7/js/all.js"></script>
<link href="https://fonts.googleapis.com/css?family=Lobster" rel="stylesheet">
<link href="https://fonts.googleapis.com/css?family=Amaranth" rel="stylesheet">
</head>
<body>
<!-- page body -->
<!-- navbar -->
<nav class="navbar ">
<div class="navbar-brand">
<a class="navbar-item" href="index.html">
<img src="./assets/imgs/hv.png" class="logo-pic" /></a>
<a class="navbar-item is-hidden-desktop" href="https://github.com/leenbean16" target="_blank">
<span class="icon" style="color: #333;">
<i class="fa fa-github"></i>
</span>
</a>
<a class="navbar-item is-hidden-desktop" href="https://twitter.com/linashamoon" target="_blank">
<span class="icon" style="color: #55acee;">
<i class="fa fa-twitter"></i>
</span>
</a>
<div class="navbar-burger burger" data-target="navMenubd-example">
<span></span>
<span></span>
<span></span>
</div>
</div>
<div id="navMenubd-example" class="navbar-menu">
<div class="navbar-start">
<div class="navbar-item">
<a class="navbar-item" href="./index.html">Home</a>
<a class="navbar-item" href="./addListing.html">Add a Listing</a>
<a class="navbar-item" href="./findVenue.html">Find a Venue</a>
<a class="navbar-item" href="./account.html">Account</a>
<a class="navbar-item" href="./loginFormSignUpForm.html">Login/Sign Up</a>
</div>
</div>
</div>
</nav>
<!-- hero -->
<section class="hero is-medium is-bold" style="background-image: url('./assets/imgs/venue.png');">
<div class="hero-body home-hero">
<div class="opaque">
<h1 class="title" style="font-size: 50px;">Home Venues</h1>
<h2 class="subtitle">Affordable Event Planning Services</h2>
<h2 class="subtitle">Private and Intimate Venues For Your Special Event!</h2>
</div>
</div>
</section>
<!-- tiles -->
<div class="columns">
<div class="column home-columns" style="margin-right: 10px;">
<h1 class="title column-title">Search Venues</h1>
<p>
Ready to find the perfect location for your next big event or company gathering? Begin your search here!
</p>
</div>
<div class="column home-columns">
<h1 class="title column-title">Host</h1>
<p>
Are you ready to make your home work for you? List your home with us! Someone's next venue could be your home!
</p>
</div>
<div class="column home-columns">
<h1 class="title column-title" style="margin-left: 10px;">Vendor</h1>
<p>
Extras for events that you need or can offer! Check out caterers, photographers, florists, and so much more near you!
</p>
</div>
</div>
<!-- footer -->
<section class="footer footer-section is-primary">
<p class="copyright">Home Venues 2018</p>
</section>
<!-- js file location -->
<script src="./assets/js/index.js"></script>
</body>
</html>