├── week-one
├── main.css
├── chai.jpeg
├── index.html
└── README.md
├── week-four
├── image.png
├── outpul.png
├── index.html
└── README.md
├── week-react
├── images
│ ├── 1.jpg
│ ├── 2.jpg
│ ├── 3.jpg
│ ├── 4.jpg
│ ├── 5.jpg
│ ├── 6.jpg
│ ├── 7.jpg
│ ├── 8.jpg
│ ├── 9.jpg
│ ├── 10.jpg
│ ├── 11.jpg
│ ├── 12.jpg
│ ├── 13.jpg
│ ├── 14.jpg
│ └── 15.jpg
├── reactapp
│ ├── src
│ │ ├── assets
│ │ │ ├── done.png
│ │ │ ├── deleteicon.png
│ │ │ └── react.svg
│ │ ├── main.jsx
│ │ ├── Recepie
│ │ │ ├── RecipeHome.jsx
│ │ │ ├── RecipeItem.jsx
│ │ │ ├── RecipeDetails.jsx
│ │ │ └── data.js
│ │ ├── App.jsx
│ │ ├── App.css
│ │ ├── todolist
│ │ │ ├── AddTodo.jsx
│ │ │ ├── TodoItem.jsx
│ │ │ ├── todo.css
│ │ │ └── TodoList.jsx
│ │ └── index.css
│ ├── vite.config.js
│ ├── .gitignore
│ ├── index.html
│ ├── .eslintrc.cjs
│ ├── package.json
│ └── public
│ │ └── vite.svg
└── README.md
├── week-two
├── pasta-bg.jpeg
├── whatsappicon.png
├── index.html
├── main.css
└── README.md
├── week_eight
├── deleteicon.png
├── script.js
├── learning.js
├── index.html
└── README.md
├── week-zero
├── program.js
└── README.md
├── week-three
├── main.css
├── index.html
└── README.md
├── week-seven
├── marksheet.js
├── grocery_bill.js
├── QUIZ.md
├── assignment.md
├── index.html
└── README.md
├── README.md
├── collection
└── README.md
└── week_bonus_git
└── README.md
/week-one/main.css:
--------------------------------------------------------------------------------
1 | .text {
2 | color: brown;
3 | }
--------------------------------------------------------------------------------
/week-one/chai.jpeg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/syproo/MEAN-Stack-tutorial/HEAD/week-one/chai.jpeg
--------------------------------------------------------------------------------
/week-four/image.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/syproo/MEAN-Stack-tutorial/HEAD/week-four/image.png
--------------------------------------------------------------------------------
/week-four/outpul.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/syproo/MEAN-Stack-tutorial/HEAD/week-four/outpul.png
--------------------------------------------------------------------------------
/week-react/images/1.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/syproo/MEAN-Stack-tutorial/HEAD/week-react/images/1.jpg
--------------------------------------------------------------------------------
/week-react/images/2.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/syproo/MEAN-Stack-tutorial/HEAD/week-react/images/2.jpg
--------------------------------------------------------------------------------
/week-react/images/3.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/syproo/MEAN-Stack-tutorial/HEAD/week-react/images/3.jpg
--------------------------------------------------------------------------------
/week-react/images/4.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/syproo/MEAN-Stack-tutorial/HEAD/week-react/images/4.jpg
--------------------------------------------------------------------------------
/week-react/images/5.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/syproo/MEAN-Stack-tutorial/HEAD/week-react/images/5.jpg
--------------------------------------------------------------------------------
/week-react/images/6.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/syproo/MEAN-Stack-tutorial/HEAD/week-react/images/6.jpg
--------------------------------------------------------------------------------
/week-react/images/7.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/syproo/MEAN-Stack-tutorial/HEAD/week-react/images/7.jpg
--------------------------------------------------------------------------------
/week-react/images/8.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/syproo/MEAN-Stack-tutorial/HEAD/week-react/images/8.jpg
--------------------------------------------------------------------------------
/week-react/images/9.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/syproo/MEAN-Stack-tutorial/HEAD/week-react/images/9.jpg
--------------------------------------------------------------------------------
/week-two/pasta-bg.jpeg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/syproo/MEAN-Stack-tutorial/HEAD/week-two/pasta-bg.jpeg
--------------------------------------------------------------------------------
/week-react/images/10.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/syproo/MEAN-Stack-tutorial/HEAD/week-react/images/10.jpg
--------------------------------------------------------------------------------
/week-react/images/11.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/syproo/MEAN-Stack-tutorial/HEAD/week-react/images/11.jpg
--------------------------------------------------------------------------------
/week-react/images/12.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/syproo/MEAN-Stack-tutorial/HEAD/week-react/images/12.jpg
--------------------------------------------------------------------------------
/week-react/images/13.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/syproo/MEAN-Stack-tutorial/HEAD/week-react/images/13.jpg
--------------------------------------------------------------------------------
/week-react/images/14.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/syproo/MEAN-Stack-tutorial/HEAD/week-react/images/14.jpg
--------------------------------------------------------------------------------
/week-react/images/15.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/syproo/MEAN-Stack-tutorial/HEAD/week-react/images/15.jpg
--------------------------------------------------------------------------------
/week-two/whatsappicon.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/syproo/MEAN-Stack-tutorial/HEAD/week-two/whatsappicon.png
--------------------------------------------------------------------------------
/week_eight/deleteicon.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/syproo/MEAN-Stack-tutorial/HEAD/week_eight/deleteicon.png
--------------------------------------------------------------------------------
/week-react/reactapp/src/assets/done.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/syproo/MEAN-Stack-tutorial/HEAD/week-react/reactapp/src/assets/done.png
--------------------------------------------------------------------------------
/week-react/reactapp/src/assets/deleteicon.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/syproo/MEAN-Stack-tutorial/HEAD/week-react/reactapp/src/assets/deleteicon.png
--------------------------------------------------------------------------------
/week-react/reactapp/vite.config.js:
--------------------------------------------------------------------------------
1 | import { defineConfig } from 'vite'
2 | import react from '@vitejs/plugin-react'
3 |
4 | // https://vitejs.dev/config/
5 | export default defineConfig({
6 | plugins: [react()],
7 | })
8 |
--------------------------------------------------------------------------------
/week-react/reactapp/src/main.jsx:
--------------------------------------------------------------------------------
1 | import React from "react"
2 | import ReactDOM from "react-dom/client"
3 | import App from "./App.jsx"
4 | import "./index.css"
5 |
6 | ReactDOM.createRoot(document.getElementById("root")).render(
7 |
${name}
14 |Sorry, an unexpected error has occurred.
14 | > 15 | ) 16 | }, 17 | { 18 | path: "/details/:id", 19 | element:19 | {title} 20 |
21 |15 | Lorem ipsum dolor sit amet consectetur adipisicing elit. Quisquam 16 | voluptates, quod, quia, voluptate quae voluptatem quibusdam 17 | necessitatibus quidem voluptatum quos quas. Quisquam, quae. Quisquam 18 | voluptates, quod, quia, voluptate quae voluptatem quibusdam 19 | necessitatibus quidem voluptatum quos quas. Quisquam, quae. 20 | Get yours now 23 |
24 | 25 | 33 |Sent Emails
62 |Buy Coffe
66 |Go Home
70 |Read book
74 |
70 | 133+
75 |Courses and subject
76 |304+
79 |Courses and subject
80 |56k+
83 |Courses and subject
84 |11m+
87 |Courses and subject
88 |Rice Price: 4$
68 |Beans Price: 3$
69 |Chicken Price: 7$
70 |Total Price:
71 |Here is my recipe for Kashmiri Tea:
18 |
24 | 39 | In kettle, add water,kashimiri tea leaves,star anise,cloves,cardamom 40 | seeds,salt and baking soda,bring it to boil. Let it simmer for 20-30 41 | minutes until it reduces to half. Add chilled water and mix well for 8 42 | to 10 minutes and cook for 5 minutes. Strain and set aside, kehwa is 43 | ready and can be refrigerated for up to 4-5 days. For Kashmiri tea,in 44 | kettle,add milk,almonds(crushed),pistachio(crushed),sugar (optional)and 45 | give it a good mix. Add kehwa and cook for few minutes. Finally pour the 46 | tea in cups,add almonds(crushed) and pistachio(crushed). Kashmiri tea is 47 | ready. 48 |
49 || Calories | 60 |Protein | 61 |Carbohydrates | 62 |Fat | 63 |
|---|---|---|---|
| 100 | 68 |10 | 69 |20 | 70 |30 | 71 |
Quoted97 |
Code
101 | 142 | Made with reference to 143 | 147 | Food Fusion 149 |
150 | 151 | 152 | -------------------------------------------------------------------------------- /week_bonus_git/README.md: -------------------------------------------------------------------------------- 1 | # Lets Learn Git 2 | 3 |
4 |
5 | ## What is Git?
6 |
7 | Git is a version control system for tracking changes in computer files and coordinating work on those files among multiple people. It is primarily used for source code management in software development, but it can be used to keep track of changes in any set of files. As a distributed revision control system it is aimed at speed, data integrity, and support for distributed, non-linear workflows.
8 |
9 | ## What is GitHub?
10 |
11 | GitHub is a web-based hosting service for version control using Git. It is mostly used for computer code. It offers all of the distributed version control and source code management (SCM) functionality of Git as well as adding its own features. It provides access control and several collaboration features such as bug tracking, feature requests, task management, and wikis for every project.
12 |
13 | ## What is Git used for?
14 |
15 | Git is a version control system that is used for tracking changes in source code during software development. It allows developers to collaborate on the same codebase, keep track of changes made to the code over time, and easily revert back to previous versions if necessary. Git is also used to manage project workflows and to facilitate communication between team members.
16 |
17 | Here's an example of how Git might be used in real life:
18 |
19 | Imagine a team of developers working on a web application. They use Git to keep track of all changes made to the codebase, which is stored on a central repository. Each developer works on their own local copy of the codebase and pushes their changes to the central repository when they are ready to be shared.
20 |
21 | If a developer makes a mistake or introduces a bug into the code, they can use Git to easily revert back to a previous version of the code to fix the issue. Git also allows developers to collaborate on the same codebase without overwriting each other's changes. This means that multiple developers can work on different features of the application simultaneously, without interfering with each other's work.
22 |
23 | Overall, Git is an essential tool for software development teams, helping to improve collaboration, productivity, and code quality.
24 |
25 |
27 |
6 |
7 |
11 |
28 |
29 | ## How to use Tailwind?
30 |
31 | ### Installation
32 |
33 | ```bash
34 | npm install tailwindcss
35 | ```
36 |
37 | or
38 |
39 | ```bash
40 | yarn add tailwindcss
41 | ```
42 |
43 | or add as a CDN
44 |
45 | ```html
46 |
47 |
48 |
49 |
50 |
51 |
52 |
53 |
54 |
55 |
56 |
57 |
58 |
74 | 96 | Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nullam faucibus, 97 | est vel scelerisque bibendum, mi enim elementum odio, vel faucibus nibh 98 | nibh ut quam. Sed ut justo euismod, bibendum quam a, rhoncus eros. 99 |
100 |
128 |
129 | ### Best way to learn Tailwind CSS
130 |
131 | Tailwind can be easily learn by its documentation and by watching videos. I have listed some of the best videos to learn Tailwind CSS.
132 |
133 | [Tailwind CSS Crash Course](https://www.youtube.com/watch?v=UBOj6rqRUME)
134 |
135 | ---
136 |
137 | For full documentation, visit [tailwindcss.com](https://tailwindcss.com/).
138 |
139 | For cheat sheet visit [tailwind-cheat-sheet](https://tailwindcomponents.com/cheatsheet/)
140 |
--------------------------------------------------------------------------------
/week-one/README.md:
--------------------------------------------------------------------------------
1 | ## Week 2 - Lets write some mark up - HTML
2 |
3 | - What is HTML
4 | - Basic Structure of an HTML Document
5 | - Common HTML Elements
6 | - Headings, Paragraphs, Lists, Links, Images, Tables, etc.
7 | - Element Attributes
8 | - id, class, style, etc.
9 | - Semantic HTML Elements
10 | - header, nav, article, section, etc.
11 | - Text Formatting
12 | - Bold, Italic, Underline, etc.
13 | - Styles with CSS
14 | - Internal, External, Inline CSS
15 | - CSS Selectors & Properties
16 | - Classes, IDs, Elements, Backgrounds, Borders, etc.
17 | - Adding Images & Videos
18 | - Embedding Audio & YouTube Videos
19 | - HTML5 Multimedia Elements
20 | - audio, video, etc.
21 | - Form Elements & Attributes
22 | - input, textarea, select, button, etc.
23 | - HTML Best Practices & Accessibility
24 | - Writing Clean & Valid HTML Code
25 |
26 | ### Tags
27 |
28 | - `` : The root element of an HTML document
29 | - `` : Contains meta information about the document
30 | - `` : Defines a paragraph
34 | - `
` : Inserts a single line break
35 | - `
` : Defines preformatted text 37 | - `` : Defines bold text 38 | - `` : Defines important text 39 | - `` : Defines a part of text in an alternate voice or mood 40 | - `` : Defines emphasized text 41 | - `` : Defines marked/highlighted text 42 | - `` : Defines smaller text 43 | - `` : Defines deleted text 44 | - `` : Defines inserted text 45 | - `` : Defines subscripted text 46 | - `` : Defines superscripted text 47 | - `` : Defines a section that is quoted from another source 48 | - `` : Defines a short quotation 49 | - `` : Defines an abbreviation or an acronym 50 | - `` : Defines an image 51 | - `` : Defines a hyperlink 52 | - `
` : Defines an unordered list 53 | - `
` : Defines an ordered list 54 | - `
- ` : Defines a list item 55 | - `
` : Defines a description list 56 | - `
- ` : Defines a term/name in a description list 57 | - `
- ` : Defines a description of a term/name in a description list 58 | - `
` : Defines a table 59 | - `
` : Defines a row in a table 60 | - ` ` : Groups the body content in a table 65 | - `` : Groups the footer content in a table 66 | - `` : Defines a header cell in a table 61 | - ` ` : Defines a cell in a table 62 | - ` ` : Defines a table caption 63 | - ` ` : Groups the header content in a table 64 | - `` : Specifies column properties for each column within a ` ` element 67 | - ` ` : Specifies a group of one or more columns in a table for formatting 68 | - `