Curriculum
Course: HTML Basic
Login

Curriculum

HTML Basic

HTML Introduction

0/1

HTML Editors

0/1

HTML Attributes

0/1

HTML Paragraphs

0/1

HTML Formatting

0/1

HTML Comments

0/1

HTML Favicon

0/1

HTML Page Title

0/1

HTML Iframes

0/1

HTML Java Script

0/1

HTML File Paths

0/1

HTML Symbols

0/1
Text lesson

HTML CSS

CSS allows for the styling and layout of web pages, enabling control over aspects such as text color and size, font styles, spacing between elements, positioning, and layout. It also facilitates the use of background images or colors, and enables tailored displays for various devices and screen sizes, among other features.

Tip: The term “cascading” indicates that a style assigned to a parent element will also be inherited by all child elements within it. Therefore, if you designate the color of the body text as “blue,” all headings, paragraphs, and other text elements within the body will similarly adopt that color (unless otherwise specified)!

Using CSS

There are three methods to incorporate CSS into HTML documents:

  • Inline: This involves utilizing the style attribute directly within HTML tags.
  • Internal: This method entails placing CSS rules within a <style> tag located in the <head> section of the HTML document.
  • External: CSS is applied by linking to an external stylesheet file through a<link> element.

While the most common practice is to maintain styles in separate, external CSS files, this tutorial will focus on inline and internal styles for simplicity and to facilitate hands-on learning.