The basic HTML Tags
<html> - The main container for HTML pages
<head> - The container for page header information
<title> - The title of the page
<body> - The main body of the page
Examples :
<html>
<html>
<head>
<title> Info its </title>
</head>
</head>
<body>
Hi !
</body>
</html>
Hi !
</body>
</html>
- <p>- define A paragraph
Example:
<html>
<head>
<title> Info its </title>
</head>
</head>
<body>
<p >
</html>
<p >
This is my first paragraph
</p>
</body> </html>
- <pre>- Preformatted text
Example:
<html>
<head>
<title> Info its </title>
</head>
</head>
<body>
<pre>
</html>
<pre>
Hi This is preformatted
text.
Thankyou. </pre></body>
</html>
Result:
Hi This is preformatted text. Thank you.
0 comments:
Post a Comment