Here is the basic format of a website:
<HTML>
<HEAD>
<TITLE></TITLE>
</HEAD>
<BODY>
</BODY>
</HTML>
The <HTML> tag basically tells the computer to start compiling the code.
Any code between the <HEAD> and the </HEAD> tags is not seen in the main webpage. With the exception of the <TITLE> and </TITLE> tags, which give the webpage the title you see at the top or on the tabs, nothing is seen here. It will influence the website, though.
Anything in the <BODY> part of the website is seen. As a matter of fact, this is the main part of the website.
</BODY></HTML> ends the website.
Also, the tags with no backslashes open the tag, while the ones with backslashes close it.
All the rest of the code will be talked about in other sections. In the mean time, hasta luego!

No comments:
Post a Comment