2023 Web Development Bootcamp: Personal Website -- Day 2

 Today is day 2 of the 2023 Web Development Bootcamp.  Today's topic is building a personal website.


HTML Boilerplate

exercise #1: Type out boilerplate code

<! DOCTYPE html>

<html lang = "en">

      <head>

           <meta charset = "UTF-8">

            <title> Real Madrid Fan Page</title>

    </head>

    <body>

            <h1> Real Madrid Rules: World Champions</h1>

    </body>

</html>


Of course this is  a lot easier with VS Code:





Structure Text in HTML

Note: Use emphasis tag <em> rather than italic tag <i>

Note: Use strong tag <strong> rather than bold <b>





HTML Lists

Tags: <ul>, <ol>, <li>











Comments

Popular posts from this blog

Space Wars- Python 3

Maze Game in Python using Turtle