CS47

From Coder Merlin
Revision as of 18:16, 25 January 2023 by Joshua-vigel (talk | contribs) (Joshua-vigel moved page CS48 to CS47: We are merging all the pages down)
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.