HTML NOTES IN ENGLISH
HTML NOTES IN ENGLISH
What is HTML?
HTML stands for Hyper Text Markup Language and it is the most widely used language to write web pages.
What is Hypertext?
Hypertext refers to the way in which web pages (HTML Documents) are linked together. Thus, the link available on web page is called hypertext.
What is Markup language?
HTML is a Markup language which means you use HTML to simply "markup" a text document with tags that tell a web browser, how to structure it to display.
Basic HTML Document
<!DOCTYPE html>
<html>
<head>
<title>
My first website
</title>
</head>
<body>
Hello world
</body>
</html>
You can try this code using your favorite text editor. Finally open it is using a web browser like Google Chrome or Mozila Firefox etc. It must show the following output :
HTML stands for Hyper Text Markup Language and it is the most widely used language to write web pages.
What is Hypertext?
Hypertext refers to the way in which web pages (HTML Documents) are linked together. Thus, the link available on web page is called hypertext.
What is Markup language?
HTML is a Markup language which means you use HTML to simply "markup" a text document with tags that tell a web browser, how to structure it to display.
Basic HTML Document
<!DOCTYPE html>
<html>
<head>
<title>
My first website
</title>
</head>
<body>
Hello world
</body>
</html>
You can try this code using your favorite text editor. Finally open it is using a web browser like Google Chrome or Mozila Firefox etc. It must show the following output :
Post a Comment
0 Comments