home

HTML Activity Time

Open your site in your text editor

In the very beginning of the class, we downloaded our site from Neocities. Open it up in VSCode, get the Live Preview running, and make sure you can edit your index.html

Add some content on your home page

  1. Your name as the first heading of your page
  2. A paragraph welcoming the user to your page, and why you like the personal web
  3. An unordered list of things you like to do
  4. An ordered list of 5 of your favorite books/movies/shows/songs/etc you like right now. Don't worry, you don't have to put them in any particular order.
  5. A picture of you or something that represents you! No external linking.

Basic HTML Page Template


<!DOCTYPE html>
<html>
  <head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>PAGE TITLE HERE</title>
  </head>
  <body>
  <!-- Rest of Your HTML here -->

  </body>
</html>
    

Time: 20 minutes