Media Computation Skills Lab

MTEC 1003 - Spring 2015

Lab 13, Part 1 - HTML and CSS Review

Overview

Create Your Remote Repository

This will create a remote git repository on github.

  1. Go to your account home (github.com/username).
  2. Click on the Repositories tab.
  3. Click the green New button on the right side.
  4. Give your repository the name lab-13-remote
  5. The repository should be public (the default).
  6. Click "Initialize this repository with a README".
  7. Click Create Repository.
  8. Refresh your main GitHub page and you should see the new repository.

Cloning your repository

This will clone the repository you just created on GitHub on your local machine.

cd ~
mkdir myname
ls -al
git clone https://github.com/your_username/lab-13-remote.git
Cloning into 'lab-13-remote'...
remote: Counting ojects: 3, done.
remote: Total 3 (delta 0), reused 0 (delta 0), pack-reused 0
Receiving objects: 100% (3/3), done.
Checking connectivity... done.
cd lab-13-remote
git remote -v
origin https://github.com/your_username/lab-13-remote.git (fetch)
origin https://github.com:your_username/lab-13-remote.git (push)
# in the directory of your repository
git config user.name  "my first and last name"
git config user.email "my@email.address"
git config -l

Create a Two Page Site!

Home Page

About Page

Style Your Pages

MTEC 1003 - Media Computation Skills Lab - Spring 2015