-
Notifications
You must be signed in to change notification settings - Fork 1
/
SomeUsefulTags.html
82 lines (74 loc) · 3.71 KB
/
SomeUsefulTags.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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Some HTML tags</title>
<link rel="stylesheet" href="Files/CSS/General.css">
<link rel="stylesheet" href="Files/CSS/SomeUsefulTags.css">
</head>
<body>
<a href="MainPage.html">
<button type="button" class="Home-Button" !importent>Home</button>
</a>
<p class="Headings">
<span style="color: red;"><em><em></em></span>
<span class="DIY-br" style="background-color: grey;"></span>
</p>
<p class="Standart-Text">
<em>The Emphasis element. The <span style="color: #964b00;"><em></span> HTML element marks text that has stress
emphasis. The <span style="color: #964b00;"><em></span> element can be nested, with each level of nesting
indicating a greater degree of emphasis.
</em>
</p>
<span class="DIY-br"></span>
<p class="Headings">
<span style="color: red;"><strong><strong></strong></span>
<span class="DIY-br" style="background-color: grey;"></span>
</p>
<p class="Standart-Text">
<strong>
The <span style="color: #964b00;"><strong></span> HTML element indicates that its contents have strong importance,
seriousness, or urgency. Browsers typically render the contents in bold type.
</strong>
</p>
<span class="DIY-br"></span>
<p class="Headings">
<span style="color: red;"><i><i></i></span>
<span class="DIY-br" style="background-color: grey;"></span>
</p>
<p class="Standart-Text">
<i>
The <span style="color: #964b00;"><i></span> tag defines a part of text in an alternate voice or mood. The content inside
is typically displayed in italic. The <span style="color: #964b00;"><i></span> tag is often used to indicate a technical
term, a phrase from another language, a thought, a ship name, etc.
</i>
</p>
<span class="DIY-br"></span>
<p class="Headings">
<span style="color: red;"><b><b></b></span>
<span class="DIY-br" style="background-color: grey;"></span>
</p>
<p class="Standart-Text">
<b>
The <span style="color: #964b00;"><b></span> tag specifies bold text without any extra importance. According to the HTML5
specification, the <span style="color: #964b00;"><b></span> tag should be used as a LAST resort when no other tag is more
appropriate. The specification states that headings should be denoted with the <span style="color: #964b00;"><h1></span> to
<span style="color: #964b00;"><h6></span> tags, emphasized text should be denoted with the <span style="color: #964b00;"><em>
</span> tag, important text should be denoted with the <span style="color: #964b00;"><strong></span> tag, and marked/highlighted text
should be denoted with the <span style="color: #964b00;"><mark></span> tag.
</b>
</p>
<span class="DIY-br"></span>
<p class="Headings">
<span style="color: red;"><pre></span>
<span class="DIY-br" style="background-color: grey;"></span>
</p>
<p class="Standart-Text">The <span style="color: #964b00;"><pre></span> HTML element represents preformatted text which is to be
presented exactly as written in the HTML file. The text is typically rendered using a non-proportional, or "monospaced, font.
Whitespace inside this element is displayed as written.
</p>
<span class="DIY-br"></span>
</body>
</html>