Skip to content

Commit 8c46f5f

Browse files
committed
Started course
1 parent 944f003 commit 8c46f5f

File tree

12 files changed

+126
-0
lines changed

12 files changed

+126
-0
lines changed

MyCode/02-HTML-Fundamentals/Blog.html

Whitespace-only changes.

MyCode/02-HTML-Fundamentals/CSSgrid.html

Whitespace-only changes.

MyCode/02-HTML-Fundamentals/Challenges.html

Whitespace-only changes.

MyCode/02-HTML-Fundamentals/Flexbox.html

Whitespace-only changes.
120 KB
Loading
Lines changed: 34 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,34 @@
1+
📘 The Code Magazine
2+
3+
The Basic Language of the Web: HTML
4+
5+
Posted by Laura Jones on Monday, June 21st 2027
6+
7+
All modern websites and web applications are built using three fundamental technologies: HTML, CSS and JavaScript. These are the languages of the web.
8+
9+
In this post, let's focus on HTML. We will learn what HTML is all about, and why you too should learn it.
10+
11+
What is HTML?
12+
13+
HTML stands for HyperText Markup Language. It's a markup language that web developers use to structure and describe the content of a webpage (not a programming language).
14+
15+
HTML consists of elements that describe different types of content: paragraphs, links, headings, images, video, etc. Web browsers understand HTML and render HTML code as websites.
16+
17+
In HTML, each element is made up of 3 parts:
18+
19+
The opening tag
20+
The closing tag
21+
The actual element
22+
You can learn more at the MDN Web Docs.
23+
24+
Why should you learn HTML?
25+
26+
There are countless reasons for learning the fundamental language of the web. Here are 5 of them:
27+
28+
To be able to use the fundamental web dev language
29+
To hand-craft beautiful websites instead of relying on tools like Worpress or Wix
30+
To build web applications
31+
To impress friends
32+
To have fun 😃
33+
34+
Hopefully you learned something new here. See you next time!
Lines changed: 92 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,92 @@
1+
<!DOCTYPE html>
2+
<html lang="en">
3+
<head>
4+
<meta charset="UTF-8" />
5+
<meta name="viewport" content="width=devic-width, initial-scale=1.0" />
6+
<title>The basic languiage of the web HTML</title>
7+
</head>
8+
<body>
9+
<h1>📘 The Code Magazine</h1>
10+
<a href="Blog.html" target="_blank">Blog</a
11+
><a href="Challenges.html" target="_blank">Challenges</a
12+
><a href="Flexbox.html" target="_blank">Flexbox</a
13+
><a href="CSSgrid.html" target="_blank">CSS Grid</a>
14+
<h2>📰 The Basic Language of the Web: HTML</h2>
15+
<img src="laura-jones.jpg" alt="Laura Jones" width="45" />
16+
17+
<p>Posted by <strong>Laura Jones</strong> on Monday, June 21st 2027</p>
18+
19+
<img
20+
src="./post-img.jpg"
21+
alt="Computer screen showing html code"
22+
width="400"
23+
/>
24+
25+
<p>
26+
All modern websites and web applications are built using three
27+
<em>fundamental</em>
28+
technologies: HTML, CSS and JavaScript. These are the languages of the
29+
web.
30+
</p>
31+
<p>
32+
In this post, let's focus on HTML. We will learn what HTML is all about,
33+
and why you too should learn it.
34+
</p>
35+
<h3>What is HTML?</h3>
36+
<p>
37+
HTML stands for <strong>H</strong>yper<strong>T</strong>ext
38+
<strong>M</strong>arkup <strong>L</strong>anguage. It's a markup language
39+
that web developers use to structure and describe the content of a webpage
40+
(not a programming language).
41+
</p>
42+
<p>
43+
HTML consists of elements that describe different types of content:
44+
paragraphs, links, headings, images, video, etc. Web browsers understand
45+
HTML and render HTML code as websites.
46+
</p>
47+
<p>In HTML, each element is made up of 3 parts:</p>
48+
49+
<ol>
50+
<li>opening tag</li>
51+
<li>closing tag</li>
52+
<li>The actual element</li>
53+
</ol>
54+
<p>
55+
You can learn more at the
56+
<a
57+
href="https://developer.mozilla.org/en-US/"
58+
target="_blank"
59+
rel="noopener"
60+
>MDN Web Docs</a
61+
>.
62+
</p>
63+
<h3>Why should you learn HTML?</h3>
64+
<p>
65+
There are countless reasons for learning the fundamental language of the
66+
web. Here are 5 of them:
67+
</p>
68+
<ul>
69+
<li>be able to use the fundamental web dev language</li>
70+
<li>
71+
hand-craft beautiful websites instead of relying on tools like Worpress
72+
or Wix
73+
</li>
74+
<li>build web applications</li>
75+
<li>impress friends</li>
76+
<li>have fun 😃</li>
77+
</ul>
78+
<p>Hopefully you learned something new here. See you next time!</p>
79+
<h4>Related posts</h4>
80+
<ol>
81+
<li>
82+
<a href="#">How to learn Web Develeopment</a>
83+
</li>
84+
<li>
85+
<a href="#">The Unknown Powers of CSS</a>
86+
</li>
87+
<li>
88+
<a href="#">Why Javascript is Awesome</a>
89+
</li>
90+
</ol>
91+
</body>
92+
</html>
6.64 KB
Loading
53.4 KB
Loading
50.2 KB
Loading
33 KB
Loading
43.5 KB
Loading

0 commit comments

Comments
 (0)