HTML Text Fundamentals
HTML Advanced Text Formatting
How CSS is Structured
JavaScript Basics
Making Decisions in Your Code - Conditionals
It makes the HTML more comprehensible by better defining the different sections and layout of web pages.
6 h1-h6
sup = Superscript.
sub = Subscript
you might need these for marking up items like dates and mathermatical equations so they have the correct meaning.
title=”xxx”
- by linking a .css file
- inline using style
For sites with more than one page, an internal stylesheet becomes a less efficient way of working. To apply uniform CSS styling to multiple pages using internal stylesheets, you must have an internal stylesheet in every web page that will use the styling. The efficiency penalty carries over to site maintenance too. With CSS in internal stylesheets, there is the risk that even one simple styling change may require edits to multiple web pages.
h2
color and padding
black and 5px h2 {
color: black;
padding: 5px;
}JS
string
- Addition +
- Subtraction -
- Multiplication *
- Division /
- Strict equality ===
Packing a lunch box everyday! I could create a function called makeLunch and it would run and make it for me without me having to do more work!
condition and if it has been met the
if we want to have multiple outcomes based of other information
- === and !== test if one calue is identical to another or is NOT identical
- < and > test if one value is lesser or greater than another
- <= and >= tests if one value is less than or equal to OR is great than or equal to another
&& = and this must be true
|| = either/or this is true