Web Programming Foundations
Schedule Notes Resources Graded Work MyApps Instructions Cyclic Guide Code examplesThis page has information about and links to learning resources that you will use in this course.
You will need one or more devices. A College or personal desktop or laptop, and (likely) a personal mobile device (e.g. a smartphone).
Use macOS or Linux
We expect the student to do their work on a computer that runs macOS (Mac OS X), Linux, or another Unix-like operating system.
If a student has a Windows-only computer, then plan to install a multiboot or virtualization environment that enables the installation of Linux.
None. This is a web programming course therefore, the best source for content is on the web!
There are several required online resources:
The Mozilla Developer Network MDN Web Docs web site is vast, with thousands of documents. It is a trusted and authoritative source for web developer information. Of interest:
HTML5 Guide, including HTML Forms Guide, and the HTML5 Element List
JavaScript Reference
In October 2017, Microsoft, Google, and the W3C committed to making MDN Web Docs the single authoritative source for web developer documentation.
Read more about this in an article by Ali Spivak.
Others:
Bootstrap (version 3) CSS documentation
Links to other topics (e.g. Getting started, etc.) are on that page
Oh, and you should must know (and love!) the series of RFCs that describe HTTP, 7230 through 7235. If you want a friendlier introduction to HTTP, read its Wikipedia article.
Google web developers content
HTML and CSS
Start VS Code from the command line
Make sure that you’re in your project folder.
Then type this command: code .
Note: This assumes that your computer is configured to run this command. See the Running VS Code on Mac to configure that feature.
Useful keyboard shortcuts
Trigger IntelliSense: Control + Space
Toggle comments on/off: Command + /
Reformat document: Shift + Option + Command + F
Show/hide left-side bar: Command + B
Show/hide terminal: Control + (back-tick)
Markdown preview pane toggle on/off: Command + K, V
Useful Emmet snippets
For most elements, just begin typing the element name, without the angle bracket.
.
Declare class(es), e.g. div.row
#
Declare unique identifier, e.g. table#customers
>
Child, e.g. div>p
*
Multiplier, e.g. ul>li*5
( )
Grouping, often used with multiplier
+
Sibling, e.g. div>h3+p*3
{blahblah}
Text content for an element, e.g. h3{Hello, world!}
[
Custom attribute, e.g. span[data-bind
See the Emmet cheat sheet for full coverage.