Internet browsing is really fun especially when pulling down very beautiful, informative, interactive and lively sites. Various web design programs are available now so that beginners in web creation could easily design a web on their own by just even dragging the elements to the page. Templates are readily made so as to what ambiance of the site is preferable for the users. These objects are usually created using the HTML tags and cascading style sheets commands with or with out plug-in and script programming.
Every browser has its own feature to view the page source where the HTML tags are readable. The basic HTML tags that can be found in every page are shown below:
<html>
<head>
<meta name=”keywords” content=”" />
<title>title here…</title>
<style>
cascading style sheets here..
</style>
</head>
<body>
contents of the page here…
Link:
<a href=”address here…”> link here</a>
Image:
<img src=”image here…” />
</body>
</html>
