Nothing Special   »   [go: up one dir, main page]

Day 3 Note

Download as pdf or txt
Download as pdf or txt
You are on page 1of 14

Certainly!

Here's a detailed presentation slide for teaching CSS to students using simple English:

---

**Slide 1: Title Slide**

- **Title**: Learning CSS: Making Websites Beautiful

- **Subtitle**: Cascading Style Sheets Explained

- **Your Name**: [Your Name]

- **Date**: [Presentation Date]

**Slide 2: Introduction to CSS**

- **Title**: What is CSS?

- **Content**: CSS, or Cascading Style Sheets, is like magic for web pages. It's what makes websites look
pretty and organized. Imagine it as the fashion designer for websites.

**Slide 3: Why Do We Need CSS?**

- **Title**: Why CSS Matters

- **Content**: CSS helps us separate how a website looks from what it says. It means we can change
the style without rewriting the entire page. This makes websites beautiful and easy to update.

**Slide 4: How CSS Works**

- **Title**: CSS Recipe

- **Content**: Think of CSS as a recipe with three parts:

1. **Selector**: This is like picking what you want to style (e.g., headings or buttons).

2. **Property**: These are like the ingredients (e.g., color, size, font).

3. **Value**: Values are the settings for the properties (e.g., red, 16px, Arial).

**Slide 5: Selectors**

- **Title**: Picking Elements


- **Content**: Selectors are like a magic wand for elements. You can choose elements by their name,
class, or ID. For example, `p` selects all paragraphs, `.header` selects elements with the "header" class,
and `#menu` selects the element with the ID "menu."

**Slide 6: CSS Properties and Values**

- **Title**: Styling Elements

- **Content**: CSS properties define how things look. For instance, `color` changes the text color, `font-
size` changes the text size, and `background-color` sets the background color. Values are like
instructions for these properties.

**Slide 7: How to Apply CSS**

- **Title**: Making Magic Happen

- **Content**: CSS can be applied in three ways:

1. **External CSS**: This is like having a fashion guide in a separate book (file). You link it to your
HTML.

2. **Internal CSS**: Think of this like a fashion guide on the same page. You use the `<style>` tag in the
HTML.

3. **Inline CSS**: Inline is like adding a note directly on an element using the `style` attribute.

**Slide 8: CSS Box Model**

- **Title**: The Box Model

- **Content**: Elements are like boxes with layers. The layers include content, padding, border, and
margin. Understanding these helps in arranging the layout.

**Slide 9: CSS Classes and IDs**

- **Title**: Special Tags

- **Content**: Classes and IDs are like special name tags for elements. They make it easy to style
specific items on your web page.

**Slide 10: CSS Example**

- **Title**: Let's Try It!

- **Content**: Here's a simple CSS example:


```css

/* Change text color for class "special" */

.special {

color: blue;

```

**Slide 11: CSS Comments**

- **Title**: Leaving Notes

- **Content**: Comments are like sticky notes for developers. They don't change the style but help you
remember why you did something.

**Slide 12: Summary**

- **Title**: CSS in a Nutshell

- **Content**: CSS is like a stylist for websites. It separates style from content, making it easier to make
websites beautiful and organized.

**Slide 13: Questions and Exercises**

- **Title**: Test Your Skills

- **Content**: Let's practice! Try some CSS exercises to style web pages and make them look fantastic.

**Slide 14: Resources**

- **Title**: Where to Learn More

- **Content**: Here are some websites and books where you can learn more about CSS. Knowledge is
power!

**Slide 15: Thank You**

- **Title**: Thank You!

- **Content**: Thank you for learning CSS with us today. Now you have the magic to make websites
beautiful!
<!DOCTYPE html>
<html>
<head>
</head>
<body>
<header>
<nav>
<ul>
<li>HOME</li>
<li>STORE</li>
<li>ABOUT</li>
</ul>
</nav>
<hr>
<h1>The Generics</h1>
</header>

<section>
<h2>ABOUT</h2>
<p>Lorem ipsum dolor sit amet consectetur adipisicing elit. Dicta dolorum nulla accusantium
perferendis quam explicabo odit quisquam ea natus? Saepe ducimus, minima error alias dolorum
consectetur officia architecto voluptatem iure sunt eveniet nam, recusandae explicabo, itaque vel
autem. Accusamus suscipit sit labore sed blanditiis a est rem harum expedita veritatis numquam
voluptatibus dolore voluptatum sunt repellendus explicabo, excepturi beatae perferendis. Numquam
dicta quis ipsum explicabo suscipit alias placeat, ea, vero minus ducimus voluptatibus iste repellendus
deleniti? Eos, quas! Voluptatem tempora explicabo, corrupti dolor hic iure quo, ipsum voluptates
quaerat omnis accusamus et vel, necessitatibus doloribus optio. Odio nobis ad molestias.</p>
<img src="Images/Band Members.png">
<p>Lorem ipsum dolor, sit amet consectetur adipisicing elit. Distinctio qui consequuntur aut.
Nobis debitis ipsum soluta sit itaque officiis impedit maiores suscipit magni id harum consequuntur quas
delectus culpa, saepe nostrum, autem ullam! Assumenda molestiae reprehenderit sunt ducimus id
saepe porro vitae asperiores eum accusantium? Illum aliquid excepturi magni quos.</p>
</section>

<footer>
<h3>The Generics</h3>
<ul>
<li><img src="Images/YouTube Logo.png"></li>
<li><img src="Images/Spotify Logo.png"></li>
<li><img src="Images/Facebook Logo.png"></li>
</ul>
</footer>
</body>
</html>
V2

<!DOCTYPE html>
<html>
<head>
<title>The Generics | About</title>
<meta name="description" content="This is the description">
</head>
<body>
<header>
<nav>
<ul>
<li>HOME</li>
<li>STORE</li>
<li>ABOUT</li>
</ul>
</nav>
<hr>
<h1>The Generics</h1>
</header>

<section>
<h2>ABOUT</h2>
<p>Lorem ipsum dolor sit amet consectetur adipisicing elit. Dicta dolorum nulla accusantium
perferendis quam explicabo odit quisquam ea natus? Saepe ducimus, minima error alias dolorum
consectetur officia architecto voluptatem iure sunt eveniet nam, recusandae explicabo, itaque vel
autem. Accusamus suscipit sit labore sed blanditiis a est rem harum expedita veritatis numquam
voluptatibus dolore voluptatum sunt repellendus explicabo, excepturi beatae perferendis. Numquam
dicta quis ipsum explicabo suscipit alias placeat, ea, vero minus ducimus voluptatibus iste repellendus
deleniti? Eos, quas! Voluptatem tempora explicabo, corrupti dolor hic iure quo, ipsum voluptates
quaerat omnis accusamus et vel, necessitatibus doloribus optio. Odio nobis ad molestias.</p>
<img src="Images/Band Members.png">
<p>Lorem ipsum dolor, sit amet consectetur adipisicing elit. Distinctio qui consequuntur aut.
Nobis debitis ipsum soluta sit itaque officiis impedit maiores suscipit magni id harum consequuntur quas
delectus culpa, saepe nostrum, autem ullam! Assumenda molestiae reprehenderit sunt ducimus id
saepe porro vitae asperiores eum accusantium? Illum aliquid excepturi magni quos.</p>
</section>

<footer>
<h3>The Generics</h3>
<ul>
<li><img src="Images/YouTube Logo.png"></li>
<li><img src="Images/Spotify Logo.png"></li>
<li><img src="Images/Facebook Logo.png"></li>
</ul>
</footer>
</body>
</html>
<!DOCTYPE html>
<html>
<head>
<title>The Generics</title>
<meta name="description" content="This is the description">
</head>
<body>
<header>
<nav>
<ul>
<li>HOME</li>
<li>STORE</li>
<li>ABOUT</li>
</ul>
</nav>
<hr>
<h1>The Generics</h1>
<button type="button">Get our Latest Album</button>
<br>
<br>
<!-- TODO: Find a suitable background image -->
<button type="button">&#9658;</button>
</header>
<section>
<h2>TOURS</h2>
<div>
<div>
<strong>JUL 16</strong>
&lt;&gt;
<span>DETROIT, MI</span>
&lt;&gt;
<span>DTE ENERGY MUSIC THEATRE</span>
&lt;&gt;
<button type="button">BUY TICKETS</button>
<hr>
</div>
<div>
<strong>JUL 19</strong>
&lt;&gt;
<span>TORONTO, ON</span>
&lt;&gt;
<span>BUDWEISER STAGE</span>
&lt;&gt;
<button type="button">BUY TICKETS</button>
<hr>
</div>
<div>
<strong>JUL 22</strong>
&lt;&gt;
<span>BRISTOW, VA</span>
&lt;&gt;
<span>JIGGY LUBE LIVE</span>
&lt;&gt;
<button type="button">BUY TICKETS</button>
<hr>
</div>
<div>
<strong>JUL 29</strong>
&lt;&gt;
<span>PHOENIX, AZ</span>
&lt;&gt;
<span>AK-CHIN PAVILION</span>
&lt;&gt;
<button type="button">BUY TICKETS</button>
<hr>
</div>
<div>
<strong>AUG 2</strong>
&lt;&gt;
<span>LAS VEGAS, NV</span>
&lt;&gt;
<span>T-MOBILE ARENA</span>
&lt;&gt;
<button type="button">BUY TICKETS</button>
<hr>
</div>
<div>
<strong>AUG 7</strong>
&lt;&gt;
<span>CONCORD, CA</span>
&lt;&gt;
<span>CONCORD PAVILION</span>
&lt;&gt;
<button type="button">BUY TICKETS</button>
</div>
</div>
</section>
<footer>
<h3>The Generics</h3>
<ul>
<li><img src="Images/YouTube Logo.png"></li>
<li><img src="Images/Spotify Logo.png"></li>
<li><img src="Images/Facebook Logo.png"></li>
</ul>
</footer>
</body>
</html>
V3
<!DOCTYPE html>
<html>
<head>
<title>The Generics | About</title>
<meta name="description" content="This is the description">
</head>
<body>
<header>
<nav>
<ul>
<li><a href="index.html">HOME</a></li>
<li><a href="store.html">STORE</a></li>
<li><a href="about.html">ABOUT</a></li>
</ul>
</nav>
<hr>
<h1>The Generics</h1>
</header>

<section>
<h2>ABOUT</h2>
<p>Lorem ipsum dolor sit amet consectetur adipisicing elit. Dicta dolorum nulla accusantium
perferendis quam explicabo odit quisquam ea natus? Saepe ducimus, minima error alias dolorum
consectetur officia architecto voluptatem iure sunt eveniet nam, recusandae explicabo, itaque vel
autem. Accusamus suscipit sit labore sed blanditiis a est rem harum expedita veritatis numquam
voluptatibus dolore voluptatum sunt repellendus explicabo, excepturi beatae perferendis. Numquam
dicta quis ipsum explicabo suscipit alias placeat, ea, vero minus ducimus voluptatibus iste repellendus
deleniti? Eos, quas! Voluptatem tempora explicabo, corrupti dolor hic iure quo, ipsum voluptates
quaerat omnis accusamus et vel, necessitatibus doloribus optio. Odio nobis ad molestias.</p>
<img src="Images/Band Members.png">
<p>Lorem ipsum dolor, sit amet consectetur adipisicing elit. Distinctio qui consequuntur aut.
Nobis debitis ipsum soluta sit itaque officiis impedit maiores suscipit magni id harum consequuntur quas
delectus culpa, saepe nostrum, autem ullam! Assumenda molestiae reprehenderit sunt ducimus id
saepe porro vitae asperiores eum accusantium? Illum aliquid excepturi magni quos.</p>
</section>

<footer>
<h3>The Generics</h3>
<ul>
<li>
<a href="https://www.youtube.com" target="_blank">
<img src="Images/YouTube Logo.png">
</a>
</li>
<li>
<a href="https://www.spotify.com" target="_blank">
<img src="Images/Spotify Logo.png">
</a>
</li>
<li>
<a href="https://www.facebook.com" target="_blank">
<img src="Images/Facebook Logo.png">
</a>
</li>
</ul>
</footer>
</body>
</html>
<!DOCTYPE html>
<html>
<head>
<title>The Generics</title>
<meta name="description" content="This is the description">
</head>
<body>
<header>
<nav>
<ul>
<li><a href="index.html">HOME</a></li>
<li><a href="store.html">STORE</a></li>
<li><a href="about.html">ABOUT</a></li>
</ul>
</nav>
<hr>
<h1>The Generics</h1>
<button type="button">Get our Latest Album</button>
<br>
<br>
<!-- TODO: Find a suitable background image -->
<button type="button">&#9658;</button>
</header>
<section>
<h2>TOURS</h2>
<div>
<div>
<strong>JUL 16</strong>
&lt;&gt;
<span>DETROIT, MI</span>
&lt;&gt;
<span>DTE ENERGY MUSIC THEATRE</span>
&lt;&gt;
<button type="button">BUY TICKETS</button>
<hr>
</div>
<div>
<strong>JUL 19</strong>
&lt;&gt;
<span>TORONTO, ON</span>
&lt;&gt;
<span>BUDWEISER STAGE</span>
&lt;&gt;
<button type="button">BUY TICKETS</button>
<hr>
</div>
<div>
<strong>JUL 22</strong>
&lt;&gt;
<span>BRISTOW, VA</span>
&lt;&gt;
<span>JIGGY LUBE LIVE</span>
&lt;&gt;
<button type="button">BUY TICKETS</button>
<hr>
</div>
<div>
<strong>JUL 29</strong>
&lt;&gt;
<span>PHOENIX, AZ</span>
&lt;&gt;
<span>AK-CHIN PAVILION</span>
&lt;&gt;
<button type="button">BUY TICKETS</button>
<hr>
</div>
<div>
<strong>AUG 2</strong>
&lt;&gt;
<span>LAS VEGAS, NV</span>
&lt;&gt;
<span>T-MOBILE ARENA</span>
&lt;&gt;
<button type="button">BUY TICKETS</button>
<hr>
</div>
<div>
<strong>AUG 7</strong>
&lt;&gt;
<span>CONCORD, CA</span>
&lt;&gt;
<span>CONCORD PAVILION</span>
&lt;&gt;
<button type="button">BUY TICKETS</button>
</div>
</div>
</section>
<footer>
<h3>The Generics</h3>
<ul>
<li>
<a href="https://www.youtube.com" target="_blank">
<img src="Images/YouTube Logo.png">
</a>
</li>
<li>
<a href="https://www.spotify.com" target="_blank">
<img src="Images/Spotify Logo.png">
</a>
</li>
<li>
<a href="https://www.facebook.com" target="_blank">
<img src="Images/Facebook Logo.png">
</a>
</li>
</ul>
</footer>
</body>
</html>
<!DOCTYPE html>
<html>
<head>
<title>The Generics | Store</title>
<meta name="description" content="This is the description">
</head>
<body>
<header>
<nav>
<ul>
<li><a href="index.html">HOME</a></li>
<li><a href="store.html">STORE</a></li>
<li><a href="about.html">ABOUT</a></li>
</ul>
</nav>
<hr>
<h1>The Generics</h1>
</header>
<section>
<h2>MUSIC</h2>
<div>
<div>
<strong>Album 1</strong>
</div>
<img src="Images/Album 1.png">
<div>
<span>$12.99</span>
<button type="button">ADD TO CART</button>
</div>
</div>
<div>
<div>
<strong>Album 2</strong>
</div>
<img src="Images/Album 2.png">
<div>
<span>$14.99</span>
<button type="button">ADD TO CART</button>
</div>
</div>
<div>
<div>
<strong>Album 3</strong>
</div>
<img src="Images/Album 3.png">
<div>
<span>$9.99</span>
<button type="button">ADD TO CART</button>
</div>
</div>
<div>
<div>
<strong>Album 4</strong>
</div>
<img src="Images/Album 4.png">
<div>
<span>$19.99</span>
<button type="button">ADD TO CART</button>
</div>
</div>
</section>
<section>
<h2>MERCH</h2>
<div>
<div>
<strong>T-Shirt</strong>
</div>
<img src="Images/Shirt.png">
<div>
<span>$19.99</span>
<button type="button">ADD TO CART</button>
</div>
</div>
<div>
<div>
<strong>Cofee Cup</strong>
</div>
<img src="Images/Cofee.png">
<div>
<span>$6.99</span>
<button type="button">ADD TO CART</button>
</div>
</div>
</section>
<section>
<h2>CART</h2>
<div>
<strong>ITEM</strong>
&lt;&gt;
<strong>PRICE</strong>
&lt;&gt;
<strong>QUANTITY</strong>
</div>
<div>
<img src="Images/Shirt.png" width="100" height="100">
<span>T-Shirt</span>
&lt;&gt;
<span>$19.99</span>
&lt;&gt;
<input type="number" value="1">
<button type="button">REMOVE</button>
</div>
<div>
<img src="Images/Album 3.png" width="100" height="100">
<span>Album 3</span>
&lt;&gt;
<span>$9.99</span>
&lt;&gt;
<input type="number" value="2">
<button type="button">REMOVE</button>
</div>
<hr>
<div>
<strong>Total</strong>
<span>$39.97</span>
</div>
<div>
<button type="button">PURCHASE</button>
</div>
</section>
<footer>
<h3>The Generics</h3>
<ul>
<li>
<a href="https://www.youtube.com" target="_blank">
<img src="Images/YouTube Logo.png">
</a>
</li>
<li>
<a href="https://www.spotify.com" target="_blank">
<img src="Images/Spotify Logo.png">
</a>
</li>
<li>
<a href="https://www.facebook.com" target="_blank">
<img src="Images/Facebook Logo.png">
</a>
</li>
</ul>
</footer>
</body>
</html>

You might also like