Read 02-Duckett HTML book
Chapter 2: Text(pp.40-61)
add tags known as "markups" to the contyects of the page
structual markup-elements used to discribe headings and paragraphs
semantic markup-extra info (emphasis, quotations, meanings)
headings:`<h1> - <h6>` displays largest to smallest
paragraphs `<p>` browser will show each paragraph on each line
HTML elements are used to discribe the structure of the page
Chapter 10:Introducing CSS(pp.226-245)
CSS allows you to create rules that specify how the content of an element shoiuld appear
css associates style rules with HTML elements
css properties affect how elements are displayed
External CSS <link>
internal CSS <style>
Different types of selectors allow you to target your rules at different elements
Read 02-Duckett JS book
Chapter 2: Basic JS instruction(pp.53-84)
series of instructions that a computer can follow one by one.
each individual intruction or step is known as a statement
statements should end with a semicolon
should write comments to explain what your code does.
before you can use a variable. you need to announce (declare) that you want to use it.
PP.62 eplains numeric data types, string data types, boolean date types
Array is a type of variable that stores a list of values.
Chapter 4: Decisions and Loops(pp.145-162)
condidtional statements allow your code to make decisions about what to do next
comparrison operators (===, !==, ==, !=, <,>,<=,=>) are used to compare two operands
logical operators allow you to combine more than one set of comparison operators
if...else statemnts allow you to run one set of code if a condition is true, and another if it is false
Things I want to know more about
-I want to be able to hear and name of a varible and know exactly what it does
-I want to be proficient in JS