-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmy-posts.html
More file actions
executable file
·69 lines (63 loc) · 1.87 KB
/
my-posts.html
File metadata and controls
executable file
·69 lines (63 loc) · 1.87 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>My posts</title>
<link rel="stylesheet" href="assets/css/style.css">
</head>
<body>
<header>
<section>
<h1>NADEEM'S BLOG</h1>
<ul>
<li><a href="index.html">Home</a></li>
<li><a href="about.html">About</a></li>
<li><a href="my-posts.html">Posts</a></li>
</ul>
</section>
<section>
<figure>
<img src="assets/img/noeyes.png" width="150px" alt="here goes my picture">
<h2>SOMETHING LIKE an experienced management & organization practitioner, a programmer in transition!</h2>
<small>SOMETHING LIKE I write about technology, business strategies, economic policies, and can't avoid politics</small>
</figure>
<p>
<a href="#" target="_blank">email</a>
<a href="#" target="_blank">linkedin</a>
<a href="#" target="_blank">twitter</a>
<a href="#" target="_blank">github</a>
</p>
</section>
</header>
<main>
<h1>All posts</h1>
<section>
<h2>2020</h2>
<article>
<h3><a href="#">my 5th post</a></h3>
<small>published on April 8</small>
</article>
<article>
<h3><a href="#">my 4th post</a></h3>
<small>published on April 8</small>
</article>
<article>
<h3><a href="#">my third post</a></h3>
<small>published on April 8</small>
</article>
<article>
<h3><a href="#">my second post</a></h3>
<small>published on April 8</small>
</article>
<article>
<h3><a href="#">my first post</a></h3>
<small>published on April 8</small>
</article>
</section>
</main>
<footer>
<h2>i am empowerd by <a href="#" target="_blank">powercoders</a></h2>
</footer>
</body>
</html>