Saturday, September 28, 2013

Information about how to learn HTML (1st to Last) – Part-06




Hello readers, how are you? Hope you are well! Today we take a look at the th part of HTML tutorial. Today we learn about gold-text, address, paragraph, pre element & division element to use. The previous post in this series, they need to be connected to the link for those who could not read. You can see it. Let’s start today’s learning-

Text information element
This element is used for the space between lines of text, Tub or indent settings, creating a space between words in the text. This tag is used to address pre p etc. without text tag.

Address Element
Using these tags in your web pages as author name, address can be specified. Here Italic characters can be seen. Text from the entire document is a way to recognize separately. Format of this tag is- <address> ............. </address>

Create an html file with the following coding & save that using name of Program4.html
<html>
<head>
<title> This is Sample Address</title>
</head>
<body>
This element essentionally formats an address section.
Usually an address is shown in an italic typeface.
<address>
Mr. Belal Hossain <br>
SNS Telecom <br>
Meah Khan Road, Chairman Ghata<br>
East Bakalia, Chittagong <br>
Phone- 01820-107970 <br>
</address>
</body>
</html>

It will open in the browser as follows:




Paragraph Element
Every document needs specific paragraph or a blank line. This tag is used for that. We know from first program, the program editor, two / three lines in the same way that the browser will not show up here. We've already used <br> tag for separate the line. But the next line of text, we see the gap, but the line is not empty. Format of the paragraph tag <p> ............. </p>
Note: Here the End tag </ p> if don’t want to use so no problem.

Create an html file with the following code.
<html>
<head>
<title> This is Paragraph Element </title>
</head>
<body>
<p> This is First Paragraph.
<p> This is Second Paragraph.
<p> This is Third Paragraph.
</body>
</html>

When you open the browser should look like the image below -









Paragraph Element in Align Attributes
Using the Align Attributes with the paragraph tag, left, right, center or justify the paragraph will be presented. During the coding of the left, right, etc., then it may not be used for Quotation Mark. The results will be no different. Format of this tag is-
<p align=center> or <p align=left>

Create an html file with the following coding -

<html>
<head>
<title> This is Paragraph Element </title>
</head>
<body>
<p align=center> Whenever you are a seasoned html user or a first time, this tutorial mends you at your current Level and helps you grow from there. </p>
<p align=right> Whenever you are a seasoned html user or a first time, this tutorial mends you at your current Level and helps you grow from there. </p>
<p align=justify> Whenever you are a seasoned html user or a first time, this tutorial mends you at your current Level and helps you grow from there. </p>
</body>
</html>

With the browser open, you will see the results in the following: -




This tutorial for those who are inexperienced in this tutorial is really about their achievements. Forgive me if I do any wrong. If you need good and evil, I would encourage you to write more in the future tutorials.

Keep this up today. Keep your eyes on this site for the next part. Please visit this site regularly to see the new tutorials. Best of luck of all & Please take care of you & your parents.


No comments:

Post a Comment