-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathchallenge-2.html
More file actions
58 lines (46 loc) · 1.38 KB
/
challenge-2.html
File metadata and controls
58 lines (46 loc) · 1.38 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
<!DOCTYPE html>
<html>
<head> </head>
<body>
<article>
<header>
<h1>Hypertext Markup Language</h1>
</header>
<h3>From wikimedia</h3>
<p>
Hypertext Markup Language (HTML) is the standard markup language for
creating web pages and web applications. With Cascading Style Sheets
(CSS) and JavaScript, it forms a triad of cornerstone technologies for
the World Wide Web.[4]
</p>
<p>
Web browsers receive HTML documents from a web server or from local
storage and render the documents into multimedia web pages. HTML
describes the structure of a web page semantically and originally
included cues for the appearance of the document.
</p>
<footer><p>From: https://en.wikipedia.org/wiki/HTML</p></footer>
</article>
</body>
</html>
<!--
The text here is a snippet from wikipedia. It's an article about the HTML language.
Look at what's here. Find the following:
- Article
- header
- Title
- Subtitle
- two paragraphs
- footer
- Abbreviation
- Link
The whole thing is an article. All of the content is related.
The header and footer of an article always go inside the article. This shows they are related.
<article>
<header></header>
other content
<footer></footer>
</article>
The title might be an h1-h6
Subtitle could be a p or other tag.
-->