GD with GDDEMOLAND BookCheatsheet Chapter 2 of 3CSS
All chapters
Chapter 2

CSS

CSS (Cascading Style Sheets) styles websites to make them pretty.

Select a demo

2.1Adding CSS to a file using the <style> element 2.2CSS classes 2.3Inline CSS using style="" 2.4Inheritence and specificity 2.5The box model 2.6The position property 2.7Units 2.8Colors 2.9Styling text 2.10Importing fonts 2.11Basic interactivity using :hover and :active states 2.12Animation using @keyframes 2.13Flexbox 2.14Grid 2.15Responsive design using @media queries
All Books
What Is DEMOLAND?
Tutorial
Coding Cheatsheet
Start a new file
More from GD with GD
Current bookCheatsheet
All books
Web DocumentationCheatsheet
Websites are made of three programming languages: HTML, CSS, and JavaScript. Let’s break down what makes each language special!
Chapter 1
HTML
HTML (HyperText Markup Language) organizes a website’s content.
1.1Elements1.2Attributes1.3Block vs. Inline Elements1.4Typography1.5Hyperlinks1.6Anchor Links1.7Media1.8Tables1.9Forms1.10Document Structure
Chapter 2
CSS
CSS (Cascading Style Sheets) styles websites to make them pretty.
2.1Adding CSS to a file using the <style> element2.2CSS classes2.3Inline CSS using style=""2.4Inheritence and specificity2.5The box model2.6The position property2.7Units2.8Colors2.9Styling text2.10Importing fonts2.11Basic interactivity using :hover and :active states2.12Animation using @keyframes2.13Flexbox2.14Grid2.15Responsive design using @media queries
Chapter 3
JavaScript
JavaScript (JS) empowers websites with deeper functionality.
3.1Adding JavaScript to a file using the <script> element3.2Defining variables with let and const3.3Operations (+, -, <, >, and more)3.4Conditional logic using if...then statements3.5Randomization using Math.random()3.6Functions3.7Loops3.8The Document Object Model (DOM)3.9Events