|
1 |
| -# HTML-CSS and Command Line |
| 1 | +> If you are following the HackYourFuture curriculum we recommend you to first take a look at the complete curriculum, which you can find [here](https://www.github.com/curriculum). |
2 | 2 |
|
3 |
| -## Introduction |
| 3 | +> Please help us improve and share your feedback! If you find better tutorials or links, please share them by [opening a pull request](https://github.com/HackYourFuture/HTML-CSS/pulls). |
4 | 4 |
|
5 |
| -In this module you will learn HTML and CSS. HTML is the language in which you define the structure of the content of your pages (e.g. headings, paragraphs, links and images). CSS is used to write down how everything should look (e.g. font sizes, colors and positions). While learning the basics of these two languages, you will also get familiar with text editors and the developer tools of your browser. |
| 5 | +# Module #1 - HTML, CSS and GIT (Frontend) |
6 | 6 |
|
7 |
| -We will focus on _responsive_ web development : you will learn how to make your website adapt to the size of the screen, using the _mobile first_ approach. As well as the _accessibility_ part of it, by adopting ARIA (Accessible Rich Internet Applications) as part of our dicipline. ARIA defines ways to make Web content and Web applications (especially those developed with Ajax and JavaScript) more accessible to people with disabilities. Last but not least we will spend time practicing some soft skills that are important for becoming a good developer. These include: presenting and explaining your work, and finding documentation on the web. |
| 7 | + |
8 | 8 |
|
9 |
| -## Command line |
| 9 | +Welcome to the wonderful world of web development! In this module you will learn the basic building blocks of the web: HTML and CSS. HTML gives us the power to add text, images and videos to a page. CSS gives us the power to organize these parts and make it look nice. |
10 | 10 |
|
11 |
| -The command line (cli, shell) is the interface between you (the user) and the operating system which interprets your commands and allows the computer to respond to your command. In this module you will be introduced to the command line, in this module we will mainly use it to navigate our file system and creating files. Throughout the entire program you will have to use these skills and build on top of it. |
| 11 | +The products of HTML and CSS comprise a two-thirds of what is called `frontend` (the final third is client-side JavaScript, which you will learn about in later modules). What is frontend? It's another word for the presentational part of a piece of software. In terms of web development we're talking about "what you see" when you go to any website. |
12 | 12 |
|
13 |
| -So since this is your first module, what can you expect the next three weeks? |
| 13 | +Think of it like this: if a webpage were a person, the HTML would be the skeleton and CSS the skin and clothing! |
14 | 14 |
|
15 |
| -## Planning for Current Class |
| 15 | +You'll also be learning [GIT](https//www.github.com/hackyourfuture/git), software that will allow you to save your folders and files in case they accidentally get deleted or end up corrupt. It can do much more and you'll learn all about that starting from week 2! |
16 | 16 |
|
17 |
| -| Week | Topic | Read | Homework | |
18 |
| -| ---- | ------------------------------------------------------------------------------------------------------------------------------------ | -------------------------------------------------------------------------------------------- | ----------------------------------- | |
19 |
| -| 1. | DOM, HTML/CSS syntax | [Week 1 Reading](/Week1/README.md) | [Homework week 1](/Week1/MAKEME.md) | |
20 |
| -| 2. | [CLI](https://github.com/HackYourFuture/CommandLine/blob/master/Week1/Lecture.md), Responsive design, media queries, developer tools | [Week 2 Reading](/Week2/README.md) | [Homework week 2](/Week2/MAKEME.md) | |
21 |
| -| 3. | [CLI](https://github.com/HackYourFuture/CommandLine/blob/master/Week2/Lecture.md/), Recap, useful resources on the web | [JavaScript Intro](https://github.com/HackYourFuture/JavaScript/blob/master/Week1/README.md) | [Homework week 3](/Week3/MAKEME.md) | |
| 17 | +## Learning goals |
22 | 18 |
|
23 |
| -Please get yourself familiar with this repository by navigating your way through the different README files. Kind note: make sure to read assignment requirements properly for handing them in, in the end this saves both you and your teacher a lot of time. If you have any questions or something is not entirely clear ¯\\\_(ツ)\_/¯, please ask/comment on Slack! |
| 19 | +In order to successfully complete this module you will need to master the following: |
24 | 20 |
|
25 |
| -## Learning goals for HTML-CSS: |
| 21 | +- Be able to write syntactically correct HTML and CSS |
| 22 | +- Understand what is meant by "responsive" web development |
| 23 | +- Practice navigation your computer using the command line interface (CLI) |
| 24 | +- Learn about GIT and its basic usage |
| 25 | +- Become familiar with Trello and GitHub as a way to submit your homework |
| 26 | +- Explain your code by presenting what you've done |
| 27 | +- Know your way around Visual Studio Code |
| 28 | +- Feel comfortable working with your browser's inspector |
26 | 29 |
|
27 |
| -``` |
28 |
| -• Basic understanding of HTML and CSS |
29 |
| -• Know how to organize your files |
30 |
| -• Know your way around your text editor |
31 |
| -• Feel comfortable working with the inspector |
32 |
| -• Properly indent your code |
33 |
| -• Properly naming classes, id's |
34 |
| -• Responsive, mobile first development |
35 |
| -• Know good and bad practices when it comes to HTML |
36 |
| -• Get an understanding of where to find information on the web |
37 |
| -• Presenting and explaining your work to others |
38 |
| -``` |
| 30 | +## How to use this repository |
39 | 31 |
|
40 |
| -## Learning goals for CLI |
| 32 | +> Before you do anything, first go [here](Week0/preparation.md). |
41 | 33 |
|
42 |
| -``` |
43 |
| -• To know the terminal/bash/command line for UNIX based systems. |
44 |
| -• Navigate the file system without using a UI explorer. |
45 |
| -• Copy, rename and move files with terminal commands. |
46 |
| -• Learn output redirection, piping on the terminal. |
47 |
| -• Write basic shell scripts to ease the programming life. |
48 |
| -``` |
| 34 | +This repository consists of 3 essential parts: |
| 35 | + |
| 36 | +1. `Reading materials`: this document contains all the required theory you need to know _**while**_ you're coding. It's meant as both study material and as a reference to understand what you're doing. |
| 37 | +2. `Homework`: this document contains the instructions for each week's homework. |
| 38 | +3. `Lesson Plans`: this part is meant for teachers as a reference. However, as a student don't be shy to take a look at it as well! |
| 39 | + |
| 40 | +After your first class you should start off with checking the `reading materials` for that week. At the beginning that would be the [Week 1 Reading](/Week1/README.md). Study all the concepts and try to get the gist of everything. After, you can get started with the `homework` for that week. |
| 41 | + |
| 42 | +If you have any questions or if something is not entirely clear ¯\\\_(ツ)\_/¯, please ask/comment on Slack! |
| 43 | + |
| 44 | +## Planning |
| 45 | + |
| 46 | +| Week | Topic | Reading Materials | Homework | Lesson Plan | |
| 47 | +| ---- | ------------------------------------------------------ | -------------------------------------------------------------------------------------- | ------------------------------- | -------------------------------------- | |
| 48 | +| 1. | Command Line Interface basics, HTML/CSS syntax | [W1 Reading](/Week1/README.md) | [W1 Homework](/Week1/MAKEME.md) | [W1 Lesson Plan](/Week1/LESSONPLAN.md) | |
| 49 | +| 2. | Introduction to GIT, Responsive design | [W2 Reading](/Week2/README.md) | [W2 Homework](/Week2/MAKEME.md) | [W2 Lesson Plan](/Week2/LESSONPLAN.md) | |
| 50 | +| 3. | GIT branches, CSS frameworks, Working with the browser | [W3 Reading](https://github.com/HackYourFuture/JavaScript/blob/master/Week1/README.md) | [W3 Homework](/Week3/MAKEME.md) | [W3 Lesson Plan](/Week3/LESSONPLAN.md) | |
| 51 | + |
| 52 | +## Finished? |
| 53 | + |
| 54 | +Have you finished the module? Great! Pat yourself on the back for the great work you've done. |
| 55 | + |
| 56 | +If you feel ready for the next challenge, click [here](https://www.github.com/hackyourfuture/javascript1) to go to **JavaScript1**! |
| 57 | + |
| 58 | +_The HackYourFuture curriculum is subject to CC BY copyright. This means you can freely use our materials, but just make sure to give us credit for it :)_ |
0 commit comments