HTML Tutorials for Beginners to Advance

HTML Basic Structure, Elements in HTML, HTML Headlines, List in HTML, Insert Images in Web Pages, Tables in HTML, HTML form design, HTML5 Elements, HTML Canvas, etc.

HTML Body Section


HTML body section is a main contain section of web page all contain that will be seen when the user loads the webpage.

HTML body section supported all the contains such as text, hyperlinks, images, Special Character, lists, tables, frames, forms etc

It's most powerful section and important section to display web page.

See this example:

<html>
<head>
<link rel="stylesheet" type="text/css" href="/styles.css">
<title> Example is Body Section Elements </title>
</head>
<body>
<!-- Body Part -->
<p> This is Body Section </p>
<a href="../html_tutorial.php"> goto HTML Index Page </a>
</body>
</html>