HTML
- Heading Tags
Example
<html>
<head>
<title>Heading </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>
- Paragraph Tag
<html>
<head>
<title>Paragraph Example</title>
</head>
<body>
<p>Here is a first paragraph of text.</p>
<p>Here is a second paragraph of text.</p>
<p>Here is a third paragraph of text.</p>
</body>
</html>
- Line Break Tag
The <br /> tag has a space between the characters br and the forward slash. If you omit this space, older browsers will have trouble rendering the line break,
<html>
<head>
<title>Line Break </title>
</head>
<body>
<p>Hello<br />Assignment <br />
</body>
</html>
- Centering Content
<html>
<head>
<title>Centring Content</title>
</head>
<body>
<p>This text is not in the center.</p>
<center>
<p>This text is in the center.</p>
</center>
</body>
</html>
- Horizontal Lines
<html>
<head>
<title>Horizontal Line Example</title>
</head>
<body>
<p>This is paragraph one and should be on top</p>
<hr />
<p>This is paragraph two and should be at bottom</p>
</body>
</html>
The <hr /> element has a space between the characters hr and the forward slash. If you omit this space, older browsers will have trouble rendering the horizontal line, while if you miss the forward slash character and just use <hr>
- Preserve Formatting
Any text between the opening <pre> tag and the closing </pre> tag will preserve the formatting of the source document.
<html>
<head>
<title>Preserve Formatting Example</title>
</head>
<body>
<pre>function testFunction( strText ){alert (strText)}</pre>
</body>
</html>
- Nonbreaking Spaces
An example of this technique appears in the movie "12 Angry Men."
In cases, where you do not want the client browser to break text, you should use a nonbreaking space entity instead of a normal space. For example, when coding the "12 Angry Men" in a paragraph, you should use something similar to the following code −
<html>
<head>
<title>Nonbreaking Spaces </title>
</head>
<body>
<p>An example of this technique appears in the movie "12 Angry Men."</p>
</body>
</html>
No comments:
Post a Comment