-
Notifications
You must be signed in to change notification settings - Fork 56
/
startup.html
155 lines (127 loc) · 5.6 KB
/
startup.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
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
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Hipstrify.io</title>
<!-- Bootstrap -->
<link href="bootstrap/css/bootstrap.min.css" rel="stylesheet">
<link href="startup.css" rel="stylesheet">
<!-- HTML5 shim and Respond.js for IE8 support of HTML5 elements and media queries -->
<!-- WARNING: Respond.js doesn't work if you view the page via file:// -->
<!--[if lt IE 9]>
<script src="https://oss.maxcdn.com/html5shiv/3.7.2/html5shiv.min.js"></script>
<script src="https://oss.maxcdn.com/respond/1.4.2/respond.min.js"></script>
<![endif]-->
</head>
<body data-spy="scroll" data-target="#navbar">
<nav class ="navbar navbar-fixed-top navbar-inverse" id="navbar">
<div class="container">
<div class="navbar-header">
<button type="button" class="navbar-toggle collapsed" data-toggle="collapse" data-target="#navbar-collapse">
<span class="sr-only">Toggle navigation</span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
<a class="navbar-brand" href="indx.html">Hipstrify.io</a>
</div><!-- navbar-header -->
<div class="collapse navbar-collapse" id="navbar-collapse">
<ul class="nav navbar-nav navbar-right">
<li class="active"><a href="#home">Home</a></li>
<li><a href="#why-us">About</a></li>
<li><a href="#team">Our Team</a></li>
<li><a href="#signup">Contact</a></li>
</ul>
</div>
</div><!-- container -->
</nav>
<div class="cover" id="home">
<div class="cover-text">
<h1>You probaby haven’t heard of us.</h1>
<p class="lead">We're the "cool" vegan uncle who doesn't have kids and makes a living repairing antique polaroid cameras, while drinking a $38 bottle of artisanal cold-brew.</p>
<a href="#why us" role="button" class="btn btn-danger btn-lg">Get Started up</a>
</div>
</div>
<section class="testimonial">
<div class="container">
<blockquote>
“ I never realized how old I was before. Thank you to Hipstrify! It has just transformed me into a young cool lad, I just cant believe my eyes. Its not too late, highly recommended! ”
<cite>— Zusa Zil, a happy client</cite>
</blockquote>
</div>
</section>
<section id="why-us" >
<h2>Why Hipstrify.io ?</h2>
<div class="container">
<div class="row">
<div class="col-sm-4">
<h3>Artisanal</h3>
<p>Squid synth Marfa, fashion axe readymade whatever four loko aesthatic tote bag tilde. Mustache try-hard skateboard blog, umami ugh gentrify chia trust fund whatever. Churchkey leggings small batch Etsy, taxidermy VHS meggings deep v slow-carb 8-bit blog.</p>
</div>
<div class="col-sm-4">
<h3>Readymade</h3>
<p>Squid synth Marfa, fashion axe readymade whatever four loko aesthatic tote bag tilde. Mustache try-hard skateboard blog, umami ugh gentrify chia trust fund whatever. Churchkey leggings small batch Etsy, taxidermy VHS meggings deep v slow-carb 8-bit blog.</p>
</div>
<div class="col-sm-4">
<h3>Small Batches</h3>
<p>Squid synth Marfa, fashion axe readymade whatever four loko aesthatic tote bag tilde. Mustache try-hard skateboard blog, umami ugh gentrify chia trust fund whatever. Churchkey leggings small batch Etsy, taxidermy VHS meggings deep v slow-carb 8-bit blog.</p>
</div>
</div>
</div>
</section>
<section id="team">
<h2>Meet our Team</h2>
<div class="container">
<div class="row">
<div class="col-sm-3">
<img src="img/jane.jpg" alt="Woman's face" class="img-circle">
<h4>Jane Doe</h4>
<p>Morbi leo risus, porta ac consectetur ac, vestibulum at eros.</p>
</div>
<div class="col-sm-3">
<img src="img/john.jpg" alt="Man's face" class="img-circle">
<h4>John Clitus</h4>
<p>Morbi leo risus, porta ac consectetur ac, vestibulum at eros.</p>
</div>
<div class="col-sm-3">
<img src="img/jenny.jpg" alt="Woman's face" class="img-circle">
<h4>Jenny Mathew</h4>
<p>Morbi leo risus, porta ac consectetur ac, vestibulum at eros.</p>
</div>
<div class="col-sm-3">
<img src="img/jim.jpg" alt="Man's face" class="img-circle">
<h4>Jim Issac</h4>
<p>Morbi leo risus, porta ac consectetur ac, vestibulum at eros.</p>
</div>
</div>
</div>
</section>
<section id="signup">
<div class="container">
<h2>Subscribe for our Newsletter</h2>
<p class="lead">We'll send you about our latest updates, sizzling sales and upcoming trends!</p>
<div class="row">
<div class="col-sm-8 col-sm-offset-2">
<form>
<div class="input-group">
<input type="text" class="form-control input-lg" placeholder="Your email address...">
<span class="input-group-btn">
<button class="btn btn-warning btn-lg" type="button">Handcraft it</button>
</span>
</div>
</form>
</div>
</div>
</div>
</section> -->
<footer>
crafted with ♥ in calgary by <a href="[email protected]">ashwin</a>
</footer>
<!-- jQuery (necessary for Bootstrap's JavaScript plugins) -->
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.3/jquery.min.js"></script>
<!-- Include all compiled plugins (below), or include individual files as needed -->
<script src="bootstrap/js/bootstrap.min.js"></script>
</body>
</html>