HTML-Hyper Text Markup Language for web pages structure

HTML- HyperText Markup Language is the language to design website structure and html5 is used with CSS for front-end designing of website.HTML is based on tags and all elements of HTML work from starting to ending tags.

HTML

HTML-Hyper Text Markup Language


HTML stands for Hypertext language and standard markup language for creating web pages is HTML. HTML basically describes the structure of web pages. HTML consists of a series of elements and use tagsHTML elements tell the browser how to display the content. HTML elements label pieces of content such as "headings are here", "paragraphs are here", "links are here", etc. 

Basic Structure of HTML

 <!DOCTYPE html>  
 <html>  
 <head>  
 <title>Page Title</title>  
 </head>  
 <body>  
   
 <h1>My First Heading</h1>  
 <p>My first paragraph.</p>  
   
 </body>  
 </html>  

Element of HTML

The Elements of HTML is everything between starting tag and ending tag

For Example:

    <starting tag> Element </ending tag>
Ending tag always include / symbol.

HTML Page Structure

<!DOCTYPE html>
<html>
<head>
<title>Page Title</title>
</head>
<body>
<h1>My First Heading</h1>
<p>My first paragraph.</p>
</body>
</html>

More Blogs on HTML will be updated soon

HTML-Hyper Text Markup Language

If You want to learn HTML W3School is the best free place to learn that language.

Post a Comment

0 Comments