HTML Introduction
HTML - Introduction
Tutorials Point
In this tutorial, we will guide you on how to start with HTML, which will enable you to create a simple web page. Once you have created several web pages, you can link them up logically to form a more significant aspect called a website.
HTML was created by Bernerslee back in 1991 and has been used since then to create the basic structure of web pages. It is transmitted from server to client browser using some protocols, which are rules and regulations required for any communication that takes place over the network.
An HTML document can be divided into two basic parts, the head and the body, just like a human body. Most of the tags we will be learning will be pair tags, which include an opening tag and a closing tag. However, we do have some non-pair tags which will be discussed during the course curriculum itself.
Let's see how HTML looks like:
<!DOCTYPE html>
<html>
<head>
<title>Page Title</title>
</head> <body> <h1>This is a Heading</h1>
<p>This is a paragraph.</p>
</body>
</html>
The body is the main area of a web page that is displayed in a browser. It contains all the content visible on the page.
To display a web page, we save it with the extension .html and open it in a browser. This will show us the output of the web page with its body content.
DOWNLOAD IT'S PDF FROM BELOW:
Comments
Post a Comment