File tree Expand file tree Collapse file tree 2 files changed +44
-2
lines changed
starter/02-HTML-Fundamentals Expand file tree Collapse file tree 2 files changed +44
-2
lines changed Original file line number Diff line number Diff line change
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 >
Original file line number Diff line number Diff line change 1
1
<!DOCTYPE html>
2
- < html >
2
+ < html lang =" en " >
3
3
< head >
4
+ < meta charset ="UTF-8 " />
4
5
< title > The Basic Language of the Web: HTML</ title >
5
6
</ head >
6
7
@@ -15,9 +16,30 @@ <h6>The Basic Language of the Web: HTMLW</h6>
15
16
-->
16
17
17
18
< 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 >
19
24
20
25
< 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
+
21
43
< p >
22
44
All modern websites and web applications are built using three
23
45
< em > fundamental</ em > technologies: HTML, CSS and JavaScript. These
@@ -49,6 +71,15 @@ <h3>What is HTML?</h3>
49
71
< li > The actual element</ li >
50
72
</ ol >
51
73
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
+
52
83
< h3 > Why should you learn HTML?</ h3 >
53
84
< p >
54
85
There are countless reasons for learning the fundamental language of
You can’t perform that action at this time.
0 commit comments