To learn HTML syntax or there are some basic tags you should know. Here is the basic format to create a html file.
<html>
<head>
contents of the HTML head
</ head>
<body>
contents of the HTML body
</ body>
</ html>
Each HTML file always begins with the syntax <html> and </ html>. Amid the syntax is then filled head and body tags. Remember, every opening tag must end with a closing tag. <body> Is the opening tag and the tag </ body> is the closing tag. Very easy, every closing tag need only be marked slash (/) of the opening tag. Page of the web will be created in the body. Consider the following HTML syntax.
<html>
<head>
O world
</ head>
<body>
Welcome to the blog <h1> igor </ h1>
<font> thank you for coming </ font>
</ body>
</ html>
Copy and paste the above code into notepad, then save and name the file "helloworld.html". Then run the file by double click the file helloworld.html. You need a web browser like mozilla firefox, internet explorer, etc. so that the file is not running. So that I can give to this web programming tutorials.
<html>
<head>
contents of the HTML head
</ head>
<body>
contents of the HTML body
</ body>
</ html>
Each HTML file always begins with the syntax <html> and </ html>. Amid the syntax is then filled head and body tags. Remember, every opening tag must end with a closing tag. <body> Is the opening tag and the tag </ body> is the closing tag. Very easy, every closing tag need only be marked slash (/) of the opening tag. Page of the web will be created in the body. Consider the following HTML syntax.
<html>
<head>
O world
</ head>
<body>
Welcome to the blog <h1> igor </ h1>
<font> thank you for coming </ font>
</ body>
</ html>
Copy and paste the above code into notepad, then save and name the file "helloworld.html". Then run the file by double click the file helloworld.html. You need a web browser like mozilla firefox, internet explorer, etc. so that the file is not running. So that I can give to this web programming tutorials.
