-
Notifications
You must be signed in to change notification settings - Fork 0
/
blog.html
66 lines (63 loc) · 3.19 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>All Blog Posts - My Portfolio</title>
<link rel="stylesheet" href="styles.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0/css/all.min.css">
</head>
<body>
<header>
<nav>
<ul>
<li><a href="index.html#home">Home</a></li>
<li><a href="index.html#about">About</a></li>
<li><a href="index.html#projects">Projects</a></li>
<li><a href="blog.html">Blog</a></li>
<li><a href="index.html#contact">Contact</a></li>
</ul>
</nav>
</header>
<main>
<section id="blog">
<h2>All Blog Posts</h2>
<div class="blog-grid">
<article class="blog-post">
<h3>How to start with SEO?</h3>
<p>SEO is crucial for online visibility. Learn the basics of SEO and how you can use it to improve your website's ranking.</p>
<a href="blog-seo.html" class="read-more">Read More</a>
</article>
<article class="blog-post">
<h3>Web Scraping Using Python</h3>
<p>Learn how to collect data from websites using Python with practical examples and code snippets you can copy.</p>
<a href="blog-webscraping.html" class="read-more">Read More</a>
</article>
<article class="blog-post">
<h3>Top 10 Tools to Enhance Your Website's SEO</h3>
<p>Discover the best tools to supercharge your SEO strategy and boost your website's search rankings.</p>
<a href="blog-seo-tools.html" class="read-more">Read More</a>
</article>
<article class="blog-post">
<h3>Web Scraping Using Python for Beginners: Explained Easily</h3>
<p>A comprehensive guide on web scraping using Python, perfect for beginners looking to collect data from the web.</p>
<a href="scraping.html" class="read-more">Read More</a>
</article>
<article class="blog-post">
<h3>Advanced SEO Techniques to Boost Your Site's Ranking</h3>
<p>While basic SEO strategies get you started on the right path, advanced techniques can propel your site to the top of search engine results.</p>
<a href="advanced-seo.html" class="read-more">Read More</a>
</article>
</div>
</section>
</main>
<footer>
<ul class="social-links">
<li><a href="https://github.com/your-profile" target="_blank"><i class="fab fa-github"></i> GitHub</a></li>
<li><a href="https://linkedin.com/in/your-profile" target="_blank"><i class="fab fa-linkedin"></i> LinkedIn</a></li>
<li><a href="https://twitter.com/your-profile" target="_blank"><i class="fab fa-twitter"></i> Twitter</a></li>
</ul>
<p>© [Your Name] 2024 | All Rights Reserved</p>
</footer>
</body>
</html>