This repository has been archived by the owner on Dec 9, 2017. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
143 lines (134 loc) · 5.51 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta content="width=device-width,initial-scale=1" name="viewport">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Here</title>
<link rel="stylesheet" href="https://bootswatch.com/lumen/bootstrap.min.css">
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js"></script>
<style>
body {
margin-top: 70px;
}
h3{
color: white;
}
</style>
</head>
<body>
<nav class="navbar navbar-inverse navbar-fixed-top">
<div class="container">
<a class="navbar-brand" href="#">Here</a>
<ul class="nav navbar-nav">
<li class="active">
<a href="Homepage.html">Homepage</a>
</li>
<li>
<a href="https://www.facebook.com/" target="_blank">Facebook</a>
</li>
<li>
<a href="Profile.html">Profile</a>
</li>
<li>
<a href="Article.html">Article</a>
</li>
</ul>
<form class="navbar-form navbar-right" role="search">
<div class="form-group">
<input type="text" class="form-control" placeholder="Search">
</div>
<button type="submit" class="btn btn-default">Submit</button>
</form>
</div>
</nav>
<div class="container-fluid">
<div class="row">
<div class="col-md-12">
<div class="jumbotron">
<div id="myCarousel" class="carousel slide" data-ride="carousel">
<!-- Indicators -->
<ol class="carousel-indicators">
<li data-target="#myCarousel" data-slide-to="0" class="active"></li>
<li data-target="#myCarousel" data-slide-to="1"></li>
<li data-target="#myCarousel" data-slide-to="2"></li>
<li data-target="#myCarousel" data-slide-to="3"></li>
</ol>
<!-- Wrapper for slides -->
<div class="carousel-inner" role="listbox">
<div class="item active">
<img src="img/image-bike.jpg" alt="image-bike" style="width: 100%; height: 630px;">
<div class="carousel-caption">
<h3>This is what the life looks like.</h3>
</div>
</div>
<div class="item">
<img src="img/Topofmountain.jpg" alt="dream" style="width: 100%; height: 630px;">
<div class="carousel-caption">
<h3>A place I would like to go</h3>
</div>
</div>
<div class="item">
<img src="img/companion.jpg" alt="companion" style="width: 100%; height: 630px;">
<div class="carousel-caption">
<h3>Companion with me</h3>
</div>
</div>
<div class="item">
<img src="img/homemade.jpg" alt="homemade" style="width: 100%; height: 630px;">
<div class="carousel-caption">
<h3>Make some cookies by myself</h3>
</div>
</div>
</div>
<!-- Left and right controls -->
<a class="left carousel-control" href="#myCarousel" role="button" data-slide="prev">
<span class="glyphicon glyphicon-chevron-left" aria-hidden="true"></span>
<span class="sr-only">Previous</span>
</a>
<a class="right carousel-control" href="#myCarousel" role="button" data-slide="next">
<span class="glyphicon glyphicon-chevron-right" aria-hidden="true"></span>
<span class="sr-only">Next</span>
</a>
</div>
<div class="row">
<h2>Honestly, Who I am </h2>
<hr>
<div class="col-md-4">
<div class="thumbnail">
<img alt="Bootstrap Thumbnail First" src="img/reader.png" />
<div class="caption">
<h4>
A book Reader.
</h4>
</div>
</div>
</div>
<div class="col-md-4">
<div class="thumbnail">
<img alt="Bootstrap Thumbnail Second" src="img/sleepy.png"/>
<div class="caption">
<h4>
A heavy sleeper.
</h4>
</div>
</div>
</div>
<div class="col-md-4">
<div class="thumbnail">
<img alt="Bootstrap Thumbnail Third" src="img/friends.png" />
<div class="caption">
<h4>
A friend of lots of people.
</h4>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</body>
</html>
</div>