#CodeTrotters Introduction to Web Design, Example
This is an example page for a fictional website called WorldOfPuppies.com
Your task is to based on the screenshot and html provided recreate the design as closed as posible.
##About this Repo
In this repo we will find the html of the worldofpuppies
- index.html the main hml file for the website
- screenshot.png the desired output
- css/ the folder where our css lives
- img/ the images used on the website
##Running the BrowserSync
Browser sync is a development webserver that will monitor changes in your files and automatically refresh your web browser for you.
To set it up follow this steps
-
Install Node from https://nodejs.org/
-
Install Git from https://git-scm.com/
-
Fork this repository on github
-
Download the repo to the computer
Windows Windows users will have to run this commands on the git bash terminal
MacOs MacOs users will have to run this commands on the Terminal.app
-
Create a folder for the repository
mkdir ~/worldofpuppies cd ~/worldofpuppies
-
Git clone the repository, use the repository
git clone https://github.com/YOURUSERNAME/worldofpuppies ~/worldofpuppies
-
-
Install BrowserSync
npm install -g browser-sync
-
Once Browsersync is installed you can begin using it by running
browser-sync start --server --files='**/*.*'