-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathBody.htm
47 lines (45 loc) · 1.19 KB
/
Body.htm
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
<!DOCTYPE HTML 4.0 TRANSITIONAL PUBLIC "_//w3c//dtd html 4.0//en">
<HTML>
<HEAD>
<LINK REL=STYLESHEET TYPE="TEXT/CSS" HREF="STYLES.CSS">
<TITLE> HTML Tutorial </TITLE>
</HEAD>
<body class="MIC">
<H1> BODY </H1>
This is the Tag in which the actual HTML coding takes place. All the contents
of the page are contained in this tag. All the part of the document visible
to the user including the text, graphics are included in this tag. User only
sees the content in the body tag.
This is a Container Tag and thus has to be closed. Text / Tags Written in the
<SPAN CLASS= INTRO> BODY </SPAN> Tag is displayed on the Browser Window.
<H2> Syntax </H2>
<BR>
<SPAN CLASS= INTRO> <HTML> </SPAN>
<BR>
<SPAN CLASS= INTRO> <HEAD> </SPAN>
<BR>
...
<BR>
...
<BR>
...
<BR>
<SPAN CLASS= INTRO> </HEAD> </SPAN>
<BR>
<SPAN CLASS= MAIN> <BODY> </SPAN>
<BR>
...
<BR>
...
<BR>
<SPAN CLASS= MAIN> </BODY> </SPAN>
<BR>
<SPAN CLASS= INTRO> </HTML> </SPAN>
<BR>
<BR>
<BR>
<A HREF=" INTRO.HTM" TITLE="HTML Tutorial Home-Introduction to HTML"> Home </A>
<BR>
<A HREF=" ABOUT.HTM" TITLE="About HTML Tutorial"> About </A>
</BODY>
</HTML>