Skip to content

Commit 7ab5c08

Browse files
committed
vid 14 done
1 parent 522f03b commit 7ab5c08

File tree

2 files changed

+36
-1
lines changed

2 files changed

+36
-1
lines changed
Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
<!DOCTYPE html>
2+
<html lang="en">
3+
<head>
4+
<meta charset="UTF-8" />
5+
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
6+
<title>Blog</title>
7+
</head>
8+
<body>
9+
<h1>Blog</h1>
10+
<a href="." rel="noopener noreferrer">Back to Home</a>
11+
</body>
12+
</html>

starter/02-HTML-Fundamentals/index.html

Lines changed: 24 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,11 +7,27 @@
77
</head>
88
<body>
99
<h1>📘 The Code Magazine</h1>
10+
<a href="./blog.html">Blog</a>
11+
<a href="#">Challenges</a>
12+
<a href="#">Flexbox</a>
13+
<a href="#">CSS Grid</a>
1014
<h2>The Basic Language of the Web: HTML</h2>
15+
<img
16+
src="./laura-jones.jpg"
17+
alt="the potrait of the author"
18+
width="50px"
19+
height="50px"
20+
/>
1121
<p>
1222
Posted by <strong>Laura Jones</strong> on Monday, June 21st 2027 In this
1323
post, let's focus on HTML.
1424
</p>
25+
<img
26+
src="./post-img.jpg"
27+
alt="HTML code on a screen"
28+
width="500px"
29+
height="200px"
30+
/>
1531
<p>
1632
All modern websites and web applications are built using three
1733
<em>fundamental</em>
@@ -39,7 +55,14 @@ <h3>What is HTML?</h3>
3955
<li>The closing tag</li>
4056
<li>The actual element</li>
4157
</ul>
42-
<p>You can learn more at the MDN Web Docs.</p>
58+
<p>
59+
You can learn more at the
60+
<a
61+
href="https://developer.mozilla.org/en-US/docs/Web/HTML"
62+
target="_blank"
63+
>MDN Web Docs</a
64+
>.
65+
</p>
4366

4467
<h3>Why should you learn HTML?</h3>
4568
<p>

0 commit comments

Comments
 (0)