INTRO TO HTML, AN EDITOR LINK & HTML BASIC CODE
Hello guys myself Harshith.G.B. Today we are going to learn about HTML
What is HTML?
HTML stands for Hyper Text Markup Language. It is the standard markup language for creating web pages. It describes the structure of a web page. HTML elements label pieces of content such as "this is a heading", "this is a paragraph", "this is a link", etc.
What is an HTML editor?
The medium used to write a HTML code is called an HTML editor. We can use Notepad as a simple editor but I recommend you to use VS Code the link is given below.
Now its time to write a simple and basic HTML code.
<html>
<title> My first webpage </title>
<body>
My name is Harshith. I am studying in class 9.
</body>
</html>