├── .gitignore
├── LICENSE
├── README.md
├── contact.html
├── favicon.ico
├── images
├── apple-pie.png
├── background.png
├── banner.png
├── cherry-pie.png
└── logo.png
├── index.html
├── order.html
├── pies.html
├── resources.md
└── site.css
/.gitignore:
--------------------------------------------------------------------------------
1 | .vscode
--------------------------------------------------------------------------------
/LICENSE:
--------------------------------------------------------------------------------
1 | MIT License
2 |
3 | Copyright (c) 2020 Craig Shoemaker
4 |
5 | Permission is hereby granted, free of charge, to any person obtaining a copy
6 | of this software and associated documentation files (the "Software"), to deal
7 | in the Software without restriction, including without limitation the rights
8 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9 | copies of the Software, and to permit persons to whom the Software is
10 | furnished to do so, subject to the following conditions:
11 |
12 | The above copyright notice and this permission notice shall be included in all
13 | copies or substantial portions of the Software.
14 |
15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21 | SOFTWARE.
22 |
--------------------------------------------------------------------------------
/README.md:
--------------------------------------------------------------------------------
1 | # Building Websites With HTML, CSS, and JavaScript: Getting Started
2 |
3 | ## Tools
4 |
5 | The following tools help make easier to work with sample code.
6 |
7 | - [git](https://git-scm.com/downloads): A tool for managing source code
8 | - [Visual Studio Code](https://code.visualstudio.com/): A source code editor
9 | - [Live Server](https://marketplace.visualstudio.com/items?itemName=ritwickdey.LiveServer): A simple web server utility for Visual Studio Code
10 | - [Echo Post](https://github.com/craigshoemaker/echo-post): A simple Node.js server utility that displays post data.
11 |
12 | ## Setup
13 |
14 | If you installed git you can clone the code to your machine, or download a ZIP of all the files directly.
15 |
16 | [Download the ZIP from this location](https://github.com/craigshoemaker/html-css-javascript-getting-started/archive/master.zip), or run the following [git](https://git-scm.com/downloads) command to clone the files to your machine:
17 |
18 | ```bash
19 | git clone https://github.com/craigshoemaker/html-css-javascript-getting-started
20 | ```
21 |
22 | - Once the files are on your machine, open the _html-css-javascript-getting-started_ folder in [Visual Studio Code](https://code.visualstudio.com/).
23 |
24 | - With the files open in Visual Studio Code, press the **Go Live** button at the bottom of the window to launch the files with [Live Server](https://marketplace.visualstudio.com/items?itemName=ritwickdey.LiveServer).
25 |
26 | ## Resources
27 |
28 | A list of links to resources used throughout this course is available on the [Resources](resources.md) page.
29 |
--------------------------------------------------------------------------------
/contact.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
42 | From pecan to plum, our pies are are made in with the warmth and
43 | tradition of home. Take a moment to
44 | browse our pies and see which of our
45 | delectable desserts are soon to arrive on your doorstep.
46 |