Difference between revisions of "CS47"

From Coder Merlin
Line 1: Line 1:
= Intro to CSS =
= Intro to CSS =
==== First off, what does CSS stand for? ====
==== First off, what does CSS stand for? ====
CSS stands for Cascading style sheets, all that means is CSS will allow you to design and make your website unique. An example is changing the background color, or how BIG or small your text is
CSS stands for Cascading style sheets, all that means is CSS will allow you to design and make your website unique. An example is changing the background color, or how BIG or small your text is.
==== Let's start with the phrase "<style>" ====
==== Let's start with the phrase "<style>" ====
So to even start with CSS you need to put the <style> phrase. This tells the computer when it should start reading for its own CSS changes. for example, if your code looked like this:
So to even start with CSS you need to put the <style> phrase. This tells the computer when it should start reading for its own CSS changes. for example, if your code looked like this:
<br>
 
p{color: #fffff }
<p> Hello, World! </p>
 
The computer would not understand what you want. But if you put <style> it's like a START HERE button or the first page of a book.

Revision as of 16:06, 20 January 2023

Within these castle walls be forged Mavens of Computer Science ...
— Merlin, The Coder

Intro to CSS[edit]

First off, what does CSS stand for?[edit]

CSS stands for Cascading style sheets, all that means is CSS will allow you to design and make your website unique. An example is changing the background color, or how BIG or small your text is.

Let's start with the phrase "<style>"[edit]

So to even start with CSS you need to put the <style> phrase. This tells the computer when it should start reading for its own CSS changes. for example, if your code looked like this:

p{color: #fffff }

Hello, World!

The computer would not understand what you want. But if you put <style> it's like a START HERE button or the first page of a book.