-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
68 lines (68 loc) · 2.52 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
<!DOCTYPE html>
<html>
<head>
<title>My blog</title>
<link rel="stylesheet"
type="text/css" href="styles.css">
</head>
<body>
<div id="header">
<div class="container">
<a id="header-title" href="index.html">My Blog</a>
<ul id="header-nav">
<li><a href="about.html">About</a></li>
<li><a href="mailto:[email protected]">Contact</a></li>
</ul>
</div>
</div>
<div id="content">
<div class="post-container">
<div class="post">
<div class="post-author">
<img src="nana.jpg" alt="nana">
<span>My Mom</span>
</div>
<p class="post-date">Monday, 10<sup>th</sup> December 2018</p>
<h3 class="post-title">Is my child a prodigy?</h3>
<div class="post-content">
<p>If somebod would have told me a week a go that my child would be able to make a <strong>website</strong>,
I would not have believed her.</p>
<p>Just a few days later, she came across <a href="https://getmimo.com/">Mimo</a> and started to work
on a <em>real</em> blog.</p>
</div>
</div>
</div>
<div class="post-container">
<div class="post">
<div class="post-author">
<img src="tsaqif.jpg" alt="tsaqif">
<span>Tsaqif Alfatan Nugraha</span>
</div>
<p class="post-date">Sunday, 9<sup>th</sup> December 2018</p>
<h3 class="post-title">Becoming a web developer</h3>
<div class="post-content">
<p>If somebody would have told me a week a go that I would be
able to make a <strong>website</strong>, I would not have believed them.</p>
<p>Just a few days later, I came across <a href="https://getmimo.com/">Mimo</a> and started to work
on a <em>real</em> blog.</p>
</div>
</div>
</div>
</div>
<div id="footer">
<div class="container">
<div class="column">
<h4>My Links</h4>
<p>
<a href="https://twitter.com">Twitter</a><br>
<a href="https://facebook.com">Facebook</a>
</p>
</div>
<div class="column">
<h4>My Story</h4>
<p>Hi, there! I'm an aspiring web developer.</p>
</div>
</div>
</div>
</body>
</html>