-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathBasic Structure.html
More file actions
35 lines (35 loc) · 1.22 KB
/
Basic Structure.html
File metadata and controls
35 lines (35 loc) · 1.22 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
<!DOCTYPE html>
<html lang="en-US">
<head>
<title>Demo Page</title>
<body style="background-color: aquamarine;">
<h1 style="background-color: blue">This is an image</h1>
<p style="font-style: italic">
<Bold>Lorem ipsum dolor sit amet consectetur</Bold>, adipisicing elit.
Harum dolor modi libero provident voluptas recusandae <br />distinctio
tenetur, suscipit fugiat itaque totam voluptatum vitae deserunt hic
tempore iure sit facere qui!
</p>
<hr width="300px">
<p style="background-color: brown;">
<Bold style ="font-size:xx-large";> lorem ipsum dolor sit amet consectetur adipisicing elit. Quidem harum
illo dolor rem iste tempora voluptates dolorem in ad perferendis
incidunt eligendi mollitia exercitationem voluptatem, non quia aperiam
cum iusto!</Bold>
</p>
<hr>
<pre>
This is preformatted text tag
to be used in poems
in order to avoid line break and
paragraph tags.
</pre>
<img
src="https://i.redd.it/w3kr4m2fi3111.png"
alt="This place is for test image"
width="330px"
height="300px"
/>
</body>
</head>
</html>