Introduction to HTML

HTML - Hyper Text Markup Language

HTML is used to create web pages. The extension of a HTML file is .html or .htm . When we open this HTML file in browser then it is called a web page. The related collection of web pages is known as website. We can link one web page to another by using anchor tag ( <a></a> ). 

There are many tags in HTML which help to create the webpages like heading, paragraph tag etc. Tags are used to structure the webpage and we can give information in the tag to display in a webpage.

#Introduction-to-HTML


introduction to html


#Introduction-to-HTML

HTML is the base of web development. For learning web development start from HTML. 

Let's create a simple HTML Page. Open your editor and create a new file index.html -

<!DOCTYPE html>
<html>
<head>
<title>HTML</title>
</head>
<body>

<h1>Hello World</h1>

</body>
</html>

Output - 




#Introduction-to-HTML


Thank You For Reading
Comment Below for the Feedback

Comments

Post a Comment