HTML5 Tutorial | Create a Web Page

Create a Web Page

The whole web page with html, head and body tag is made by joining earlier sections as
<html>

<head>
<title>Head tag example </title>
<meta name=”Keywords” content=” Head tag, exampleā€¯ />
<meta name=”description” content=” Head tag example” />
<base href=”http://www.vskills.com” />
<link rel=”stylesheet” type=”text/css” href=”style.css” />
<script type=”text/javascript”>
function show_alert()
{
alert(“This is confidential page!”);
}
</script></head>

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

</html>

Get industry recognized certification – Contact us

Menu