Pages

Subscribe:

About

HTML Paragraphs

EXAMPLE:

Now we show diffrent type of paragraph:

HTMLResult
<p>Avoid losing floppy disks with important school/work projects on them. Use the web to keep your content so you can access it from anywhere in the world. It's also a quick way to write reminders or notes to yourself. With</p>
<p>For instance, let's say you had a HUGE school or work project to complete. Off hand, the easiest way to transfer the documents from your house could be a 3.5" floppy disk. However, there is an </p>
Avoid losing floppy disks with important school/work projects on them. Use the web to keep your content so you can access it from anywhere in the world. It's also a quick way to write reminders or notes to yourself. With simple html skills, (the ones you have gained so far) it is easy.
For instance, let's say you had a HUGE school or work project to complete. Off hand, the easiest way to transfer the documents from your house could be a 3.5" floppy disk. However, there is an alternative. Place your documents, photos, essays, or videos onto your web server and access them from anywhere in the world.

In the previous code example:
<p > means start tag and </ p> end tag.
The <p> tag defines a paragraph


Left Text Paragraph:
Example:
HTML:
<html>
<body>

<p align="left">This is a paragraph.</p>
<p>This is a paragraph.</p>
<p>This is a paragraph.</p>

</body>
</html>
This is a paragraph
This is a paragraph
This is a paragraph



Right Text Paragraph:
Example:
HTML:
<html>
<body>

<p align="right">This is a paragraph.</p>
<p>This is a paragraph.</p>
<p>This is a paragraph.</p>

</body>
</html>
This is a paragraph
This is a paragraph
This is a paragraph

Right Text Paragraph:
Example:
HTML:
<html>
<body>

<p align="center">This is a paragraph.</p>
<p>This is a paragraph.</p>
<p>This is a paragraph.</p>

</body>
</html>
This is a paragraph
This is a paragraph
This is a paragraph

HTML Pragraph with space:

<html>
<body>

<p>
This paragraph
contains a lot of lines
in the source code,
but the browser 
ignores it.
</p>

<p>
This paragraph
contains      a lot of spaces
in the source     code,
but the    browser 
ignores it.
</p>

<p>
The number of lines in a paragraph depends on the size of your browser window. If you resize the browser window, the number of lines in this paragraph will change.
</p>

</body>
</html>

This paragraph contains a lot of lines in the source code, but the browser ignores it.

This paragraph contains a lot of spaces in the source code, but the browser ignores it.

The number of lines in a paragraph depends on the size of your browser window. If you resize the browser window, the number of lines in this paragraph will change.

HTML Pragraph using line brake:


<html>
<body>

<p>This is<br>a para<br>graph with line breaks</p>

</body>
</html>



This is
a para
graph with line breaks

HTML Pragraph with  Right an Image:

<P><IMG SRC="http://sphotos-f.ak.fbcdn.net/hphotos-ak-prn1/69264_470536069695150_203478043_n.jpg" height=62 width=87 ALIGN=RIGHT>This is how to put the image on the right side of the text. Just put the image code and the text without any brake tags or paragraph between them the tag of the image will put things the way you want it on the right side of the text.This is how to put the image on the right side of the text. Just put the image code and the text without any brake tags or paragraph between them the tag of the image will put things the way you want it on the right side of the text.</P>
This is how to put the image on the right side of the text. Just put the image code and the text without any brake tags or paragraph between them the tag of the image will put things the way you want it on the right side of the text.RepeatThis is how to put the image on the right side of the text. Just put the image code and the text without any brake tags or paragraph between them the tag of the image will put things the way you want it on the right side of the text.

In the previous code example:
  • < p> means start pragraph tag and </p > pragraph end tag.
  • The text between <IMG SRC="http://sphotos-f.ak.fbcdn.net/hphotos-ak-prn1/69264_470536069695150_203478043_n.jpg" height=62 width=87 ALIGN=RIGHT> define image within this text.
  • The text between ALIGN=RIGHT define image position.
HTML Pragraph with  Right an Image:
<IMG SRC="http://sphotos-f.ak.fbcdn.net/hphotos-ak-prn1/69264_470536069695150_203478043_n.jpg" height=62 width=87 ALIGN=LEFT>This is how to put the image on the right side of the text. Just put the image code and the text without any brake tags or paragraph between them the tag of the image will put things the way you want it on the right side of the text.This is how to put the image on the right side of the text. Just put the image code and the text without any brake tags or paragraph between them the tag of the image will put things the way you want it on the right side of the text.

undefined<P><IMG SRC=""help2.gif" height=62 width=87 ALIGN=LEFT>This is how to put the image on the left side of the text. Just put the image code and the text without any brake tags or paragraph between them the tag of the image will put things the way you want it on the left side of the text..Repeat This is how to put the image on the left side of the text. Just put the image code and the text without any brake tags or paragraph between them the tag of the image will put things the way you want it on the left side of the text..</P>
n the previous code example:
  • < p> means start pragraph tag and </p > pragraph end tag.
  • The text between <IMG SRC=""help2.gif" height=62 width=87 ALIGN=LEFT>define image within this text.
  • The text between ALIGN=LEFT define image position.

0 comments:

Post a Comment