Skip to content

Commit 47199ae

Browse files
committed
Added blog page. Added links between home and blog pages. Added an external link to mdn web docs in index page.
1 parent b25e0f7 commit 47199ae

File tree

2 files changed

+44
-2
lines changed

2 files changed

+44
-2
lines changed
Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
<!DOCTYPE html>
2+
<html>
3+
<head>
4+
<title>BLOG</title>
5+
</head>
6+
<body>
7+
<h2>BLOG</h2>
8+
9+
<a href="index.html">Back to home</a>
10+
</body>
11+
</html>

starter/02-HTML-Fundamentals/index.html

Lines changed: 33 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
<!DOCTYPE html>
2-
<html>
2+
<html lang="en">
33
<head>
4+
<meta charset="UTF-8" />
45
<title>The Basic Language of the Web: HTML</title>
56
</head>
67

@@ -15,9 +16,30 @@ <h6>The Basic Language of the Web: HTMLW</h6>
1516
-->
1617

1718
<h1>📘 The Code Magazine</h1>
18-
<p>Posted by <strong>Laura Jones</strong> on Monday, June 21st 2027</p>
19+
20+
<a href="blog.html">Blog</a>
21+
<a href="#">Challenges</a>
22+
<a href="#">Flexbox</a>
23+
<a href="#">CSS Grid</a>
1924

2025
<h2>The Basic Language of the Web: HTML</h2>
26+
27+
<img
28+
src="laura-jones.jpg"
29+
alt="Picture of Laura Jones, the author of the article"
30+
width="50"
31+
height="50"
32+
/>
33+
34+
<p>Posted by <strong>Laura Jones</strong> on Monday, June 21st 2027</p>
35+
36+
<img
37+
src="post-img.jpg"
38+
alt="HTML code on a screen"
39+
width="500"
40+
height="200"
41+
/>
42+
2143
<p>
2244
All modern websites and web applications are built using three
2345
<em>fundamental</em> technologies: HTML, CSS and JavaScript. These
@@ -49,6 +71,15 @@ <h3>What is HTML?</h3>
4971
<li>The actual element</li>
5072
</ol>
5173

74+
<p>
75+
You can learn more at
76+
<a
77+
href="https://developer.mozilla.org/en-US/docs/Web/HTML"
78+
target="_blank"
79+
>MDN Web Docs</a
80+
>.
81+
</p>
82+
5283
<h3>Why should you learn HTML?</h3>
5384
<p>
5485
There are countless reasons for learning the fundamental language of

0 commit comments

Comments
 (0)