-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
141 lines (111 loc) · 4.4 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
<!Doctype html>
<html>
<head>
<title>ms | home</title>
<link rel="stylesheet" href="css/bootstrap.css">
<script src="js/jquery.js"></script>
<script src="js/bootstrap.js"></script>
<style>
.navbar {
background-image: url(img/header3.jpg);
}
.nav li {
}
.nav li a{
color:white;
display:inline-block;
text-decoration: none;
padding:10px;
font-size: 120%;
}
.nav li a:hover{
background-color: orange;
}
.nav-control a:hover{
font-size: 120%;
background-color: black;
}
</style>
</head>
<!-- <body style="background-image: url(img/text.svg);"> -->
<body>
<nav class="navbar navbar-custom">
<div class="container-fluid">
<div class="navbar-header">
<a href="#" class="navbar-brand"><img src="img/logo.png" width=160px height=60x style="z-index: 5"></a>
</div>
<div>
<ul class="nav navbar-right">
<li><a href="index.html" class="active">Home</a></li>
<li><a href="about.html">About</a></li>
<li><a href="contact.html">Contact</a></li>
</ul>
</div>
</div>
</nav>
<header style="background: url(img/header3.jpg); height:250px; width: 100%">
<div style="opacity:0.5; padding:50px; margin:0px 100px 0px 100px; text-align: center;" class="jumbotron" >
<h2>Midnight Scribblings</h2>
<h5>when thoughts flow down the pen</h5>
</div>
</header>
<div class="row">
<div class="offset-md-3 col-md-6 offset-xs-1 col-xs-10" >
<br>
<br>
<br>
<div id="post" style="border-bottom: 2px solid grey;">
<h1 style="color: brown">Dear John</h1>
<p class="lead" style="color: teal">A story that will leavea mark</p>
<p><strong>23 May | </strong><em>The Notebook</em> is nodoubt a heart touching story. The romance between Noah and Allie will certainly
take anyone by heart. But question arises how much realistic plot it had when compared to movies like <em>
A Walk To Remenber</em>...<a href="#" style="text-decoration: none">More</a>
</p>
</div>
<br>
<br>
<div id="post" style="border-bottom: 2px solid grey;">
<h1 style="color: brown">The Notebook</h1>
<p class="lead" style="color: teal">How much of it was based on reality</p>
<p><em>The Notebook</em> is nodoubt a heart touching story. The romance between Noah and Allie will certainly
take anyone by heart. But question arises how much realistic plot it had when compared to movies like <em>
A Walk To Remenber</em>...<a href="#" style="text-decoration: none">More</a>
</p>
</div>
<br>
<br>
<div id="post" style="border-bottom: 2px solid grey;">
<h1 style="color: brown">The Notebook</h1>
<p class="lead" style="color: teal">How much of it was based on reality</p>
<p><em>The Notebook</em> is nodoubt a heart touching story. The romance between Noah and Allie will certainly
take anyone by heart. But question arises how much realistic plot it had when compared to movies like <em>
A Walk To Remenber</em>...<a href="#" style="text-decoration: none">More</a>
</p>
</div>
<br>
<br>
<div id="post" style="border-bottom: 2px solid grey;">
<h1 style="color: brown">The Notebook</h1>
<p class="lead" style="color: teal">How much of it was based on reality</p>
<p><em>The Notebook</em> is nodoubt a heart touching story. The romance between Noah and Allie will certainly
take anyone by heart. But question arises how much realistic plot it had when compared to movies like <em>
A Walk To Remenber</em>...<a href="#" style="text-decoration: none">More</a>
</p>
</div>
<div class="text-right">
<button class="btn btn-default" style="margin:20px 0px; align-self: right; background-color: teal; color: white; border-radius: 0px;">More</button>
</div>
<br>
</div>
</div>
<div class="container-fluid" style="background-color: black; opacity:.85;">
<br>
<ul class="nav">
<li><a href="#">Home</a></li>
<li><a href="#">Technology</a></li>
<li><a href="#">Enternainment</a></li>
</ul>
<br>
</div>
</body>
</html>