File tree Expand file tree Collapse file tree 2 files changed +36
-1
lines changed
starter/02-HTML-Fundamentals Expand file tree Collapse file tree 2 files changed +36
-1
lines changed Original file line number Diff line number Diff line change
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 >
Original file line number Diff line number Diff line change 7
7
</ head >
8
8
< body >
9
9
< 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 >
10
14
< 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
+ />
11
21
< p >
12
22
Posted by < strong > Laura Jones</ strong > on Monday, June 21st 2027 In this
13
23
post, let's focus on HTML.
14
24
</ p >
25
+ < img
26
+ src ="./post-img.jpg "
27
+ alt ="HTML code on a screen "
28
+ width ="500px "
29
+ height ="200px "
30
+ />
15
31
< p >
16
32
All modern websites and web applications are built using three
17
33
< em > fundamental</ em >
@@ -39,7 +55,14 @@ <h3>What is HTML?</h3>
39
55
< li > The closing tag</ li >
40
56
< li > The actual element</ li >
41
57
</ 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 >
43
66
44
67
< h3 > Why should you learn HTML?</ h3 >
45
68
< p >
You can’t perform that action at this time.
0 commit comments