├── .github ├── pull_request_template.md └── workflows │ └── close.yml ├── GRADING.md ├── HOW-TO-GET-HELP.md ├── HOW-TO-SUBMIT.md ├── HOW_TO_MARK.md ├── design ├── cakes wireframe - desktop.png └── cakes wireframe - mobile.png ├── index.html ├── readme.md └── style.css /.github/pull_request_template.md: -------------------------------------------------------------------------------- 1 | 14 | 15 | **Volunteers: Are you marking this coursework?** _You can find a guide on how to mark this coursework in `HOW_TO_MARK.md` in the root of this repository_ 16 | 17 | # Your Details 18 | 19 | - Your Name: 20 | - Your City: 21 | - Your Slack Name: 22 | 23 | # Homework Details 24 | 25 | - Module: 26 | - Week: 27 | 28 | # Notes 29 | 30 | - What did you find easy? 31 | 32 | - What did you find hard? 33 | 34 | - What do you still not understand? 35 | 36 | - Any other notes? 37 | -------------------------------------------------------------------------------- /.github/workflows/close.yml: -------------------------------------------------------------------------------- 1 | name: "Close stale issues and PRs" 2 | on: 3 | workflow_dispatch: 4 | schedule: 5 | - cron: "30 1 * * *" 6 | 7 | jobs: 8 | stale: 9 | runs-on: ubuntu-latest 10 | steps: 11 | - uses: actions/stale@v3 12 | with: 13 | stale-pr-message: "Your coursework submission has been closed because nobody has interacted with it in six weeks. You are welcome to re-open it to get more feedback." 14 | days-before-stale: 42 15 | days-before-close: 0 16 | days-before-issue-stale: -1 17 | days-before-issue-close: -1 18 | -------------------------------------------------------------------------------- /GRADING.md: -------------------------------------------------------------------------------- 1 | 6 | 7 | # Grading 8 | 9 | All coursework is graded using the Marking Guide found on the Syllabus. 10 | 11 | http://syllabus.codeyourfuture.io/guides/marking-guide 12 | 13 | If you have any questions on these guidelines - please ask. 14 | 15 | ## Coding Standards 16 | 17 | Your code should follow our Coding Standards or it will be marked poorly. 18 | 19 | https://syllabus.codeyourfuture.io/guides/code-style-guide 20 | -------------------------------------------------------------------------------- /HOW-TO-GET-HELP.md: -------------------------------------------------------------------------------- 1 | 6 | 7 | # How To Get Help 8 | 9 | When you get stuck it's important that you ask for help at the right time and in the right way - this means you will be able to solve you problem as quickly as possible! 10 | 11 | ## Guide 12 | 13 | Please review our guide on the Syllabus for how to get help 14 | 15 | https://syllabus.codeyourfuture.io/guides/escalation-policy/ 16 | 17 | You should complete all of the steps in the order listed to get help 18 | 19 | ## Reporting Issues in Coursework 20 | 21 | Is there a problem with this coursework? 22 | Have you noticed a bug? 23 | Does something not make sense? 24 | 25 | Post in the relevent channel on Slack depending on the module you are completing: 26 | 27 | - Git - `cyf-module-git` 28 | - HTML/CSS - `cyf-module-html-css` 29 | - JavaScript Core 1 - `cyf-module-js1` 30 | - JavaScript Core 2 - `cyf-module-js2` 31 | - JavaScript Core 2 - `cyf-module-js3` 32 | - React - `cyf-module-react` 33 | - Node - `cyf-module-node` 34 | - SQL - `cyf-module-sql` 35 | - MongoDB - `cyf-module-mongodb` 36 | 37 | None of these? Post in #cyf-syllabus. 38 | -------------------------------------------------------------------------------- /HOW-TO-SUBMIT.md: -------------------------------------------------------------------------------- 1 | 6 | 7 | # How To Submit Your Coursework 8 | 9 | You should use Git & Github to submit your coursework as a pull request. 10 | 11 | You can use the Github Desktop cheatsheet here to help you do this. 12 | 13 | [Github Desktop Cheatsheet](http://syllabus.codeyourfuture.io/git/cheatsheet) 14 | 15 | You can also use this lesson to help you submit your coursework. 16 | 17 | [Git Lesson](http://syllabus.codeyourfuture.io/git/index) 18 | 19 | ## Questions & Help 20 | 21 | Not being able to submit your coursework is not an excuse for not doing it. 22 | 23 | If you cannot submit your coursework you **must** message us on Slack to get help. 24 | -------------------------------------------------------------------------------- /HOW_TO_MARK.md: -------------------------------------------------------------------------------- 1 | 6 | 7 | _This file is useful for Volunteers only_ 8 | 9 | ## 1) Solutions 10 | 11 | ### 1.1) Where to find solutions? 12 | 13 | You can find the solution to this coursework in a repository with the same name as this but with `-Solution` after the name. 14 | 15 | For example, for this repo: 16 | 17 | https://github.com/CodeYourFuture/JavaScript-Core-1-Coursework-Week1 18 | 19 | The solutions would be found in: 20 | 21 | https://github.com/CodeYourFuture/JavaScript-Core-1-Coursework-Week1-Solution 22 | 23 | **If you do not have access to these repositories** then please contact your City Coordinator to get access to our Github Team. 24 | 25 | ### 1.2) Using the Solutions Repo 26 | 27 | In these repositories you will find solutions to each weeks coursework. These solutions are example answers and will not be the exact solution that students give. You should use it to inform your feedback of the coursework. 28 | 29 | Additionally, you will find marking guides in these places 30 | 31 | - The `marking` folder - Used to store multiple guides on marking 32 | - `marking.md` file - Used to store notes on common problems we're trying to address 33 | - `solutions.md` - A file used by students for notes on best practice 34 | 35 | ## 2) Before You Start 36 | 37 | ### 2.1) Feedback Guide 38 | 39 | A guide for marking coursework can be found here. Please read it before you start. 40 | 41 | https://docs.codeyourfuture.io/teams/education/homework-feedback 42 | 43 | ### 2.2) Marking Guide 44 | 45 | Here is a useful resources you can direct students to when you see them have common mistakes 46 | 47 | https://syllabus.codeyourfuture.io/guides/marking-guide 48 | 49 | This guide should be used when you see a student making a common mistake so instead of writing out a reply you can send them to the a good resource. 50 | 51 | For example, if the student is leaving in lots of comments out code you could write 52 | 53 | ```txt 54 | Great work so far! 55 | 56 | It's best if you remove code that you're not using, you can read more about this here 57 | https://syllabus.codeyourfuture.io/guides/marking-guide#commented-out-code 58 | ``` 59 | 60 | ### 3.3) Style Guide 61 | 62 | All code at CYF should follow this Style Guide 63 | 64 | https://syllabus.codeyourfuture.io/guides/code-style-guide/ 65 | -------------------------------------------------------------------------------- /design/cakes wireframe - desktop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeYourFuture/HTML-CSS-Coursework-Week3/cda863a9220efe89e3bd5c5cc2fc5ff2fdbedb60/design/cakes wireframe - desktop.png -------------------------------------------------------------------------------- /design/cakes wireframe - mobile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeYourFuture/HTML-CSS-Coursework-Week3/cda863a9220efe89e3bd5c5cc2fc5ff2fdbedb60/design/cakes wireframe - mobile.png -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 |
5 | 6 | 7 | 8 |