⚝ ATP Web Creation
HTML Introduction | What is HTML?| HTML Format/Sample Document | HTML Example | HTML Tag 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 <html> </htm>. There are many HTML tags which are given below which are commonly used.
Common HTML Tags:
Tags | Description |
<!-- XXXX --> | Comments |
<!DOCTYPE> | This tag is used for specify the documnet |
<html> | This tag is main html tag which content all tag within itself. |
<ttile> | title tag is used for the specify the name of document title name. |
<meta> | There are others so many meta tag are used like specify the description keywords robots etc |
<link> | link tag is used to attach the other types of file to html documents. like css external stylesheet file |
<script> | script tag is used to write the javascript and jquery code. |
<style> | style tag is used f to write the css style for design color, width, hight, positions and other properties of elements. |
<body> | body tag is the main tag for content where we placed the text image and videos etc. |
<div> | div is used as container of any blocks. |
<article> | article is also used as div but especially it define the article |
<section> | Defines a section in a document |
<p> | p is used for paragraphs |
<strong> | strong is used for bold text. |
Other HTML tags:
Your Comment