Skip to content

Latest commit

 

History

History
94 lines (53 loc) · 1.99 KB

README.md

File metadata and controls

94 lines (53 loc) · 1.99 KB

1.1 - HTML Workshop

Before you dive into the workshop, be sure to have read the provided HTML-reference doc.

When creating HTML files, be sure to use proper formating. Here is a basic template.

Don't worry about styling and alignment at this point, we'll worry about that when we add CSS.

<!DOCTYPE html>
<html>
   <body>
      ...
   </body>
</html>

Exercise 1

Questions located in the exercise folder

Exercise 2

  1. Open the provided index.html file in the browser.
  2. Modify it to match the following image

exercise-2 goal

Exercise 3

Write an HTML page that matches the screenshot provided.

exercise-3 goal

Your file should have this structure:

Exercise 4

Write an HTML page that matches the following:

exercise-4 goal

If you did not find the previous exercise easy, start from scratch.

Exercise 5

Update the HTML code to match the following:

exercise-5 goal

TIOBE Index link: https://www.tiobe.com/tiobe-index/

Use target="_blank" on the <a> tag to open the link in a new tab

Exercise 6

Fix the HTML code so it renders correctly:

exercise-6 goal

Exercise 7

Create an HTML file so it matches the screenshot provided:

exercise-7 goal

Hint: use the <table> element

Use target="_blank" on the <a> tags to open the links in a new tab

Links

Exercise 8

Update the HTML file so it matches the gif provided:

exercise-8 goal

Hints

  • Use the <form> element
  • Use the <label> tag to make the text describing inputs clickable
  • Make all input elements before the Extras section required with the required attribute
  • <input type="text" required />
  • Use the <select> tag for the pickup list