DVC WiCS Spring 2018 Project
Welcome to the repository for the Web Development project! Here you'll find all the codes and resources necessary to learn and create your own website
Before you start coding away, go to the "Getting Started" section first. To follow the lessons, just click on the lesson folder and you will see another readme like this that will walk you through the lessons.
Table of Contents
- Lesson 1: HTML, CSS, Javascript components
- Lesson 2: Bootstrap: Download and setup
- Lesson 3: More about Bootstrap
- Lesson 4: Domain Names
Create a new repository called username.github.io, where username is your username on Github. Note: If the first part of the repository doesn’t exactly match your username, it won’t work, so make sure to get it right.
add picture
Get a copy of the project on your computer:
- Download and install Git.(If you haven't already)
- Click the green "Clone or download" button at the top of the repository.
- Copy the link that showed up.
- Open a command line or terminal in the folder that you want to use.
- Type
git clone <the copied url>
.
Enter the project folder and add an index.html file:
- Type
cd
usename.github.io
to go inside the cloned folder. - Type
echo "Hello World" > index.html
- After you've made some changes, type
git add *
. - Then type
git commit -m "Initial commit"
. - Then type
git push -u origin master
.
Open your browser and navigate to https://username.github.io
- Diane Tobit (@diane27)