-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
87 lines (73 loc) · 3.48 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
<!DOCTYPE html>
<html>
<head>
<title>Daily Motivations</title>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link href="css/bootstrap.css" rel="stylesheet">
<style>
IMG.displayed {
display: block;
margin-left: auto;
margin-right: auto }
.jumbotron {
text-align: center;
border-bottom: 1px solid #e5e5e5;
}
.jumbotron .btn {
font-size: 21px;
padding: 14px 24px;
}
</style>
</head>
<body style="background-color:#660000">
<script src="http://code.jquery.com/jquery.js"></script>
<script src="js/bootstrap.js"></script>
<!-- Create black navbar -->
<div class="navbar navbar-inverse navbar-static-top">
<a href="#" class="navbar-brand">A4DAYS</a>
<!-- Navigation buttons -->
<div class="container navbar-right">
<!-- Collapse button -->
<button class="navbar-toggle" data-toggle="collapse" data-target=".navHeaderCollapse">
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
<!-- Collapse content -->
<div class="collapse navbar-collapse navHeaderCollapse">
<ul class="nav navbar-nav navbar-left">
<li class="active"><a href="index.html">Home</a></li>
<li><a href="pages/upload.html">Upload</a></li>
<li><a href="pages/account.html">Account</a></li>
</ul>
<ul class="nav navbar-nav navbar-right">
<li><input type="text" class="form-control input-sm" placeholder="Username"></li>
<li><input type="text" class="form-control input-sm" placeholder="Password"></li>
<li><button type="submit" class="btn-xs btn-default">Login</button></li>
<li><button type="submit" class="btn-xs btn-default">Join</button></li>
</ul>
</div>
</div>
</div>
<div class="container">
<div class="jumbotron">
<h3 class = "text-center"> <b>Stay Strong!</b></h3>
<img src="http://i.imgur.com/uq8EXQc.png" alt="http://i.imgur.com/04LPCiD.jpg"
class="img-responsive center-block">
<p class="text-center"><br>"The struggle itself towards the
heights is enough to fill a man's heart. One must imagine Siyphus happy." Albert Camus
</p>
<!-- Insert random image here! -->
<a href="http://lamp.cse.fau.edu/~sshahrda/Bootstrap/index.html">
<img src="http://i.imgur.com/adk3rQy.png"
alt="refresh"
class="img-responsive center-block" width="100" height="85">
</a>
</div>
<div class="footer">
<p>© Llamas With Hats 2014</p>
</div>
</div>
</body>
</html>