/lm-code-intro-to-html

In-session assignment: Introduction to HTML

Primary LanguageHTML

Introduction to HTML

Getting Started

👉 Fork and then clone this repo to your local computer

Instructions

The Tech Returners Doctors Surgery has a hand-crafted HTML website in desperate need of some fixes to its tags. Currently, some HTML tags are correct, but in many places the tags have been replaced by invalid HTML fixme tags: <fixme></fixme> 😮

Your task is to replace these fixme tags with more appropriate ones.

For example, instead of:

<fixme>Tech Returners Surgery: Home</fixme>

Perhaps using an <h1> here would be appropriate?

<h1>Tech Returners Surgery: Home</h1>

💡 In some cases, there will only be one answer. For example, remember that an HTML document has a single html tag wrapping the whole document after the DOCTYPE.

💡 But in other cases, there might be multiple valid tags - in which case, choose whichever seems most appropriate.

💡 Don't forget to check any HTML attributes are valid and accurate too!

👉 The file for you to edit can be found here.

Tips and Tricks

On Mac/Linux you can open HTML files in the browser using the command line:

         $ open filename.html

Or alternatively for Mac and Windows, right click the HTML file and select "open with", then select the browser of your choice.

💡 You can find a list of different tags and explanations on when and where to use them on MDN.

💡 If you get really really stuck, you can find some hints here.

Happy coding! 🙌