HTML Tutorial

HTML Basics

HTML can be said not to be a programming language but a markup language, this is because it is composed of elements, tags and attributes which are used to organize and build contents on the web all the text content is based on HTML.

 

OK, let us just begin with the ‘Nevertheless, it is possible to make a breakthrough at the initial step, if we start with the < DOCTYPE> declaration. This tells the browser which version of HTML you are using and how it should render your webpage, if it’s 4.01 then use this code.


Next, we have the two main parts of an HTML document: The two areas of concern are the entire `<head>` and the entire `<body>` section.

Head Section

Imagine the `` is the head of the webpage, which hosts meta-information regulating the webpage’s functionality and its recognition by search engine crawlers (SEO). This section can consist of the title of the page, links with the stylesheets, with scripts, and other meta data which are additional information on the document.

Body Section

The `<body>` section is akin to the actual physical body as it is the place where all elements which are normally observed are placed. This is where you will change the paragraph settings, insert the images, add or input anything that a user will view and will be able to click on the webpage.

 

Just as in the human body the brain sends out directions and signals for the senses and actions, the `<head> section sends out instructions on how a webpage should be dealt with. Finally the `<body>` section contains content, just like our body is involved in performing actions.

				
					<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Document</title>
</head>
<body>
    
</body>
</html>
				
			

Try It Yourself