-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpratice.html
173 lines (113 loc) · 4.31 KB
/
pratice.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
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
<!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>Shalom</title>
</head>
<body>
<p>How are you doing</p>
<p>My cat is <strong>very</strong> grumpy.</p>
<img src="../1188302.jpg" alt="this is the way">
<h1>My main title</h1>
<p>At Mozilla, we're a global community of technologists, thinkers, and builders working together ... </p>
<p>At Mozilla, we're a global community of</p>
<ul>
<li>technologists</li>
<li>thinkers</li>
<li>builders</li>
</ul>
<p>working together ... </p>
<p>At Mozilla, we're a global community of</p>
<ol start= '1'>
<li>technologists</li>
<li>thinkers</li>
<li>builders</li>
</ol>
<p>For more information click <a href="https://www.google.com" title="Google.com" target="_blank">here</a></p>
<p>working together</p>
<input type="text">
<em>First</em>
<em>Second</em>
<em>Third</em>
<!-- em is an inline element, hence it doesnt appear on a new line -->
<p>A link to my <a href="https://www.mozilla.org/" title="The Mozilla homepage" target="_blank">favorite website</a>.</p>
<input type="password">
<br>
<a href="http://www.facebook.com" title="Facebook">Facebook</a>
<!-- <link rel="icon" href="" type="">
<b><link rel="img" href="./icons8-facebook-60.png" type="image/png"></b>
<link rel="icon" href="favicon.ico" type="image/x-icon"> -->
<ul>
<li>Milk</li>
<li>Eggs</li>
<li>Bread</li>
<li>Hummus</li>
</ul>
<p><em> how are you doing</em></p>
<p><strong>how are you doing</strong></p>
<p><strong><u>How are you doing</u></strong></p>
<p>This is the link to my <a href="https//:wwww.instagram.com" title="Instagram" target="_blank">website</a></p>
<h2 id="Mailing_address"></h2>
<p>Want to contact a specific staff member?
Find details on our <a href="Shalom.html" title="shalom" target="_blank">contacts page</a>.</p>
<!-- <p><a href="https://www.mozilla.org/firefox/" title="Download Firefox" download="">
Download Firefox
</a></p -->
<a href="https://download.mozilla.org/?product=firefox-latest-ssl&os=win64&lang=en-US"
download="firefox-latest-64bit-installer.exe">
Download Latest Firefox for Windows (64-bit) (English, US)
</a> <!--download specifies that the target will be downloaded, in certain instances it might not be needed-->
<br>
<br>
<a href="mailto:[email protected]">Send a Mail</a>
<br>
<br>
<a href="mailto:[email protected][email protected]&[email protected]&subject=The%20subject%20of%20the%20email&body=The%20body%20of%20the%20email">
Send mail with cc, bcc, subject and body
</a>
<br>
<br>
<dl>
<dt>soliloquy</dt>
<dd>In drama, where a character speaks to themselves, representing their inner thoughts or feelings and in the process relaying them to the audience (but not to other characters.)</dd>
<dt>monologue</dt>
<dd>In drama, where a character speaks their thoughts out loud to share them with the audience and any other characters present.</dd>
<dt>aside</dt>
<dd>In drama, where a character shares a comment only with the audience for humorous or dramatic effect. This is usually a feeling, thought, or piece of additional background information.</dd>
</dl>
<dl> <dt>Bacon</dt>
<dd>The glue that binds the world together.</dd>
<dt>Eggs</dt>
<dd>The glue that binds the cake together.</dd>
<dt>Coffee</dt>
<dd>The drink that gets the world running in the morning.
A light brown color.</dd></dl>
<br><br>
<p>Here below is a blockquote...</p>
<blockquote cite="https://developer.mozilla.org/en-US/docs/Web/HTML/Element/blockquote">
<p>The <strong>HTML <code><blockquote></code> Element</strong> (or <em>HTML Block
Quotation Element</em>) indicates that the enclosed text is an extended quotation.</p>
</blockquote>
<address>
Chris Mills, Manchester, The Grim North, UK
</address>
<address>
<p>
Chris Mills<br>
Manchester<br>
The Grim North<br>
UK
</p>
<ul>
<li>Tel: 01234 567 890</li>
<li>Email: [email protected]</li>
</ul>
</address>
<time datetime="">5<sup>th</sup> July 2022</time>
<br>
<time datetime="2016-01-20">20 January 2016</time>
</body>
</html>