Wednesday, January 21, 2015

HTML Tutorial- 3- Center Tag

Source Code:

<html>
<head><title>Today Title is Center Tag</title></head>
<body>
<p>My First Paragarph start form here.</p>
<center><p>My Second Paragraph start from here due to center tag.</p></center>
</body>
</html>

Result:


HTML Tutorial- 2- Line Break Tag

Source:


<html>
<head><title>Today Title is Line Break</title></head>
<body>
<p>This is my first paragraph line break.<br/>
This is my first pragraph also line break.<br/>
Thankyou it's enough<br/>
bye</b>
</body>
</html>

Result:


HTML Tutorial- 1


Source Code:

<html>
<head><title>This is my title</title></head>
<body>
<h1>This is my first heading</h1>
This is my body
</body>
</html>

Result: