Skip to content

Commit 4f8c910

Browse files
completed html fundaments.
1 parent 10de6bc commit 4f8c910

File tree

8 files changed

+159
-0
lines changed

8 files changed

+159
-0
lines changed
Lines changed: 29 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
<!DOCTYPE html>
2+
<html lang="en">
3+
<head>
4+
<meta charset="UTF-8" />
5+
<title>Blog Page</title>
6+
</head>
7+
<body>
8+
<article>
9+
<h2>Converse Chuck Taylor All Star Low Top</h2>
10+
<img src="img/challenges.jpg" alt="Shoes" width="250" height="250" />
11+
<h4>&dollar; 65.00</h4>
12+
<p>Free Shipping</p>
13+
<p>
14+
Ready to dress up or down, these classic canvas Chucks are an everyday
15+
wardrobe staple.
16+
</p>
17+
<a href="#">
18+
<strong>More Information &rarr;</strong>
19+
</a>
20+
<h3>Product Details</h3>
21+
<ol>
22+
<li>Lightweight, durable canvas sneaker</li>
23+
<li>Lightly padded footbed for added comfort</li>
24+
<li>Iconic Chuck Taylor ankle patch.</li>
25+
</ol>
26+
<button>Add to cart</button>
27+
</article>
28+
</body>
29+
</html>
Lines changed: 130 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,130 @@
1+
<!DOCTYPE html>
2+
<html lang="en">
3+
<head>
4+
<meta charset="UTF-8" />
5+
<title>The Basic Language of the Web: HTML</title>
6+
</head>
7+
8+
<body>
9+
<!--
10+
<h1>The Basic Language of the Web: HTML</h1>
11+
<h2>The Basic Language of the Web: HTML</h2>
12+
<h3>The Basic Language of the Web: HTML</h3>
13+
<h4>The Basic Language of the Web: HTML</h4>
14+
<h5>The Basic Language of the Web: HTML</h5>
15+
<h6>The Basic Language of the Web: HTML</h6> -->
16+
17+
<header>
18+
<h1>📘 The Code Magazine</h1>
19+
20+
<nav>
21+
<a href="blog.html">Blog</a>
22+
<a href="#">Challenges</a>
23+
<a href="#">Flexbox</a>
24+
<a href="#">CSS Grid</a>
25+
</nav>
26+
</header>
27+
28+
<article>
29+
<header>
30+
<h2>The Basic Language of the Web: HTML</h2>
31+
<img
32+
src="img/laura-jones.jpg"
33+
alt="Laura Jones"
34+
height="50"
35+
width="50"
36+
/>
37+
<p>Posted by <strong>Laura Jones</strong> on Monday, June 21st 2027</p>
38+
<img
39+
src="img/post-img.jpg"
40+
alt="HTML code on a screen"
41+
width="500"
42+
height="200"
43+
/>
44+
</header>
45+
46+
<p>
47+
All modern websites and web applications are built using three
48+
<em>fundamental</em>
49+
technologies: HTML, CSS and JavaScript. These are the languages of the
50+
web. In this post, let's focus on HTML. We will learn what HTML is all
51+
about, and why you too should learn it.
52+
</p>
53+
<p>
54+
In this post, let's focus on HTML. We will learn what HTML is all about,
55+
and why you too should learn it.
56+
</p>
57+
<h3>What is HTML?</h3>
58+
<p>
59+
HTML stands for <strong>H</strong>yper<strong>T</strong>ext
60+
<strong>M</strong>arkup <strong>L</strong>anguage. It's a markup
61+
language that web developers use to structure and describe the content
62+
of a webpage (not a programming language).
63+
</p>
64+
<p>
65+
HTML consists of elements that describe different types of content:
66+
paragraphs, links, headings, images, video, etc. Web browsers understand
67+
HTML and render HTML code as websites.
68+
</p>
69+
<p>In HTML, each element is made up of 3 parts:</p>
70+
<ol>
71+
<li>The opening tag</li>
72+
<li>The closing tag</li>
73+
<li>The actual element</li>
74+
</ol>
75+
<p>You can learn more at the MDN Web Docs.</p>
76+
<h3>Why should you learn HTML?</h3>
77+
<p>
78+
There are countless reasons for learning the fundamental language of the
79+
web. Here are 5 of them:
80+
</p>
81+
<ul>
82+
<li>To be able to use the fundamental web dev language</li>
83+
<li>To hand-craft beautiful</li>
84+
<li>websites instead of relying on tools like Worpress or Wix</li>
85+
<li>To build web applications</li>
86+
<li>To impress friends</li>
87+
<li>To have fun 😃</li>
88+
</ul>
89+
<p>Hopefully you learned something new here. See you next time!</p>
90+
</article>
91+
92+
<aside>
93+
<h3>Related Posts</h3>
94+
<ul>
95+
<li>
96+
<img
97+
src="img/related-1.jpg"
98+
alt="related post 1"
99+
width="100"
100+
height="100"
101+
/>
102+
<a href="#">How to Learn Web Development</a>
103+
<p>By Jonas Schmedtmann</p>
104+
</li>
105+
<li>
106+
<img
107+
src="img/related-2.jpg"
108+
alt="related post 2"
109+
width="100"
110+
height="100"
111+
/>
112+
<a href="#">The Unknown Powers of CSS</a>
113+
<p>By Jim Dillon</p>
114+
</li>
115+
<li>
116+
<img
117+
src="img/related-3.jpg"
118+
alt="related post 3"
119+
width="100"
120+
height="100"
121+
/>
122+
<a href="#">Why Javascript is Awesome</a>
123+
<p>By Matilda</p>
124+
</li>
125+
</ul>
126+
</aside>
127+
128+
<footer>Copyright &copy; 2027 by The Code Magazine.</footer>
129+
</body>
130+
</html>

0 commit comments

Comments
 (0)