⚝ ATP Web Creation
PHP Introduction | What is PHP? Use of PHP | Role of PHP in Web Programming ATP Web Creation is a best place to develop your websites and various types of applications. We offer design and application development services for every stage of your mobile project.
HTML stands for -
H = Hyper
T = Text
M = Markup
L = Language
HTML is a markup language which is used to create a web pages. HTML consists of so many html elements e.i tags, which form a web page structure.
HTML is very commonly used markup language which describe and define the web page and its various elemnts. It is consist of series of elements which allow the browser to display these.
Sample format of HML document.
<!DOCTYPE html>
<html lang="en">
<head>
<title>Page Title</title>
<meta name="" content=""/>
</head>
<body>
<h1>My First Heading</h1>
<p>My first paragraph.</p>
</body>
</html>
HTML document is formed to organisely putting up within the HTMl tags like
. There are many HTML tags which are given below which are commonly used.
Common HTML Tags:
Tags | Description |
Comments | |
This tag is used for specify the documnet | |
This tag is main html tag which content all tag within itself. | |
title tag is used for the specify the name of document title name. | |
There are others so many meta tag are used like specify the description keywords robots etc | |
link tag is used to attach the other types of file to html documents. like css external stylesheet file | |
script tag is used to write the javascript and jquery code. | |
Your Comment