-
Notifications
You must be signed in to change notification settings - Fork 0
/
Basic HTML Tags.htm
25 lines (20 loc) · 1.12 KB
/
Basic HTML Tags.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
<HTML>
<HEAD>
<TITLE>Webpage</TITLE>
</HEAD>
<BODY>
<H1 align="center"><FONT FACE="palatino"><U><B>HyperText Markup Language</B></U> (19<SUP>th</SUP> March)</FONT></H1>
<P ALIGN="CENTER"><FONT SIZE="4" COLOR="FUSCHIA" FACE="trebuchet ms">
HTML (HyperText Markup Language) is the code that is used to structure a web page and its content. <BR>
For example, content could be structured within a set of paragraphs, a list of bulleted points, or using images and data tables.
</FONT></P>
<P><FONT FACE="comic sans ms" COLOR="OLIVE">
HTML consists of a series of elements, which you use to enclose, or wrap, different parts of the content to make it appear a certain way, or act a certain way. <BR>
The enclosing tags can make a word or image hyperlink to somewhere else, can italicize words, can make the font bigger or smaller, and so on.
</FONT></P>
<P><FONT FACE="comic sans ms" COLOR="OLIVE">
Attributes contain extra information about the element that you don't want to appear in the actual content. <BR>
You can put elements inside other elements too — this is called nesting.
</FONT></P>
</BODY>
</HTML>