reading-notes

Reading Notes

View the Project on GitHub simon-panek/reading-notes

Code 201: Class 11 - Audio, Video, and Images


Read: HTML pp 406-427

Images inline elements by default

Read: HTML pp 476-492

SEO Search Engine Optimization

Domain Names and Hosting

FTP File Transfer Protocol

Read: JS pp 201-206

Selecting Elements by Tag Name

Repeating actions for an entire node list


var hotItems = document.querySelectorAll('li.hot');
for (var i=0; i < hotItems.length; i++){
  hotItems[i].className = 'cool';
}


Return to reading-notes Deployed Site

Return to reading-notes Mark Down