Frontend Development

HTML Lessons #1

Submitted by H, , Thread ID: 10979

Thread Closed

RE: HTML Lessons #1

#3
Seeing as a few uninformed aspiring web developers may check this tutorial I'd suggest revising this tutorial slightly.

This is a proper barebones HTML document:
Code:
<!DOCTYPE html>
<html>
     <head></head>
     <body></body>
</html>

The title tag would be placed within your head tags, as follows:
Code:
<!DOCTYPE html>
<html>
     <head>
          <title>Website Title</title>
     </head>
     <body></body>
</html>

This tutorial is pretty simple and doesn't really cover getting started from a beginner's perspective. Perhaps elaborate on the purpose of each tag as well as provide examples of how to work with them. Also, I'd suggest explaining how to reference stylesheets from both within and outside of the HTML document. Other than that, good on you for attempting to help website developers. Smile
NulledBB Member Since 2013 | Former Staff Member | Web Designer

Need MyBB/website help? Feel free to message me!

Users browsing this thread: 3 Guest(s)