-
Notifications
You must be signed in to change notification settings - Fork 3
/
index.html
100 lines (87 loc) · 3.26 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
91
92
93
94
95
96
97
98
99
100
<!DOCTYPE html>
<html>
<head>
<meta charset = "utf-8">
<meta name="description" content="We connect meetups with venues.">
<link href="css/bootstrap.css" rel="stylesheet">
<!-- <link href="css/bootstrap-responsive.css" rel="stylesheet"> -->
<link href="css/style.css" rel="stylesheet">
<link href="css/index.css" rel="stylesheet">
<link href='http://fonts.googleapis.com/css?family=Arvo:400,700,400italic,700italic' rel='stylesheet' type='text/css'>
<link href='http://fonts.googleapis.com/css?family=Open+Sans:400italic,400,300,600,700' rel='stylesheet' type='text/css'>
<title>Espace.co</title>
</head>
<body>
<div id="hero_img"></div>
<!-- <img src="images/main-image.jpeg"/> -->
<div class="container">
<div class="carousel-caption center">
<h1 class="center text-shadow white">Find a Venue</h1>
<p class="blurb text-shadow">Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod
tempor incididunt ut labore et dolore magna aliqua.</p>
<button class="btn-primary btn-orange btn-huge">Sign Up</button>
</div>
</div>
<div class="navbar navbar-inverse navbar-fixed-top">
<div class="navbar-inner">
<div class="container">
<a href="index.html" id="brand_logo" class="brand">Espace.co</a>
<ul class="nav pull-right">
<li class="dropdown">
<a href="#" class="dropdown-toggle">Login</a>
<ul id="Sign_in" class="dropdown-menu">
<form>
<input placeholder="Email" type="text" name="username"/>
<input placeholder="Password" type="text" name="Password"/>
<button class="btn-primary pull-right btn-orange">Log in »</button>
<br />
<a href="#">Forgot password?</a>
</form>
</ul>
</li>
<li class="right">
<a href="signup.html">Sign Up</a>
</li>
</ul>
</div>
</div>
</div>
<div class="container overlap">
<div class="row">
<div class="span4 featured-item">
<img src="images/img8.jpg"/>
<h3>Location</h3>
<p>
Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et.
</p>
</div>
<div class="span4 featured-item">
<img src="images/img5.jpg"/>
<h3>Affordability</h3>
<p>
Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod
tempor incididunt ut labore et.
</p>
</div>
<div class="span4 featured-item">
<img src="images/img9.jpg"/>
<h3>Browse Venues</h3>
<p>
Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod
tempor incididunt ut labore et.
</p>
</div>
</div><!--row-->
</div>
<script src="http://ajax.googleapis.com/ajax/libs/jquery/2.0.0/jquery.min.js"></script>
<script type="text/javascript" src="http://twitter.github.com/bootstrap/assets/js/bootstrap-dropdown.js"></script>
<script>
$(document).ready(function(){
$('.dropdown-toggle').dropdown();
$('.dropdown-menu').click(function(event) {
event.stopPropagation();
});
});
</script>
</body>
</html>