Chapter 7: CSS Units of Length

A Complete Frontend Developer Textbook for Beginners (2023 Edition)

Thon Ly
Silicon Wat University

--

This is the textbook version of Lesson 7 of 100 from the Udemy video course: A Complete Frontend Developer Course for Beginners

Chapter 6: HTML Sectioning Tags

Table of Contents

Overview

This lesson covers the following HTML tags, CSS properties, and JavaScript commands for the first time:

HTML

None.

CSS

  1. width
  2. height

JS

None.

This lesson begins with this Codepen. Code along with me to increase retention!

Lecture

In the last lesson, we learned how to use semantic tags to organize our content.

HTML Window:<html>
<head></head>
<body>
<header></header>
<main></main>
<footer></footer>
</body>
</html>

In this lesson, we learn how to add dimensions to those tags using CSS code and make them appear in the UI window.

tags: dimensions => UI Window

--

--