Presentation1.pptx gely and sandy

Published on
Embed video
Share video
Ask about this video

Scene 1 (0s)

[Audio] CSS Cascading Style Sheets ICT: Website Creation Prepared by: Angelyn Vicente Sandro Peralta March 6 2026.

Scene 2 (13s)

[Audio] Activity: Website Comparison. Activity: Website Comparison.

Scene 3 (22s)

[Audio] Guide Questions: 1. Which website do you prefer to look at? 2. Why does the second website look more attractive? 3. What do you think is used to design or style a website?.

Scene 4 (36s)

[Audio] Learning Objectives At the end of the lesson, students will be able to: Define CSS and its purpose in web design. Identify the basic structure of CSS syntax (selector, property, value). Differentiate the three types of CSS: Inline, Internal, and External. Apply basic CSS styles to an HTML example..

Scene 5 (1m 1s)

[Audio] What is CSS? CSS stands for Cascading Style Sheets. - It is used to design and format web pages written in HTML. - It controls colors, fonts, spacing, and layout..

Scene 6 (1m 15s)

[Audio] Why Do We Use CSS? - Adds colors to text and backgrounds - Changes fonts and text sizes - Controls layout and spacing - Improves the appearance of websites - Makes websites responsive.

Scene 7 (1m 29s)

[Audio] Basic CSS Syntax CSS works with selectors and declarations. Structure: selector Example p Explanation: p → selector (targets paragraph elements) color → property blue → value font-size → property 18px → value This code makes all paragraphs blue and 18 pixels in size..

Scene 8 (2m 0s)

[Audio] HTML with CSS Example <!DOCTYPE html> h1 p Welcome to My Website This is a paragraph styled using CSS. Output: The heading appears red and centered The paragraph text appears green with size 16px -The heading becomes centered and colored. - The paragraph text changes size and color..

Scene 9 (2m 26s)

[Audio] Types of CSS Inline CSS – applied inside an HTML element Hello Internal CSS – placed inside the tag in the section. External CSS – stored in a separate .css file and linked to HTML. Example:.

Scene 10 (2m 49s)

[Audio] Internal CSS Example Internal CSS is CSS written inside the tag in the section of an HTML document. It is used to style a single web page..

Scene 11 (3m 6s)

[Audio] Example 1: Basic Internal CSS <!DOCTYPE html> body h1 p My First Internal CSS Page This paragraph is styled using internal CSS..

Scene 12 (3m 21s)

[Audio] External CSS Example External CSS is a separate CSS file used to style one or more web pages written in HTML. The CSS code is saved in a .css file and linked to the HTML file. This method is commonly used because it allows multiple web pages to share the same design. ________________________________________.

Scene 13 (3m 45s)

[Audio] Step 2: Create the HTML File <!DOCTYPE html> External CSS Example Welcome to My Website This paragraph is styled using external CSS. Step 1: Create the CSS File (style.css) body h1 p.