├── LICENSE ├── README.md └── Topics.txt /LICENSE: -------------------------------------------------------------------------------- 1 | MIT License 2 | 3 | Copyright (c) 2022 Neetish Raj 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 | # Full stack developer training 2 | 3 | This repo is a collection of programming notes created during my full stack training classes with MERN stack. 4 | 5 | ## Usage 6 | This repo is intended for my students for quick-reference. All the daily sessions are captured date-wise by creating a separate branch. Just click the branch dropdown and select them to get the notes on that day. 7 | 8 | ### Topic wise links 9 | 10 | ##### Course Intro 11 | - [14-Jun-Intro-And-Full-Stack-Roadmap] 12 | - [15-Jun-Resources-And-VSCode-Setup] 13 | - [16-June-Internet-Analogies-Terminal-Basics] 14 | ##### HTML 15 | - [18-Jun-HTML-Part-1-Base-Tags] 16 | - [20-Jun-HTML-Part-2-Layout-And-Semantic-Elements] 17 | - [21-Jun-HTML-Part-3-Media-Tags-Table-Entities] 18 | - [22-Jun-HTML-Part-4-Form-Elements-And-Attributes] 19 | - [23-Jun-HTML-Part-5-Datalist-Select-SVG] 20 | 21 | ##### CSS 22 | - [24-Jun-CSS-Part-1-CSS-Intro-Selectors] 23 | - [27-Jun-CSS-Part-2-CSS-Selectors] 24 | - [29-Jun-CSS-Part-3-Pseudo-And-Attribute-Selectors] 25 | - [30-Jun-CSS-Part-4-Colors-Box-Model] 26 | - [1-Jul-CSS-Part-5-Shadow-Gradients-Background-Text] 27 | - [4-Jul-CSS-Part-6-Box-Sizing-display-position] 28 | 29 | 30 | [//]: # 31 | [14-Jun-Intro-And-Full-Stack-Roadmap]: 32 | [15-Jun-Resources-And-VSCode-Setup]: 33 | [16-June-Internet-Analogies-Terminal-Basics]: 34 | [18-Jun-HTML-Part-1-Base-Tags]: 35 | [20-Jun-HTML-Part-2-Layout-And-Semantic-Elements]: 36 | [21-Jun-HTML-Part-3-Media-Tags-Table-Entities]: 37 | [22-Jun-HTML-Part-4-Form-Elements-And-Attributes]: 38 | [23-Jun-HTML-Part-5-Datalist-Select-SVG]: 39 | [24-Jun-CSS-Part-1-CSS-Intro-Selectors]: 40 | [27-Jun-CSS-Part-2-CSS-Selectors]: 41 | [29-Jun-CSS-Part-3-Pseudo-And-Attribute-Selectors]: 42 | [30-Jun-CSS-Part-4-Colors-Box-Model]: 43 | [1-Jul-CSS-Part-5-Shadow-Gradients-Background-Text]: 44 | [4-Jul-CSS-Part-6-Box-Sizing-display-position]: -------------------------------------------------------------------------------- /Topics.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeetishRaj/uno_batch/8f384fbc2cce25f1500a588c013275981c94c93f/Topics.txt --------------------------------------------------------------------------------