HTML Tutorial: Basic Structure of Website | Web Development
HTML Tutorial: Basic Structure of Website | Web Development...
Introduction
HTML is the standard markup language for creating Webpages. HTML stands for hyper text markup language.
What is html?
HTML describes the struture of a webpage. It consist of series of elements. It element tell the browser how to display the content.
What is html element?
An html element is defined by a start tag, some content and end tag :
<tag_name> --content-- </tag_name>
<!DOCTYPE> = Declaration defines that this document is an HTMLs document.
<html> = The root element of an html page.
<head> = Contains meta information about the html page.
<title> = Specifies a title for the hml page.
<body> = Define's the document's body and is a container for all the visible contents.
A simple HTML document:
Here is how your page will look like:

Comments
Post a Comment