-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathviewpost.html
More file actions
73 lines (64 loc) · 2.95 KB
/
Copy pathviewpost.html
File metadata and controls
73 lines (64 loc) · 2.95 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
<!DOCTYPE html>
<html lang="en">
<head>
<title> My First Blog Design </title>
<link type="text/css" rel="stylesheet" href="styles/style.css" />
<script src="scripts/jquery-1.10.2.js"></script>
<script src="scripts/bootstrap.js"></script>
</head>
<body>
<header>
<div class="navbar navbar-default navbar-fixed-top text-uppercase">
<div class="container" >
<div class="navbar-header">
<a href="index.html" class="navbar-brand">My First Blog Design</a>
<button type="button" class="navbar-toggle" data-toggle="collapse"
data-target=".navbar-collapse">
<span class="icon-bar"> </span>
<span class="icon-bar"> </span>
<span class="icon-bar"> </span>
</button>
</div>
<div class="navbar-collapse collapse">
<ul class="nav navbar-nav navbar-right">
<li><a href="#">Welcome (User)</a></li>
<li><a href="#">New Post</a></li>
<li><a href="#">Logout</a></li>
</ul>
</div>
</div>
</div>
</header>
<main>
<div class="container body-content">
<div class="row">
<div class="col-md-12">
<article>
<header>
<h2> Make your Dreams Memories. </h2>
</header>
<p> "There comes a time when you ought to start doing what you want.
Take a job that you love. You will jump out of bed in the morning.
I think you are out of your mind if you keep taking jobs that you
don’t like because you think it will look good on your resume.
Isn’t that a little like saving up sex for your old age?"
</p>
<small class="author"> Warren Buffet
</small>
<footer>
<div class="pull-right">
<a class="btn btn-default btn-xs" href="#">back » </a>
</div>
</footer>
</article>
</div>
</div>
</div>
</main>
<footer>
<div class="container modal-footer">
<p> © 2016 - Software University Foundation</p>
</div>
</footer>
</body>
</html>