Read 02 HTML Text, CSS introduction, and Basic JavaScript Instructions
HTML book
Ch.2 Text pp.40-61
- Structural Markup
- Elements that descibe both headings and paragraphs
- These include headings, paragraphs, bold & italic, superscript &subscript, white space, line breaks & horizontal rules
- Semantic markup
- Provides emphasis in a sentence, quotations, the meaning of acronyms and so on
- These include strong & emphasis, quotations, abbreviations & acronyms, citations & definitions, author details, changes to content
Ch.10 Introducing CSS pp.226-245
- CSS makes web pages more attractive
- Selector
- Which element is css applied too
- Declaration
- How the element will be styled
- Property is the aspect of the element you want to change
- value is what style is applied
- There is external CSS and internal CSS
- External CSS uses a
<link>
-Internal uses <style>
JS book
ch.2 Basic JavaScript Instructions pp.53-84
- Script stores info in variables
- You must first declare a var
var quantity
This variable is going to be called quantity
- Now you need to assign quantity a value
quantity = 3;
3 is the value
- An array is a way to store multiple values in a variable
- java script distinguishes between numbers, strings, and booleans
Expessions ecavulate into a single value and rely on operators to calculate the vlaue.
ch.4 Decisions and loops pp.145-162 (only to switch statemnets)
Decisions
These notes have been taken from Jon Duckett text books
cited below
Duckett, J.(2014). JAVASCRIPT & JQUERY , HTML&CSS
Indianapolis, IN: John Wiley & Sons, INC