forked from JibyJoseph/Basic-Html-project
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbootstrap11.html
More file actions
74 lines (64 loc) · 1.51 KB
/
Copy pathbootstrap11.html
File metadata and controls
74 lines (64 loc) · 1.51 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<title>Bootstrap Theme Simply Me</title>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="css/bootstrap.css">
<script src="js/bootstrap.min.js"></script>
<style>
body {
font: 20px "Montserrat", sans-serif;
line-height: 1.8;
color: #f5f6f7;
}
p {font-size: 16px;}
.bg-1 {
background-color: #1abc9c; /* Green */
color: #ffffff;
}
.bg-2 {
background-color: #474e5d; /* Dark Blue */
color: #ffffff;
}
.bg-3 {
background-color: #fff; /* White */
color: #555555;
}
.container-fluid {
padding-top: 70px;
padding-bottom: 70px;
}
</style>
</head>
<body>
<div class="bg-1">
<div class="container text-center ">
<h3>Who Am I?</h3>
<img src="./image/superman.jpg" alt="supman" width="350" height="350">
<h3>I'm an adventurer</h3>
</div>
</div>
<div class="container-fluid bg-2 text-center">
<h3>What Am I?</h3>
<p>A lone traveller </p>
</div>
<div class="container-fluid bg-3 text-center">
<h3>Where To Find Me?</h3>
<div class="row">
<div class="col-sm-4">
<p>Where the sky meets the sea...</p>
<img src="image/horizon.jpg" alt="Image">
</div>
<div class="col-sm-4">
<p>In a far away galaxy</p>
<img src="image/space.jpg" alt="Image">
</div>
<div class="col-sm-4">
<p>Within my mind</p>
<img src="image/mind.jpg" alt="Image">
</div>
</div>
</div>
</body>
</html>