Monday, April 7, 2014

HTML TUTORIAL PART 3

HTML TUTORIAL PART 3

PROBLEM:
Look at the following:





SOLVED:
The code below made the HTML tip:
<html>
<head>
<title>This is My Page with BG COLOr</title>
</head>

<body background="photo.jpg" text="Plum">

<h1> This is my HTML Page </h1>
<! this is a comment this will not display in webpage>
<h3>
<p> We can align paragraph in different position like Right, Left, Center Etc.
<p align="right"> This is Right Align
<p align="Left"> This is Left Align
<p align="Center"> This is Centered
</h3>
<h1> Font tag </h1>
<font face="Impact" size=5 color="aqua"> We can use font tag with end tag this includes some attributes like font face="Impact" size=7 color="red" etc </font>
<p>

This is <b> Bold </b> text and this is <u> Underlined </u> Text this is <i> Italic </i> Text and this is <strike> Striked </strike> Text We can use this tags bold for (B) italic for (I) Underlined for (u) and strikethrough for (strike) with end tags

<p>

</body>
</html>

No comments:

Post a Comment