-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathol.html
49 lines (46 loc) · 2.23 KB
/
ol.html
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
<!-- 4. Create an ordered list of HTMK tags. Each list item must include the tag name and some information about
the tag. -->
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>HTML Tags Description</title>
<style>
ol{
display: flex;
flex-direction: column;
gap:20px;
}
</style>
</head>
<body>
<h3>HTML Tags</h3>
<ol>
<li>
<strong><html></strong> - The html tag represents the root of an HTML document. The html tag is the container for all other HTML elements (except for the DOCTYPE).
</li>
<li>
<strong><head></strong> - The head tag is an HTML element used to define the head section of an HTML document. The head section contains metadata, which simply means data about data.
</li>
<li>
<strong><title></strong> - The title tag defines the title of the document. The title must be text-only, and it it shown in the browser's title bar or in the page's tab.
</li>
<li>
<strong><link></strong> - The link tag defines the relationship between the current document and an external resource. The link tag is most often used to link to external style sheets or to our website.
</li>
<li>
<strong><style></strong> - The style tag is used to define style information (CSS) for a document. The style element must be included inside the head section of the document.
</li>
<li>
<strong><body></strong> - The body tag defines the document's body. The body element contains all the contents of an HTML document, such as headings, paragraphs, images, hyperlinks, lists, etc.
</li>
<li>
<strong><h1></strong> - HTML headings are defined with the h1 to h6 tags. h1 defines the most important heading, h6 defines the least important heading.
</li>
<li>
<strong><ul></strong> - The HTML ul tag defines an unordered (bulleted) list. An unordered list starts with the ul tag. Each list item starts with the li tag.
</li>
</ol>
</body>
</html>