- Syntax of any programming language is the structure or the manner in which it is written.
- HTML forms the most fundamental of languages which consists of tags and elements to denote or define a certain action which we wish to be displayed on our webpage.
- HTML codes can be edited using basic text editors to editors like Visual Studio Code which are used to code with some high level programming languages.
- The Basic HTML syntax is as below :
<html>
<head>
<title>Hello World!</title>
<head>
<body>
Body in HTML consist of all the elements which are going to be displayed on a webpage!
</body>
</html>
Leave a Reply