Skip to content

Commit 5205f32

Browse files
committed
.
1 parent 10de6bc commit 5205f32

File tree

10 files changed

+139
-0
lines changed

10 files changed

+139
-0
lines changed

starter/01_Test/index.html

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
<!DOCTYPE html>
2+
<html lang="en">
3+
<head>
4+
<meta charset="UTF-8" />
5+
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
6+
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
7+
<title>Document</title>
8+
</head>
9+
<body>
10+
<h1>Hello World</h1>
11+
<p>i am thomas</p>
12+
</body>
13+
</html>
Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
<!DOCTYPE html>
2+
<html>
3+
<head>
4+
<title>BLOG</title>
5+
</head>
6+
<body>
7+
<h2>BLOG</h2>
8+
<a href="./index.html">Home</a>
9+
</body>
10+
</html>
Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
<!DOCTYPE html>
2+
<html lang="en">
3+
<head>
4+
<meta charset="utf-8" />
5+
<title>Challenges</title>
6+
</head>
7+
<article>
8+
<h2>Converse low Top</h2>
9+
<img src="./img/challenges.jpg" alt="challenges" width="300" />
10+
<p><strong>$60.0</strong></p>
11+
<p>Free shipping</p>
12+
<a href="#">More Information &rarr;</a>
13+
<h3>Product details</h3>
14+
<ul>
15+
<li>light</li>
16+
<li>comfort</li>
17+
</ul>
18+
</article>
19+
<button>add to cart</button>
20+
</html>
Lines changed: 96 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,96 @@
1+
<!DOCTYPE html>
2+
<html lang="en">
3+
<head>
4+
<meta charset="utf-8" />
5+
<title>Web: HTML Demo</title>
6+
</head>
7+
<body>
8+
<headdier>
9+
<h1>📘 The Code Magazine</h1>
10+
<nav>
11+
<a href="./blog.html">Blog</a>
12+
<a href="#">Challenges</a>
13+
<a href="#">FlexBox</a>
14+
<a href="#">CSS Grid</a>
15+
</nav>
16+
</headdier>
17+
<article>
18+
<header>
19+
<h2>The Basic Language of the Web: HTML</h2>
20+
<img src="./img/laura-jones.jpg" alt="laura jones" width="50" />
21+
<p>Posted by <strong>Laura Jones</strong> on Monday, June 21st 2027</p>
22+
<img src="./img/post-img.jpg" alt="code on screen" width="500" />
23+
</header>
24+
<p>
25+
All modern websites and web applications are built using three
26+
<em>fundamental</em> technologies: HTML, CSS and JavaScript. These are
27+
the languages of the web.
28+
</p>
29+
<p>
30+
In this post, let's focus on HTML. We will learn what HTML is all about,
31+
and why you too should learn it.
32+
</p>
33+
<h3>What is HTML?</h3>
34+
<p>
35+
HTML stands for <strong>H</strong>yper<strong>T</strong>ext
36+
<strong>M</strong>arkup <strong>L</strong>anguage. It's a markup
37+
language that web developers use to structure and describe the content
38+
of a webpage (not a programming language).
39+
</p>
40+
<p>
41+
HTML consists of elements that describe different types of content:
42+
paragraphs, links, headings, images, video, etc. Web browsers understand
43+
HTML and render HTML code as websites.
44+
</p>
45+
<p>In HTML, each element is made up of 3 parts:</p>
46+
<ol>
47+
<li>The opening tag</li>
48+
<li>The closing tag</li>
49+
<li>The actual element</li>
50+
</ol>
51+
<p>
52+
see
53+
<a href="https://developer.mozilla.org/zh-TW/docs/Web/JavaScript"
54+
>Docs</a
55+
>
56+
</p>
57+
<h3>Why should you learn HTML?</h3>
58+
<p>
59+
There are countless reasons for learning the fundamental language of the
60+
web. Here are 5 of them:
61+
</p>
62+
<ul>
63+
<li>To be able to use the fundamental web dev language</li>
64+
<li>
65+
To hand-craft beautiful websites instead of relying on tools like
66+
Worpress or Wix
67+
</li>
68+
<li>To build web applications</li>
69+
<li>To impress friends To have fun 😃</li>
70+
</ul>
71+
<p></p>
72+
Hopefully you learned something new here. See you next time!
73+
</article>
74+
<aside>
75+
<h4>Related posts</h4>
76+
<ul>
77+
<li>
78+
<img src="./img/related-1.jpg" alt="typing" width="70" />
79+
<a href="#">How to Learn Web Development</a>
80+
<p>By thomas wei</p>
81+
</li>
82+
<li>
83+
<img src="./img/related-2.jpg" alt="lighting" width="70" />
84+
<a href="#">The power of CSS</a>
85+
<p>By thomas wei</p>
86+
</li>
87+
<li>
88+
<img src="./img/related-3.jpg" alt="coding" width="70" />
89+
<a href="#">Javascript Awesome</a>
90+
<p>By thomas wei</p>
91+
</li>
92+
</ul>
93+
</aside>
94+
<footer>Copyright &copy</footer>
95+
</body>
96+
</html>

0 commit comments

Comments
 (0)