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.

<h1> = Defines a large heading.
 
<p> = Defines a paragraph.

A simple HTML document:

<!DOCTYPE html>
<html>
<head>
    <title>Document</title>
</head>
<body>
    <h1>@EngineerTrendsZoo</h1>
    <p>hello..! Make your mood Classy Hope you will enjoy....</p>
</body>
</html>

Here is how your page will look like:

 

 

Comments

Popular posts from this blog

what is osi model | what are seven layer of OSI model | function of OSI model.