-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
170 lines (149 loc) · 4.74 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
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
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
<!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>Welcome to MyApp</title>
<!-- Bootstrap -->
<link href="css/bootstrap.min.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]-->
<style>
body{
position:relative;
}
.navbar-brand{
font-size:1.8em;
}
#topContainer{
background-image:url("images/headimg.jpg");
width:100%;
background-size:cover;
color:#FFFFFF;
}
#topRow{
margin-top:100px;
text-align:center;
}
#topRow h1{
font-size:300%;
}
.bold{
font-weight:bold;
}
.marginTop{
margin-top:30px;
}
.center{
text-align:center;
}
.title{
margin-top:100px;
font-size:300%;
}
#footer{
background-color:#fcf067;
padding-top:70px;
width:100%;
}
.marginBottom{
margin-bottom:30px;
}
.appstoreImage{
width:250px;
}
</style>
</head>
<body data-spy="scroll" data-target=".navbar-collapse">
<nav class="navbar navbar-default navbar-fixed-top">
<div class="container">
<div class="navbar-header">
<a href="" class="navbar-brand">MyApp</a>
<button type="button" class="navbar-toggle" 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>
</div>
<div class="collapse navbar-collapse">
<ul class="nav navbar-nav">
<li><a href="#topContainer">Home</a></li>
<li><a href="#about">About</a></li>
<li><a href="#footer">Download the App</a></li>
</ul>
<form class="navbar-form navbar-right">
<div class="form-group">
<input type="email" placeholder="Email" class="form-control" />
</div>
<div class="form-group">
<input type="password" placeholder="Password" class="form-control" />
</div>
<div class="form-group">
<input name="login" type="submit" value="Log In" class="btn btn-primary" />
</div>
</form>
</div>
</div>
</nav>
<div class="container contentContainer" id="topContainer">
<div class="row" id="row1">
<div class="col-md-6 col-md-offset-3" id="topRow">
<h1 class="marginTop">My Awesome App!</h1>
<p class="lead">This is why you should download this fantastic app.</p>
<p>Some more information about this app. You can go into a little more
detail here.</p>
<p class="bold marginTop">Interested? Join our mailing list!</p>
<form class="marginTop">
<div class="input-group">
<span class="input-group-addon" id="symbol">@</span>
<input type="email" class="form-control" placeholder="Your email" aria-describedby="symbol">
</div>
<input type="submit" class="btn btn-success btn-lg marginTop" value="Sign Up"/>
</form>
</div>
</div>
</div>
<div class="container contentContainer" id="about">
<div class="row center">
<h1 class="center title">Financial Services Done Your Way!</h1>
<p class="lead center">Summary of what the app can do.</p>
</div>
<div class="row center marginBottom">
<div class="col-md-4 marginTop">
<h2><span class="glyphicon glyphicon-calendar"></span>Heading 1</h2>
<p>Summary of this heading.</p>
<button class="btn btn-success marginTop">Sign Up!</button>
</div>
<div class="col-md-4 marginTop">
<h2><span class="glyphicon glyphicon-envelope"></span>Heading 2</h2>
<p>Summary of this heading.</p>
</div>
<div class="col-md-4 marginTop">
<h2><span class="glyphicon glyphicon-king"></span>Heading 3</h2>
<p>Summary of this heading.</p>
</div>
</div>
</div>
<div class="container contentContainer" id="footer">
<div class="row">
<h1 class="center title">Download the App!</h1>
<p class="lead center">Really, why should I download this app?</p>
<p class="center"><img src="images/appstore.png" class="appstoreImage"/></p>
</div>
</div>
<!-- jQuery (necessary for Bootstrap's JavaScript plugins) -->
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.2/jquery.min.js"></script>
<!-- Include all compiled plugins (below), or include individual files as needed -->
<script src="js/bootstrap.min.js"></script>
<script>
$(".contentContainer").css("min-height",$(window).height());
</script>
</body>
</html>