HTML TUTORIAL

 



                             HTML CODES

THESE ARE SOME BASICS HTML CODES

HEADING AND PARAGRAPH

Example

<!DOCTYPE html>
<html>
<head>
<title>Page Title</title>
</head>
<body>

<h1>This is a Heading</h1>
<p>This is a paragraph.</p>

</body>
</html>
result

This is a Heading

This is a paragraph.


The href Attribute

Example

<a href="http://WWW.heroxytraj.blogspot.com">Visit herox</a>
result
<tagname style="property:value;"> 

Example

<body style="background-color:powderblue;">

<h1>This is a heading</h1>
<p>This is a paragraph.</p>

</body>

0 Comments