Skip to content

Commit 47076ec

Browse files
committed
Completed Hyperlinks
1 parent 6507884 commit 47076ec

File tree

2 files changed

+24
-1
lines changed

2 files changed

+24
-1
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 lang="en">
3+
<head>
4+
<meta charset="UTF-8" />
5+
<title>Blog</title>
6+
</head>
7+
<body>
8+
<h1>Blog</h1>
9+
<a href="index.html" target="_blank">📘 The Code Magazine</a>
10+
</body>
11+
</html>

myWork/02-HTML-Fundamentals/index.html

Lines changed: 13 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,11 @@
88
<body>
99
<h1>📘 The Code Magazine</h1>
1010

11+
<a href="blog.html" target="_blank">Blog</a>
12+
<a href="#">Challenges</a>
13+
<a href="#">Flexbox</a>
14+
<a href="#">CSS Grid</a>
15+
1116
<h2>The Basic Language of the Web: HTML</h2>
1217

1318
<img src="laura-jones.jpg" alt="Photo of Laura Jones" width="50" />
@@ -51,7 +56,14 @@ <h3>What is HTML?</h3>
5156
<li>The actual element</li>
5257
</ol>
5358

54-
<p>You can learn more at the MDN Web Docs.</p>
59+
<p>
60+
You can learn more at the
61+
<a
62+
href="https://developer.mozilla.org/en-US/docs/Web/HTML"
63+
target="_blank"
64+
>MDN Web Docs</a
65+
>.
66+
</p>
5567

5668
<h3>Why should you learn HTML?</h3>
5769

0 commit comments

Comments
 (0)