Skip to content

Commit 881b33e

Browse files
committed
section 1 done
1 parent 7ab5c08 commit 881b33e

File tree

9 files changed

+149
-73
lines changed

9 files changed

+149
-73
lines changed

README.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -59,3 +59,7 @@ Use starter code to start each section, and **final code to compare it with your
5959
### Q13: Do you accept pull requests?
6060

6161
**A:** No, for the simple reason that I want this repository to contain the _exact_ same code that is shown in the videos. However, please feel free to add an issue if you found one.
62+
63+
64+
# Useful Links
65+
- https://jonas.io/resources/
Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
<article>
2+
<h2>Converse Chuck Taylor All Star Low Top</h2>
3+
<img
4+
src="https://i.ibb.co/Jr7Wh1d/challenges.jpg"
5+
alt="Chuck Taylor All Star Shoe"
6+
height="250"
7+
width="250"
8+
/>
9+
10+
<p><strong>$65.00</strong></p>
11+
<p>Free shipping</p>
12+
<p>
13+
Ready to dress up or down, these classic canvas Chucks are an everyday
14+
wardrobe staple.
15+
</p>
16+
17+
<a href="https://www.converse.com">More information &rarr;</a>
18+
19+
<h3>Product details</h3>
20+
<ul>
21+
<li>Lightweight, durable canvas sneaker</li>
22+
<li>Lightly padded footbed for added comfort</li>
23+
<li>Iconic Chuck Taylor ankle patch</li>
24+
</ul>
25+
26+
<button>Add to cart</button>
27+
</article>

starter/02-HTML-Fundamentals/index.html

Lines changed: 118 additions & 73 deletions
Original file line numberDiff line numberDiff line change
@@ -6,79 +6,124 @@
66
<title>The Basic Language of the Web: HTML</title>
77
</head>
88
<body>
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>
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-
/>
21-
<p>
22-
Posted by <strong>Laura Jones</strong> on Monday, June 21st 2027 In this
23-
post, let's focus on HTML.
24-
</p>
25-
<img
26-
src="./post-img.jpg"
27-
alt="HTML code on a screen"
28-
width="500px"
29-
height="200px"
30-
/>
31-
<p>
32-
All modern websites and web applications are built using three
33-
<em>fundamental</em>
34-
technologies: HTML, CSS and JavaScript. These are the languages of the
35-
web.
36-
</p>
37-
<p>
38-
We will learn what HTML is all about, and why you too should learn it.
39-
</p>
40-
<h3>What is HTML?</h3>
41-
<p>
42-
HTML stands for <strong>H</strong>yper<strong>T</strong>ext
43-
<strong>M</strong>arkup <strong>L</strong>anguage. It's a markup language
44-
that web developers use to structure and describe the content of a webpage
45-
(not a programming language).
46-
</p>
47-
<p>
48-
HTML consists of elements that describe different types of content:
49-
paragraphs, links, headings, images, video, etc. Web browsers understand
50-
HTML and render HTML code as websites.
51-
</p>
52-
<p>In HTML, each element is made up of 3 parts:</p>
53-
<ul>
54-
<li>The opening tag</li>
55-
<li>The closing tag</li>
56-
<li>The actual element</li>
57-
</ul>
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>
9+
<header>
10+
<h1>📘 The Code Magazine</h1>
11+
<nav>
12+
<a href="./blog.html">Blog</a>
13+
<a href="#">Challenges</a>
14+
<a href="#">Flexbox</a>
15+
<a href="#">CSS Grid</a>
16+
</nav>
17+
</header>
18+
<article>
19+
<header>
20+
<h2>The Basic Language of the Web: HTML</h2>
21+
<img
22+
src="./img/laura-jones.jpg"
23+
alt="the potrait of the author"
24+
width="50px"
25+
height="50px"
26+
/>
27+
<p>
28+
Posted by <strong>Laura Jones</strong> on Monday, June 21st 2027 In
29+
this post, let's focus on HTML.
30+
</p>
31+
<img
32+
src="./img/post-img.jpg"
33+
alt="HTML code on a screen"
34+
width="500px"
35+
height="200px"
36+
/>
37+
</header>
38+
<p>
39+
All modern websites and web applications are built using three
40+
<em>fundamental</em>
41+
technologies: HTML, CSS and JavaScript. These are the languages of the
42+
web.
43+
</p>
44+
<p>
45+
We will learn what HTML is all about, and why you too should learn it.
46+
</p>
47+
<h3>What is HTML?</h3>
48+
<p>
49+
HTML stands for <strong>H</strong>yper<strong>T</strong>ext
50+
<strong>M</strong>arkup <strong>L</strong>anguage. It's a markup
51+
language that web developers use to structure and describe the content
52+
of a webpage (not a programming language).
53+
</p>
54+
<p>
55+
HTML consists of elements that describe different types of content:
56+
paragraphs, links, headings, images, video, etc. Web browsers understand
57+
HTML and render HTML code as websites.
58+
</p>
59+
<p>In HTML, each element is made up of 3 parts:</p>
60+
<ul>
61+
<li>The opening tag</li>
62+
<li>The closing tag</li>
63+
<li>The actual element</li>
64+
</ul>
6665

67-
<h3>Why should you learn HTML?</h3>
68-
<p>
69-
There are countless reasons for learning the fundamental language of the
70-
web. Here are 5 of them:
71-
</p>
72-
<ul>
73-
<li>To be able to use the fundamental web dev language</li>
74-
<li>
75-
To hand-craft beautiful websites instead of relying on tools like
76-
Worpress or Wix
77-
</li>
78-
<li>To build web applications</li>
79-
<li>To impress friends</li>
80-
<li>To have fun 😃</li>
81-
</ul>
82-
<p>Hopefully you learned something new here. See you next time!</p>
66+
<p>
67+
You can learn more at the
68+
<a
69+
href="https://developer.mozilla.org/en-US/docs/Web/HTML"
70+
target="_blank"
71+
>MDN Web Docs</a
72+
>.
73+
</p>
74+
75+
<h3>Why should you learn HTML?</h3>
76+
<p>
77+
There are countless reasons for learning the fundamental language of the
78+
web. Here are 5 of them:
79+
</p>
80+
<ul>
81+
<li>To be able to use the fundamental web dev language</li>
82+
<li>
83+
To hand-craft beautiful websites instead of relying on tools like
84+
Worpress or Wix
85+
</li>
86+
<li>To build web applications</li>
87+
<li>To impress friends</li>
88+
<li>To have fun 😃</li>
89+
</ul>
90+
<p>Hopefully you learned something new here. See you next time!</p>
91+
</article>
92+
<aside>
93+
<h4>Related Posts</h4>
94+
<ul>
95+
<li>
96+
<img
97+
src="img/related-1.jpg"
98+
width="50px"
99+
height="50px"
100+
alt="related post: how to learn web Development"
101+
/>
102+
<a href="#">How to Learn Web Development</a>
103+
<p>By AAA</p>
104+
</li>
105+
<li>
106+
<img
107+
src="./img/related-2.jpg"
108+
alt="related post: the unknown power of CSS"
109+
width="50px"
110+
height="50px"
111+
/>
112+
<a href="#">The Unknown Power of CSS</a>
113+
<p>By BBB</p>
114+
</li>
115+
<li>
116+
<img
117+
src="./img/related-3.jpg"
118+
alt="related post: why javascript is awesome"
119+
width="50px"
120+
height="50px"
121+
/>
122+
<a href="#">Why JavaScript is Awesome</a>
123+
<p>By CCC</p>
124+
</li>
125+
</ul>
126+
</aside>
127+
<footer>&copy; 2027 The Code Magazine. All rights reserved.</footer>
83128
</body>
84129
</html>

0 commit comments

Comments
 (0)