728x90 Ad Space

Sign Up To The Free Email Newsletter!

Want to get notified whenever we produce the latest content ? Then subscribe now to start receiving hot updates from today.

Showing posts with label HTML Line Breaks.. Show all posts
Showing posts with label HTML Line Breaks.. Show all posts

Wednesday, October 31, 2012

What is HTML?

What is HTML?
HTML stands for Hyper Text Markup Language.
    HTML tags are keywords (tag names) surrounded by angle brackets like <html>
    HTML tags normally come in pairs like <b> and </b>
HTML markup tags are usually called HTML tags
    The first tag in a pair is the start tag, the second tag is the end tag
    The end tag is written like the start tag, with a forward slash before the tag name
    Start and end tags are also called opening tags and closing tags
The text between <html> and </html> describes the web page
The text between <body> and </body> is the visible page content
The text between <h1> and </h1> is displayed as a heading
The text between <p> and </p> is displayed as a paragraph
Example:
<html>
<head>
<title> type any text </title>
</head>
<body>
<h1>This is heading 1</h1>
<h2>This is heading 2</h2>
<h3>This is heading 3</h3>
<h4>This is heading 4</h4>
<h5>This is heading 5</h5>
<h6>This is heading 6</h6>
</body>
</html>
save it  filename.html or filename.htm
HTML Paragraphs
<p>This is a paragraph.</p>
HTML Headings
<html>
<body>
<h1>This is heading 1</h1>
<h2>This is heading 2</h2>
<h3>This is heading 3</h3>
<h4>This is heading 4</h4>
<h5>This is heading 5</h5>
<h6>This is heading 6</h6>
</body>
</html>
HTML Line Breaks
Use the <br /> tag if you want a line break (a new line) without starting a new paragraph.