Menu

HTML TUTORIALS - HTML Basic Tags

HTML Basic Tags

ADVERTISEMENTS

Example:


<head>
<title>HTML Basic tags</title>
<meta name="Keywords" content="HTML, Web Pages" />
<meta name="description" content="HTML Basic Tags" />
<base href="http://htmltutorials.our24x7i.com/" />
<link rel="stylesheet" type="text/css" href="tp.css" />
<script type="text/javascript">

</script>
</head> 

ADVERTISEMENTS

Example:


<head>
<title>HTML Basic tags</title>
</head>

ADVERTISEMENTS

Example:


<body>
   <p>This is a paragraph tag.</p>
</body>

Putting all together:


<html>

<head>
<title>HTML Basic tags</title>
<meta name="Keywords" content="HTML, Web Pages" />
<meta name="description" content="HTML Basic Tags" />
<base href="http://htmltutorials.our24x7i.com/" />
<link rel="stylesheet" type="text/css" href="tp.css" />
<script type="text/javascript">
</script>
</head>

<body>
   <p>This is a paragraph tag.</p>
</body>

</html>