TEXTs
*

CSS
CSS works by associating rules with HTML elements. These rules govern how the content of specified elements should be displayed. A CSS rule contains two parts: a selector and a declaration.
CSS declarations sit inside curly brackets and each is made up of two parts: a property and a value, separated by a colon. You can specify several properties in one declaration, each separated by a semi-colon.
Using External CSS

Using Internal CSS *ou can also include CSS rules within an HTML page by placing them inside a

JavaScript basics
JavaScript is a programming language that adds interactivity to your website. This happens in games, in the behavior of responses when buttons are pressed or with data entry on forms; with dynamic styling; with animation, etc. This article helps you get started with JavaScript and furthers your understanding of what is possible.
STATEMENTS A script is a series of instructions that a computer can follow one-by-one. Each individual instruction or step is known as a statement. Statements should end with a semicolon.
COMMENTS
You should write comments to explain what your code does.They help make your code easier to read and understand.This can help you and others who read your code.
Variabels
A script will have to temporarily store the bits of information it needs to do its job. It can store this data in variables
Data Types
JavaScript distinguishes between numbers, strings, and true or false values known as Booleans.
Rules of naming variables
Arrays
An array is a special type of variable. It doesn’t just store one value; it stores a list of values.
Values in Arrays
Values in an array are accessed as if they are in a numbered list. It is important to know that the numbering of this list starts at zero (not one).
EXPRESSIONS
An expression evaluates into (results in) a single value. Broadly speaking there are two types of expressions.
OPERATORS


Decision & Loops
Looking at a flowchart (for all but the most basic scripts),the code can take more than one path, which means the browser runs different code in different situations. In this chapter, you will learn how to create and control the flow of data in your scripts to handle different situations. (EVALUATIONS,DECISIONS,LOOPS)
.jpeg)
If Statments
The if statement evaluates (or checks)a condition, if the condition evaluates to true, any statement in the subsequent code block are executed

IF…Else Statements
The if…else statement checks a condition if it resolve to true the first code block is executed,if the condition resolves to false the second code block is run instead

Switch Statements
A Switch statement starts with a variable called the Switch value , each case indicate a possible value for this variable and the code that should run if the variable matches that value.
