HTML
Absolute filepaths
point directly to a file using a full path to its direction
Relative filepath
how to get to the file relative to the HTML file containing that link
eg. images/apple.jpg
what are the attributes to
img src=’picnic.jpg’ width=’200’/
src and width are attributes to img
b
bold text
i
italicized text
ul
unordered list
ol
ordered list
li
adds a list item to <ul> or <ol>
div
create layouts w/o a table
Input attributes
label for=” “
Captcha
In HTML, which attribute is used to specify that an input field must be filled out?
required
attribute to limit how many characters can be entered
“maxlength”
Server processing for form validation
Client processing for form validation
CSS
Padding
space inside the element, keeping its contents away from the edges
Margin
space outside the element, keeping it away from other elements
‘position’ styles
static, relative, absolute, fixed, sticky
position: static;
default value, it’s added sequentially in the site and cannot be moved
position: relative;
similar to static but can be shifted w/ TRBL values
position: absolute;