diff --git a/index.md b/index.md index 2a17e84..2c8df60 100644 --- a/index.md +++ b/index.md @@ -6,29 +6,6 @@ permalink: / --- # TritonHacks Web Development
Starter Kit -The following are the different callouts you can use. Reference the source code to use them. - -{: .important} -If you are more comfortable with the dark theme, press the top right icon to switch. - -{: .warning} -text holder - -{: .hint} -text holder - -{: .note} -text holder - -{: .tip} -text holder - -{: .caution} -text holder - -{: .attention} -text holder - Welcome to Triton Hacks - your gateway to coding and tech exploration! This is the starter kit for those who want to learn about web development and how we can create websites! Get set for an exciting journey through some awesome modules that'll show you everything about the internet, how websites operate, and how they're built. We'll first explain web development, the different areas of it, and then go into the nitty gritty of creating one. diff --git a/source/Example/Example.md b/source/Example/Example.md index 5c732f3..081fa3e 100644 --- a/source/Example/Example.md +++ b/source/Example/Example.md @@ -7,7 +7,7 @@ has_toc: false has_children: true --- -# Designing our Website +# Creating our Website {: .no_toc } ## Table of contents @@ -18,6 +18,7 @@ has_children: true --- +We've given you a high-level course of web development as well as a tutorial on each topic. Most of the technologies described won't be used in this web starter kit but were explained so that if you're interested, you could endeavor in it. For example, we highly recommend creating a minimal, low intense website. [Previous: RESTful](Backend/RESTful){: .float-left .v-align-text-top} [Next: Getting Started](Example/Getting Started){: .float-right .v-align-text-top} diff --git a/source/Tutorials/Getting Started.md b/source/Tutorials/Getting Started.md index 114edef..475222a 100644 --- a/source/Tutorials/Getting Started.md +++ b/source/Tutorials/Getting Started.md @@ -28,13 +28,14 @@ Once it is installed, it will look like this. ![Visual Studio Code Welcome Page](../source/assets/images/vsc_welcome_page.png) Head over to the [Python Website](https://www.python.org/downloads/) and download the latest version. -Once you get this pop up, make sure to check the second box. +Once you get this pop up, make sure to check the second box of `Add python.exe to PATH` ![Python Install](../source/assets/images/python_install.png) -After you've installed Python, you have to set your interpreter so that it uses the installed Python. To do so, press ``` CTRL + SHIFT + P ``` inside of your visual studio code and type Python: Select Interpreter and press enter. You should see an option to select the interpreter you just installed. +After you've installed Python, you have to set your interpreter so that it uses the installed Python. To do so, press ``` CTRL + SHIFT + P ``` inside of your visual studio code and type Python: Select Interpreter and press enter. You should see an option to select the interpreter you just installed. Don't worry about the other options, you should only see one. + +![Python Interpreter](../source/assets/images/interpreter.png) -![Python Interpreter](add image here later) You've just finished setting up your environment! ## Dependencies diff --git a/source/Tutorials/HTML_CSS_JS.md b/source/Tutorials/HTML_CSS_JS.md index 884aa40..2eb6bb8 100644 --- a/source/Tutorials/HTML_CSS_JS.md +++ b/source/Tutorials/HTML_CSS_JS.md @@ -15,12 +15,6 @@ has_toc: true 1. TOC {:toc} -{: .note } - -## Introduction - -Welcome to the world of Web development! Whats the website you visit the most? What browser do you use to surf with? Have you ever wondered all these websites are made, or wanted to create your own? Despite all the different content and design you see in the web, webpages are primarily be broken down to three major components, namingly HTML ("Hypertext Markup Language"), CSS ("Cascading Style Sheets") and JS ("JavaScript"). Ultimately, these are all texts that are translated to tell the computer how to structure (HTML), style (CSS), and define and implement functionality (JS). We use these three separate technologies to add each component to the website and work very closely. Whether you are builing a simple personal webpage about yourself, or a complicated web application, you will need the same three core languages. - ### HTML If we imagine the web as a house, HTML lays the foundation and blueprint of the house. Essentially its just text It consists of "tags" enclosed in angle brackets, like ````. Tags define structure and content. There are so many different types of tags, from defining lines and headings, links, forms, images and videos down to a simple text as the ones you are reading right now. These tags create a layout of the webpage. @@ -28,32 +22,7 @@ If we imagine the web as a house, HTML lays the foundation and blueprint of the - **Content Elements**: HTML offers various elements for content like headings (`

` to `

`), paragraphs (`

`), lists (`