Lecture 4: HTML Boilerplate code, File path, Div, Class, ID

  1. File Path System
  2. Boilerplate Code
  3. Multi-Page Websites
  4. <div>, id, and class

Example:

<div id="main-header">Welcome!</div> <div class="profile-card">Profile 1</div> <div class="profile-card">Profile 2</div> In CSS: #main-header { background: black; color: white; } .profile-card { border: 1px solid gray; padding: 10px; }