Some Ground Rules and Overview of Setup - jpjohnsonjr/learning-notes GitHub Wiki

Structure of folder

Terminal command pwd will list out the current directory. Contains in this case:

css fonts index.html js

Browser-sync

To review, the command to start browser-sync is:

browser-sync start --server --directory --files "*"

The URL http://localhost:3000 will serve the website in the browser. The URL http://localhost:3001 will display the UI of browser-sync.

Fonts

Findable at Google Fonts

Can link fonts directly to a webpage fro Google through syntax such as this:

<link href="https://fonts.googleapis.com/css?family=Oxygen:400,300,700" 
rel="stylesheet" type="text/css">