forked from Annex5061/java-algorithms
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathweb.html
45 lines (45 loc) · 1.44 KB
/
web.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
<html>
<head>
<title> WEB DESIGNING</title>
</head>
<body>
<center><h1>BLOCK LEVEL</h1></center>
<p>there are two categories of block level.
block level elements or tags create largest structure then inline elements genrally block level elements may contain inline elements and
other blocks levels elements </p>
<br>
<h1>SOME EXAMPLE OF BLOCK LEVEL</h1>
<ol type="1">
<li>heading tag</li>
<li>table tag</li>
<li>paragraph tag</li>
<li>form tag</li>
<li>text level</li>
</ol>
<center><h1>TEXT LEVEL ELEMENTS</h1></center>
<p>inline elements create smaller srtucture than block level elements genrally inline elements may contain only data
and other inline elements.
inline elements do not begin on new line</p>
<h1>some example of inline elements</h1>
<b>this tag is in text level </b>
<br>
<u>underline tag used in inline tag</u>
<br>
<i>italic tag is used in inline tag</i>
<br>
<small>small tag is used to small the tha character and it is used in inline tag</small>
<br>
<big>big tag is used for big the character and also used in inline tag</big>
<br>
a<sup>2</sup>+b<sup>2</sup>
<p>this tag is used superscript like a power 2 + b power 2</p>
<br>
h<sub>2</sub>o
<p>this tag is show subscript command and from above example</p>
<br>
<center><img src="photo.webp" width="500px" height="600px"></center>
<br>
<tt>hello sir</tt>
<label for="">hello sir</label>
</body>
</html>