Welcome to our free HTML tutorial. This tutorial is based on Webucator's Introduction to HTML Training course.
In this exercise, you will create an HTML page from scratch. It should look like the page in the picture below:
Use special characters instead of the dashes to make more interesting bullets. Try •
<!DOCTYPE HTML> <html lang="en"> <head> <meta charset="UTF-8"> <title>Runners Home™</title> </head> <body> <div>Home | Races | Resources | Calculator | Running Log | My Account | Log out</div> <p>Hello, Stranger!</p> <h1>Welcome to Runners Home™</h1> <p> Runners Home™ is dedicated to providing you with:<br> - the most up-to-date information on running races.<br> - the best resources for runners. </p> <hr> <p>© 2018 Runners Home. All rights reserved.</p> </body> </html>
<!DOCTYPE HTML> <html lang="en"> <head> <meta charset="UTF-8"> <title>Runners Home™</title> </head> <body> <div>Home | Races | Resources | Calculator | Running Log | My Account | Log out</div> <p>Hello, Stranger!</p> <h1>Welcome to Runners Home™</h1> <p> Runners Home™ is dedicated to providing you with:<br> • the most up-to-date information on running races.<br> • the best resources for runners. </p> <hr> <p>© 2018 Runners Home. All rights reserved.</p> </body> </html>
This tutorial is based on Webucator's Introduction to HTML Training Course. We also offer many other HTML Training courses. Sign up today to get help from a live instructor.