Recent

6/recent/ticker-posts

HTML (41)

HTML (41)

The Binary Codes of the Greatest Computers Ever Invented... US ...


Combining Tags

In HTML you can combine the different tags.


Example ↓↓↓↓

<html>
<head>
<title>MY PAGE</title>
</head>
<body>
<h1><font color=red>Heading</h1></font>
</body>
</html>



<html>
<head>
<title>MY PAGE</title>
</head>
<body>
<p>
<ol>
<li>sample</li>
<li>sample</li> 
<li>sample</li>
</ol>
</p>
</body>
</html>










<html>
<head>
<title>MY PAGE </title>
</head>
<body>
<p>
<dl>
<dt>Sample
<dd>This is a sample page
</dl>
</p>
</body>
</html>







COMBINED EXAMPLE 

<html>
<head>
<title>my page</title>
</head>
</body>
<h1><font color=red>Heading</h1></font>
<p>
<ol>
<li>sample</li>
<li>sample</li> 
<li>sample</li>
</ol>
</p>
<p>
<dl>
<dt>Sample
<dd>This is a sample page
</dl>
</p>
</body>
</html>







Post a Comment

0 Comments