-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
57 lines (54 loc) · 2.23 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>📃 LONEWS</title>
<link rel="stylesheet" href="css/main.css" />
<link rel="preconnect" href="https://fonts.googleapis.com" />
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
<link href="https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap" rel="stylesheet" />
</head>
<body>
<div class="container">
<nav class="nav">
<p class="logo">📃 LONEWS</p>
<ul class="nav-list">
<li><a href="index.html">Home</a></li>
<li><a href="blog.html">Blog</a></li>
<li><a href="https://github.com/maqsudcoder">Github</a></li>
</ul>
</nav>
<section class="main">
<div class="post">
<img src="img/rick.png" alt="Make a Discord Chat Bot That Talks Like Rick Sanchez" />
<div class="post-info">
<h1>Make a Discord Chat Bot That Talks Like Rick Sanchez</h1>
<p>We just released a tutorial on the freeCodeCamp.org YouTube channel that will teach you how to create a discord chat bot that talks like a character of your choice.</p>
<a href="blog.html" class="readme">Read more...</a>
</div>
</div>
<!-- -->
<div class="post">
<img src="img/flex.png" alt="Flexbox guide" />
<div class="post-info">
<h1>CSS Flexbox and Grid Tutorial – How to Build a Landing Page with Just HTML and CSS</h1>
<p>In this tutorial, we are going to build a simple landing page for an online education platform called Skilllz.</p>
<a href="blog.html" class="readme">Read more...</a>
</div>
</div>
<!-- -->
<div class="post">
<img src="img/toys.jpg" alt="Toys" />
<div class="post-info">
<h1>What is a Botnet – Botnet Definition and How to Defend Against Attacks</h1>
<p>A botnet is a collection of internet connected devices (anything from PCs to IoT devices) which are infected by the same malware.</p>
<a href="blog.html" class="readme">Read more...</a>
</div>
</div>
</section>
</div>
<footer class="footer">Copyright © 2027 by 📃 LONEWS.</footer>
</body>
</html>