├── batch1 ├── Bootstrap │ ├── DSF1998-1280x853.jpg │ ├── grid.html │ └── intro.html ├── CSSNotes.txt ├── ExpressJS.txt ├── ExpressJS │ ├── .gitignore │ ├── Day1 │ │ ├── client │ │ │ ├── index.html │ │ │ └── script.js │ │ ├── index.js │ │ ├── package-lock.json │ │ ├── package.json │ │ └── sample.js │ └── Day2 │ │ ├── index.html │ │ ├── index.js │ │ ├── middlewares │ │ └── auth.js │ │ ├── package-lock.json │ │ └── package.json ├── HTMLNotes.txt ├── JSNotes.txt ├── JavaScript │ ├── AsynchronousJS │ │ ├── API │ │ │ ├── callData.html │ │ │ ├── callData.js │ │ │ ├── jsonData.html │ │ │ └── myData.json │ │ ├── Callbacks │ │ │ ├── Program1.html │ │ │ ├── Program1.js │ │ │ ├── Program2.html │ │ │ └── Program2.js │ │ ├── Intro │ │ │ ├── Program1.html │ │ │ ├── Program1.js │ │ │ ├── Program2.html │ │ │ └── Program2.js │ │ └── Promise │ │ │ ├── Demo.html │ │ │ ├── Program1.html │ │ │ ├── Program1.js │ │ │ ├── Program2.html │ │ │ ├── Program2.js │ │ │ └── Program3.html │ ├── Intro │ │ ├── Program1.html │ │ ├── Program2.html │ │ └── Program3.html │ ├── Loops │ │ ├── Division.html │ │ ├── ForLoop.html │ │ ├── do-while.html │ │ ├── while.html │ │ └── while_do_while.html │ ├── Objects │ │ ├── BOM │ │ │ ├── Program1.html │ │ │ ├── Program2.html │ │ │ ├── Program3.html │ │ │ ├── Program4.html │ │ │ ├── Program5.html │ │ │ ├── Program6.html │ │ │ └── Program7.html │ │ └── Program1.html │ ├── conditionStatements │ │ ├── Program1.html │ │ ├── Program2.html │ │ ├── Program3.html │ │ ├── demo.html │ │ └── demo.js │ └── functions │ │ ├── program1.html │ │ └── program1.js ├── MongoDB │ ├── playground-1.mongodb.js │ ├── playground-2.mongodb.js │ ├── playground-3.mongodb.js │ └── playground-4.mongodb.js ├── NodeJS.txt ├── Nodejs │ ├── FileModule │ │ ├── MyFile.txt │ │ ├── MyFile2.txt │ │ ├── MyFile3.txt │ │ ├── read.js │ │ └── write.js │ ├── httpModule │ │ ├── index.js │ │ ├── jsonDisplay.html │ │ └── jsondata.js │ └── modules │ │ ├── demo.js │ │ ├── index.js │ │ └── program1.js ├── React │ ├── project1 │ │ ├── .gitignore │ │ ├── README.md │ │ ├── package-lock.json │ │ ├── package.json │ │ ├── public │ │ │ ├── favicon.ico │ │ │ ├── index.html │ │ │ ├── logo192.png │ │ │ ├── logo512.png │ │ │ ├── manifest.json │ │ │ └── robots.txt │ │ └── src │ │ │ ├── App.css │ │ │ ├── App.js │ │ │ ├── App.test.js │ │ │ ├── components │ │ │ ├── ChangeState.jsx │ │ │ ├── ClassComp.jsx │ │ │ ├── Function1.jsx │ │ │ ├── Function2.jsx │ │ │ ├── Function3.jsx │ │ │ ├── MyFirstComp.jsx │ │ │ ├── MySecComp.jsx │ │ │ ├── ProfileRoutes.jsx │ │ │ ├── SingleProfilePage.jsx │ │ │ ├── ToggleState.jsx │ │ │ ├── ToggleState2.jsx │ │ │ ├── UseEffect.jsx │ │ │ └── UseState.jsx │ │ │ ├── index.css │ │ │ ├── index.js │ │ │ ├── logo.svg │ │ │ ├── reportWebVitals.js │ │ │ └── setupTests.js │ └── project2 │ │ ├── .gitignore │ │ ├── README.md │ │ ├── package-lock.json │ │ ├── package.json │ │ ├── public │ │ ├── favicon.ico │ │ ├── index.html │ │ ├── logo192.png │ │ ├── logo512.png │ │ ├── manifest.json │ │ └── robots.txt │ │ └── src │ │ ├── App.css │ │ ├── App.js │ │ ├── App.test.js │ │ ├── components │ │ ├── CompA.jsx │ │ ├── CompB.jsx │ │ ├── CompC.jsx │ │ ├── Context.jsx │ │ ├── Display.jsx │ │ ├── Display2.jsx │ │ ├── ThemeContext.jsx │ │ └── ToggleTheme.jsx │ │ ├── index.css │ │ ├── index.js │ │ ├── logo.svg │ │ ├── reportWebVitals.js │ │ └── setupTests.js ├── ReactNotes.txt ├── crud-app │ ├── client │ │ ├── .eslintrc.cjs │ │ ├── .gitignore │ │ ├── README.md │ │ ├── index.html │ │ ├── package-lock.json │ │ ├── package.json │ │ ├── public │ │ │ └── vite.svg │ │ ├── src │ │ │ ├── App.css │ │ │ ├── App.jsx │ │ │ ├── assets │ │ │ │ └── react.svg │ │ │ ├── components │ │ │ │ ├── Footer.jsx │ │ │ │ ├── Header.jsx │ │ │ │ └── Layout.jsx │ │ │ ├── index.css │ │ │ ├── main.jsx │ │ │ └── pages │ │ │ │ ├── EditPage.jsx │ │ │ │ ├── Home.jsx │ │ │ │ ├── PageRoutes.jsx │ │ │ │ └── RegisterPage.jsx │ │ └── vite.config.js │ └── server │ │ ├── .gitignore │ │ ├── index.js │ │ ├── models │ │ └── users.js │ │ ├── package-lock.json │ │ ├── package.json │ │ └── routes │ │ └── userRoutes.js ├── css │ ├── Top_Gun_Maverick_Poster.jpg │ ├── animations │ │ ├── program1.html │ │ ├── program2.html │ │ ├── program3.html │ │ ├── program4.html │ │ ├── program5.html │ │ └── program6.html │ ├── assignmen1.html │ ├── background.html │ ├── blockDisplay.html │ ├── border │ │ ├── padding.html │ │ └── square.html │ ├── boxmodel1.html │ ├── centerDiv.html │ ├── display.html │ ├── flexDisplay.html │ ├── font.html │ ├── inline.html │ ├── inlineDisplay.html │ ├── internal.html │ ├── navbar.css │ ├── navbar.html │ └── positions │ │ ├── absolute.html │ │ ├── fixed.html │ │ ├── relative.html │ │ ├── static.html │ │ └── sticky.html └── html │ ├── Top_Gun_Maverick_Poster.jpg │ ├── caseSensitive.html │ ├── intro.html │ ├── structure.html │ ├── table.html │ └── timetable.html └── batch2 ├── css ├── Program1.html ├── Program2.html ├── Program3.html ├── Program4.html ├── Program5.html ├── Task1.html ├── Top_Gun_Maverick_Poster.jpg └── cssNotes.txt └── html ├── HtmlNotes.txt ├── Program1.html ├── Program2.html ├── Program3.html └── Program4.html /batch1/Bootstrap/DSF1998-1280x853.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richieArnrich/infosys-mern/0f7bd3eb64508380593e9302c47fc57b510ed876/batch1/Bootstrap/DSF1998-1280x853.jpg -------------------------------------------------------------------------------- /batch1/Bootstrap/grid.html: -------------------------------------------------------------------------------- 1 | 2 | 3 |
4 | 5 | 6 |36 | The northern lights are a phenomenal natural occurance and some people 37 | make their way all the way to Iceland specifically to see them. 38 |
39 | View Iceland 44 |55 | The northern lights are a phenomenal natural occurance and some 56 | people make their way all the way to Iceland specifically to see 57 | them. 58 |
59 | View Iceland 64 |73 | The northern lights are a phenomenal natural occurance and some 74 | people make their way all the way to Iceland specifically to see 75 | them. 76 |
77 | View Iceland 82 |91 | The northern lights are a phenomenal natural occurance and some 92 | people make their way all the way to Iceland specifically to see 93 | them. 94 |
95 | View Iceland 100 |111 | The northern lights are a phenomenal natural occurance and some 112 | people make their way all the way to Iceland specifically to see 113 | them. 114 |
115 | View Iceland 120 |129 | The northern lights are a phenomenal natural occurance and some 130 | people make their way all the way to Iceland specifically to see 131 | them. 132 |
133 | View Iceland 138 |147 | The northern lights are a phenomenal natural occurance and some 148 | people make their way all the way to Iceland specifically to see 149 | them. 150 |
151 | View Iceland 156 |17 | Bootstrap is a frontend css framework which provides prebuilt css classes 18 | for faster responsive frontend development 19 |
20 |I am heading - 1
34 |I am heading - 5
35 |I am heading - 6
36 | 37 | 38 | -------------------------------------------------------------------------------- /batch1/CSSNotes.txt: -------------------------------------------------------------------------------- 1 | CSS : cascading style sheets 2 | CSS is a styling language used to control the layout and appearance 3 | of web pages written in HTML or XML 4 | CSS provides properties to control the appearence of the webpage 5 | CSS is used to separate the presentation of a document from its structure, 6 | which is controlled by HTML or XML 7 | CSS is applied in three ways: 8 | 1. Inline CSS: CSS is written directly in the HTML document,using the 9 | style attribute within the elements 10 | 2. Internal CSS: CSS is written in the HTML document, but in a separate section, 11 | using 30 | 31 | 32 |