Class 02 – 2016-09-20: Git, HTML, and CSS.

New problem set ps-02

Omissions from last week:

Check on reading:

Questions and review problem set:

Git wrapup:

Critical git concepts & terms:

More git concepts & ideas:

Git magic:

Where to go for help:

Static site hosting:

We can easily deploy static websites using github pages. There are other free / easy web publishing platforms too:

The web: HTML and CSS:

A sample document

<!DOCTYPE html>
<html>
  <head>
    <meta charset="UTF-8">
    <title>title</title>
    <meta name="author" content="name">
    <meta name="description" content="description here">
    <meta name="keywords" content="keywords,here">
    <link rel="stylesheet" href="path/to/stylesheet.css" type="text/css">
    <script type="text/javascript" src="path/to/script1.js" defer></script>
  </head>
  <body>
    <img src="../img/favicon-32x32.png" alt="favicon" />
    <h1> This is a heading </h1>
    <div class='main-content' id='body1'>
      <p class='lead'> First paragraph. </p>
    </div>
  </body>
</html>

HTML Tags and the DOM.

Related reading and notes from MDN

CSS

Related reading and notes from MDN. See also Code Pen

Online CSS Tools & resources:

Tools to install

Atom packages to install:

Required

Stretch:
Lets Build a web page.