Media Computation Skills Lab

MTEC 1003 - Spring 2015

Lab 12, Part 1 - HTML

In this lab, you’ll be:

  1. Creating a repository on the GitHub website
  2. Cloning the repository on your local machine
  3. Associating a name and email address with your local repository
  4. Editing the README file in your local repository
  5. creating an html page

Instructions

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-12-html
  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-12-html.git
Cloning into 'lab-12-html'...
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-12-html
git remote -v
origin https://github.com/your_username/lab-12-html.git (fetch)
origin https://github.com/your_username/lab-12-html.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 an HTML Page!

Basic Structure

Paragraphs and Headings

Images and Tables

Submit Your Work Through GitHub

MTEC 1003 - Media Computation Skills Lab - Spring 2015