Today we will talking about the basic of a HTML page and how to do it the right way.
Warning: if you don't know how to create a basic web page I prefer you search on google for tips and examples.
Ok moving on let get started. The first part of a web is <!DOCTYPE>. This tell us what version the page is written in. This is supported on most browsers. This should be the first thing you put before <HTML> tag.
Example:
<!DOCTYPE HTML>
Next part is <HTML> tag. What this does is tells the computer or, device that this is HTML document.
Remember html tag should never be upper case letters always lowercase.
Example:
<!DOCTYPE HTML>
<html>
</html>
Third step is <head> tag. The head section or document head has little content and mostly contains HTML coded instructions on how to title, categorize and 'run' the web page.
Here final example:
<!DOCTYPE HTML>
<head>
<title>Title Here</title>
</head>
</html>
<body>
Text,HTML elements and more here
</body>
</html>
Make sure to add </html> when finish.
Congrats you now know how to create a basic HTML page the correct way. If you have any questions post them below.
Quoth BanManquote]This is actually a nicely done blog, but there was a blog similar that got declined recently. :- )
So my blog going to be declined because of another blog was declined that will written 0-O? LOL[/quote]
Judicial precedent is an important legal point.