Basics of HTML

Firstly, this is the structure of a HTML document:

 1. <!DOCTYPE html>
 2. <html>
 3. <head>
 4. <title>
 5. Your title
 6. </title>
 7. <script>
 8. //some JavaScript code
 9. </script>
10. </head>
11. <body bgcolor="#00ff00">
12. <p>
13. Some Text
14. <b>
15. Some Text
16. </b>
17. <i>
18. Some Text
19. </i>
20. <sub>
21. Some Text
22. </sub>
23. <sup>
24. Some Text
25. </sup>
26. </p>
27. <h4>
28. <font>
29. Some Text
30. </font>
31. </h4>
32. </body>
33. </html>

Line 1:

Unless otherwise stated, the content of this page is licensed under Creative Commons Attribution-ShareAlike 3.0 License