forked from akinghill/roadmap.sh-projects
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy patharticles.html
More file actions
50 lines (50 loc) · 1.73 KB
/
articles.html
File metadata and controls
50 lines (50 loc) · 1.73 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<!-- SEO Meta Tags -->
<meta name="description" content="Articles for a simple HTML-only website for roadmap.sh frontend" />
<meta name="keywords" content="Frontend Project, HTML, Roadmap.sh" />
<meta name="author" content="Austin Hill" />
<title>Articles | Basic HTML Website</title>
<link rel="stylesheet" href="styles.css">
</head>
<body>
<header>
<div class="logo">
<img width="64" src="../../assets/images/logo.png" alt="Logo">
</div>
<nav>
<ul>
<li><a href="index.html">Home</a></li>
<li><a href="projects.html">Projects</a></li>
<li><a href="articles.html">Articles</a></li>
<li><a href="contact.html">Contact</a></li>
</ul>
</nav>
</header>
<main>
<section class="articles">
<h1>Articles</h1>
<ul>
<li>
<h2><a href="article1.html">The Importance of Semantic HTML</a></h2>
<p>A deep dive into why semantic HTML is crucial for accessibility and SEO.</p>
</li>
<li>
<h2><a href="article2.html">Understanding Flexbox: A Beginner's Guide</a></h2>
<p>An introduction to the Flexbox layout model, with practical examples and use cases.</p>
</li>
<li>
<h2><a href="article3.html">Building Responsive Web Apps with CSS Grid</a></h2>
<p>A tutorial on using CSS Grid to create responsive, modern web designs.</p>
</li>
</ul>
</section>
</main>
<footer>
<p>© all rights reserved 2024</p>
</footer>
</body>
</html>