Hi, I m starting to use HTML language and I would like to know how should I start
Answers
Answered by
79
Answer -
First of all you should learn basic structure
that is following
<HTML>
<head>
<title>
</title>
</head>
<body>
Write any content
</body>
</html>
Html is not case sensitive.
Answered by
0
Use HTML editor such as : Notepad, Sublime text etc.
learn the basic HTML structure
<html>
<title> Hello World</title>
<head>
</head>
<body>
</body>
</html>
Note: HTML is not case sensitive
Similar questions