-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathBlog.html
99 lines (81 loc) · 3.84 KB
/
Blog.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
<!DOCTYPE html>
<html lang="en">
<head>
<title>Blog</title>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link href="css/Global.css" rel="stylesheet">
<link href="css/blog_style.css" rel="stylesheet">
</head>
<body>
<header>
<figure id="h_logo">
<img src="Images/logos/Mylogos/aklile-logos_white_cropped.png" alt="Aklile's Logo">
</figure>
<nav id="nav_header">
<a href="Home.html">Home</a>
<a href="Works.html">Works</a>
<a href="Services.html">Services</a>
<a href="Blog.html">Blog</a>
<a href="Contact.html">Contact</a>
<a href="About_Me.html">About Me</a>
<a href="javascript:void(0);" class="icon" onclick="toggleMenu()">
<img src="Images/menu_white_24dp.svg" alt="navigation logo">
</a>
</nav>
</header>
<div id="container">
<h1>Blog Posts</h1>
<section>
<h1>Blog Title: How to work hard towards your goals</h1>
<p>Fake news has affected the journalism industry. Learn how you, as a freelance journalist,
can combat this issue and win back public trust Rich text</p>
<a href="Inner_Blog.html" class="button">Read My Blog</a>
</section>
<section>
<h1>Blog Title: How to Succeed as a Freelance Journalist in the Fake News Era</h1>
<p>Fake news has affected the journalism industry. Learn how you, as a freelance journalist,
can combat this issue and win back public trust Rich text</p>
<a href="Inner_Blog.html" class="button">Read My Blog</a>
</section>
<section>
<h1>Blog Title: 8 Ways to Become a Better Coder </h1>
<p>It's time to get serious about improving your programming skills. Let's do it! That's an easy career improvement goal to give oneself,
but “become a kick-ass programmer” is not a simple goal. For one thing, saying, “I want to get better” assumes that you recognize what
“better” looks like. Plus, too many people aim for improvement without any sense of how to get there.</p>
<a href="Inner_Blog.html" class="button">Read My Blog</a>
</section>
<section>
<h1>Blog Title: How to choose a career</h1>
<p>Want the perfect career, but not sure how to get it? We've picked out some top tips to help you discover your
dream job, and easily map out how to achieve it.</p>
<a href="Inner_Blog.html" class="button">Read My Blog</a>
</section>
</div>
<div>
<nav id="pages">
<a>1</a>
<a>2</a>
<a>3</a>
<a>4</a>
</nav>
</div>
<footer>
<figure id="f_logo">
<img src="Images/logos/Mylogos/aklile-logos_transparent.png" alt="a transparent logo of aklile">
</figure>
<nav id="nav_footer">
<a href="Home.html">Home</a>
<a href="Works.html">Works</a>
<a href="Services.html">Services</a>
<a href="Blog.html">Blog</a>
<a href="Contact.html">Contact</a>
<a href="About_Me.html">About Me</a>
</nav>
<p>
aklile web technologies <br> ©copyright 2021 <br> read the privacy policy!
</p>
</footer>
<script src="js/common.js"></script>
</body>
</html>