├── .gitignore ├── .vscode └── settings.json ├── ASSIGNMENTS ├── assignment9.1.html ├── assignment9.2.html ├── t1.html └── t2.html ├── DAMS ├── .gitignore ├── README.md └── server │ ├── .env │ ├── .vscode │ └── settings.json │ ├── controllers │ ├── admin.controller.js │ └── student.controller.js │ ├── databases │ └── mongo.connect.js │ ├── index.js │ ├── models │ ├── admin │ │ ├── admin.model.js │ │ └── dashboard.model.js │ ├── staff │ │ ├── staff.model.js │ │ ├── staffAttendence.model.js │ │ └── staffSalary.model.js │ ├── student │ │ ├── student.model.js │ │ ├── studentAttendance.model.js │ │ └── studentFees.model.js │ └── teacher │ │ ├── teacher.model.js │ │ ├── teacherAttendence.model.js │ │ └── teacherSalary.model.js │ ├── package-lock.json │ ├── package.json │ ├── routes │ ├── admin.route.js │ ├── staff.route.js │ ├── student.route.js │ └── teacher.route.js │ └── services │ ├── admin.service.js │ ├── staff.service.js │ ├── student.service.js │ └── teacher.service.js ├── FULL CSS ├── CSS3 │ ├── BoxModel │ │ ├── index.html │ │ └── style.css │ ├── Color │ │ ├── index.html │ │ └── style.css │ ├── Column │ │ ├── index.html │ │ └── style.css │ ├── DisplayProperty │ │ ├── index.html │ │ └── style.css │ ├── FlexBox │ │ ├── index.html │ │ └── style.css │ ├── Float │ │ ├── index.html │ │ └── style.css │ ├── Grid │ │ ├── index.html │ │ └── style.css │ ├── HowToApplyCSS │ │ ├── CSS │ │ │ └── style.css │ │ └── index.html │ ├── HyperLink │ │ ├── index.html │ │ └── style.css │ ├── ListStyle │ │ ├── index.html │ │ └── style.css │ ├── MiniCSSProject │ │ ├── index.html │ │ └── style.css │ ├── PositionProperty │ │ ├── index.html │ │ └── style.css │ ├── README.md │ ├── Selector │ │ ├── index.html │ │ └── style.css │ ├── Typography │ │ ├── index.html │ │ └── style.css │ └── Unit&Size │ │ ├── index.html │ │ └── style.css └── css │ ├── Basic │ ├── .vscode │ │ └── settings.json │ ├── All_Css_Files │ │ ├── 0.css │ │ ├── 0.html │ │ ├── 1_selector.css │ │ ├── 1_selector.html │ │ ├── 2_pseudo.css │ │ ├── 2_pseudo.html │ │ ├── 3_props.css │ │ ├── 3_props.html │ │ ├── 4_transform.css │ │ ├── 4_transform.html │ │ ├── 5_3D_Transform.css │ │ ├── 5_3D_Transform.html │ │ ├── 6_transition.css │ │ ├── 6_transition.html │ │ ├── 7_position.css │ │ ├── 7_position.html │ │ ├── 8_col.css │ │ ├── 8_col.html │ │ ├── 9_grid.css │ │ ├── 9_grid.html │ │ ├── images.jpg │ │ ├── index.js │ │ └── pic.jpg │ ├── ResponsiveWebDesign │ │ ├── images │ │ │ ├── 0.JPG │ │ │ ├── 1.png │ │ │ ├── 2.png │ │ │ └── 3.png │ │ ├── responsiveContent.html │ │ ├── responsiveLayout.html │ │ └── responsiveSize.html │ ├── assignment9.1.html │ ├── assignment9.2.html │ ├── dub │ │ ├── .vscode │ │ │ └── launch.json │ │ ├── index.html │ │ ├── script.js │ │ └── style.css │ ├── style1.css │ └── style2.css │ ├── intro │ ├── EN-Semantic-Search-Non-Semantic.png │ ├── Header.html │ ├── Semantic-html.png │ ├── article.html │ ├── artisec.html │ ├── aside.html │ ├── details.html │ ├── div │ │ ├── 1.html │ │ ├── 2.html │ │ ├── 3.html │ │ ├── 4.html │ │ ├── a.html │ │ └── fffff.html │ ├── figure.html │ ├── footer.html │ ├── img_sem_elements.gif │ ├── main.html │ ├── mark.html │ ├── nav1.html │ ├── nav2.html │ ├── non-semantic.html │ ├── page.html │ ├── process.html │ ├── section.html │ ├── semantic.html │ └── styles.css │ ├── property-background-color │ ├── styles.css │ └── webpage.html │ ├── property-background-image │ ├── styles.css │ └── webpage.html │ ├── property-border-bottom-width │ ├── styles.css │ └── webpage.html │ ├── property-border-left-width │ ├── styles.css │ └── webpage.html │ ├── property-border-right-width │ ├── styles.css │ └── webpage.html │ ├── property-border-top-width │ ├── styles.html │ └── webpage.html │ ├── property-border-width │ ├── styles.css │ └── webpage.html │ ├── property-color │ ├── styles.css │ └── webpage.html │ ├── property-opacity │ ├── styles.css │ └── webpage.html │ └── property-text-align │ ├── styles.css │ └── webpage.html ├── HTML FULL ├── Advanced content │ ├── HTML Attributes │ │ ├── customize-using-attribute-style │ │ │ └── example1.html │ │ ├── using-attribute-title │ │ │ └── example1.html │ │ ├── using-the-attribute-lang │ │ │ ├── example1.html │ │ │ └── example2.html │ │ ├── using-the-attribute-style-for-unordered-lists │ │ │ ├── example1.html │ │ │ ├── example2.html │ │ │ ├── example3.html │ │ │ └── example4.html │ │ └── using-the-attribute-type-ordered-lists │ │ │ ├── example1.html │ │ │ ├── example2.html │ │ │ └── example3.html │ ├── HTML Tags │ │ ├── using-the-tag-figure │ │ │ └── example1.html │ │ ├── using-the-tag-head │ │ │ ├── example1.html │ │ │ └── example2.html │ │ └── using-the-tag-title │ │ │ └── example1.html │ ├── List Advanced │ │ ├── create-a-definition-list │ │ │ └── example1.html │ │ ├── create-an-ordered-list │ │ │ └── example1.html │ │ ├── create-an-unordered-list │ │ │ └── example1.html │ │ └── create-nested-lists │ │ │ ├── example1.html │ │ │ ├── example2.html │ │ │ ├── example3.html │ │ │ ├── example4.html │ │ │ ├── example5.html │ │ │ └── example6.html │ ├── html-document-structure │ │ └── example1.html │ ├── html-headings │ │ └── example1.html │ └── saving-html-css-documents │ │ ├── CompletedExample.html │ │ ├── WebPage.html │ │ └── styles.css ├── HTML │ ├── 01.intro.html │ ├── 02.attributes.html │ ├── 03.headings.html │ ├── 04.paragraphs.html │ ├── 05.styles.html │ ├── 06.text_formatting.html │ ├── 07.quotations.html │ ├── 08.colors.html │ ├── 09.html_css.html │ ├── 10.html_links.html │ ├── 11.images.html │ ├── 13a.lists.html │ ├── 13b.lists.html │ ├── Html Lists │ │ ├── create-a-definition-list │ │ │ └── example1.html │ │ ├── create-an-ordered-list │ │ │ └── example1.html │ │ ├── create-an-unordered-list │ │ │ └── example1.html │ │ ├── create-nested-lists │ │ │ ├── example1.html │ │ │ ├── example2.html │ │ │ ├── example3.html │ │ │ ├── example4.html │ │ │ ├── example5.html │ │ │ └── example6.html │ │ └── l1.html │ ├── Html Page And Block Element │ │ ├── create-a-table │ │ │ └── example1.html │ │ ├── how-to-add-a-comment │ │ │ └── example1.html │ │ ├── how-to-add-a-line-break-in-html │ │ │ └── example1.html │ │ ├── how-to-add-a-link │ │ │ └── example1.html │ │ ├── how-to-add-a-paragraph │ │ │ ├── example1.html │ │ │ └── example2.html │ │ ├── how-to-add-an-image │ │ │ └── example1.html │ │ ├── how-to-display-italic-text │ │ │ ├── styles.css │ │ │ └── webpage.html │ │ ├── using-area-element │ │ │ ├── test.html │ │ │ └── webpage.html │ │ ├── using-the-address-element │ │ │ └── webpage.html │ │ ├── using-the-article-element │ │ │ ├── styles.css │ │ │ └── webpage.html │ │ ├── using-the-aside-element │ │ │ ├── styles.css │ │ │ └── webpage.html │ │ ├── using-the-audio-element │ │ │ ├── a.ogg │ │ │ ├── styles.css │ │ │ └── webpage.html │ │ ├── using-the-b-element │ │ │ ├── styles.css │ │ │ └── webpage.html │ │ ├── using-the-base-element │ │ │ └── webpage.html │ │ ├── using-the-body-element │ │ │ └── webpage.html │ │ ├── using-the-cite-element │ │ │ └── webpage.html │ │ ├── using-the-code-element │ │ │ └── webpage.html │ │ ├── using-the-element-aside │ │ │ └── webpage.html │ │ ├── using-the-em-element │ │ │ ├── styles.css │ │ │ └── webpage.html │ │ ├── using-the-footer-element │ │ │ └── webpage.html │ │ ├── using-the-hr-element │ │ │ ├── styles.css │ │ │ └── webpage.html │ │ ├── using-the-mark-element │ │ │ ├── styles.css │ │ │ └── webpage.html │ │ ├── using-the-s-element │ │ │ ├── styles.css │ │ │ └── webpage.html │ │ ├── using-the-small-element │ │ │ └── webpage.html │ │ ├── using-the-span-element │ │ │ ├── styles.css │ │ │ └── webpage.html │ │ ├── using-the-strong-element │ │ │ ├── styles.css │ │ │ └── webpage.html │ │ └── using-the-video-element │ │ │ ├── a.mp4 │ │ │ ├── styles.css │ │ │ └── webpage.html │ ├── about.htm │ ├── car.jpg │ ├── contact.html │ ├── flowers.jpg │ ├── g.html │ ├── index.html │ ├── my_image.gif │ ├── my_style.css │ ├── style.css │ └── table.html ├── Html PageSturecture │ ├── index.html │ └── style.css ├── Html Table │ ├── nth1 (2).html │ ├── nth1.html │ ├── nth2 (2).html │ ├── nth2.html │ ├── nth3 (2).html │ ├── nth3.html │ ├── nth4 (2).html │ ├── nth4.html │ ├── nth5 (2).html │ ├── nth5.html │ ├── nth6 (2).html │ ├── nth6.html │ ├── style1.css │ ├── style2.css │ ├── table1 (2).html │ ├── table1.html │ ├── table2 (2).html │ ├── table2.html │ ├── table3.html │ └── table4.html ├── Html_from │ ├── Input1.html │ ├── Input_element.html │ ├── f1.html │ ├── form1.html │ ├── ft.html │ ├── img_submit.gif │ ├── input2.html │ ├── input3.html │ ├── input_Attribute.html │ └── server.jsp └── html_basics │ ├── 01.intro.html │ ├── 02.attributes.html │ ├── 03.headings.html │ ├── 04.paragraphs.html │ ├── 05.styles.html │ ├── 06.text_formatting.html │ ├── 07.quotations.html │ ├── 08.colors.html │ ├── 09.html_css.html │ ├── 10.html_links.html │ ├── 11.images.html │ ├── 12.tables.html │ ├── 13a.lists.html │ ├── 13b.lists.html │ ├── car.jpg │ ├── css2 │ ├── index.html │ └── style.css │ ├── flowers.jpg │ ├── into │ ├── about.htm │ ├── contact.html │ ├── g.html │ ├── index.html │ ├── style.css │ └── table.html │ ├── my_image.gif │ └── my_style.css ├── KanpurProjects └── Frontend │ └── 01-react │ ├── .gitignore │ ├── README.md │ ├── package-lock.json │ ├── package.json │ ├── public │ ├── favicon.ico │ ├── index.html │ ├── logo192.png │ ├── logo512.png │ ├── manifest.json │ └── robots.txt │ ├── src-5 │ ├── App.css │ ├── App.js │ ├── App.test.js │ ├── Components │ │ ├── ArrayProps.jsx │ │ ├── ObjectProps.jsx │ │ ├── PropsBasic.jsx │ │ └── info.jsx │ ├── index.css │ ├── index.js │ ├── logo.svg │ ├── reportWebVitals.js │ └── setupTests.js │ ├── src-Day1 │ ├── App.css │ ├── App.js │ ├── App.test.js │ ├── Blog │ │ ├── BTitle.js │ │ ├── Data.js │ │ └── Title.css │ ├── Components │ │ ├── Card.css │ │ ├── Card.js │ │ └── DCard.js │ ├── index.css │ ├── index.js │ ├── logo.svg │ ├── reportWebVitals.js │ └── setupTests.js │ ├── src-Day2 │ ├── App.css │ ├── App.js │ ├── App.test.js │ ├── Components │ │ ├── DataPages │ │ │ ├── Footer.jsx │ │ │ ├── Header.jsx │ │ │ ├── Info.jsx │ │ │ ├── Main.jsx │ │ │ ├── Page.jsx │ │ │ └── style.css │ │ ├── DetailsProps │ │ │ └── MultipleProps.jsx │ │ ├── GeneralStylePages │ │ │ ├── Footer.jsx │ │ │ ├── Header.jsx │ │ │ ├── Main.jsx │ │ │ ├── Page.jsx │ │ │ └── style.css │ │ ├── Pages │ │ │ ├── Dams.jsx │ │ │ ├── Footer.jsx │ │ │ ├── Header.jsx │ │ │ └── Main.jsx │ │ ├── PagesStyle │ │ │ ├── Footer.jsx │ │ │ ├── Header.jsx │ │ │ └── Main.jsx │ │ ├── StyledPages │ │ │ ├── Footer.jsx │ │ │ ├── Header.jsx │ │ │ └── Main.jsx │ │ └── genStyle │ │ │ ├── Footer.jsx │ │ │ ├── Header.jsx │ │ │ ├── Main.jsx │ │ │ ├── pages.jsx │ │ │ └── style.css │ ├── index.css │ ├── index.js │ ├── logo.svg │ ├── reportWebVitals.js │ └── setupTests.js │ ├── src-Day3 │ ├── App.css │ ├── App.js │ ├── App.test.js │ ├── Components │ │ ├── HexComponent.jsx │ │ └── MathComponent.jsx │ ├── index.css │ ├── index.js │ ├── logo.svg │ ├── reportWebVitals.js │ └── setupTests.js │ └── src │ ├── App.css │ ├── App.js │ ├── App.test.js │ ├── Components │ ├── ChildrenProps.jsx │ ├── InValid.css │ ├── MultipleProp.jsx │ ├── OptionalProps.jsx │ ├── PropsSpread.jsx │ ├── PropsValidator.jsx │ └── ValidProps.jsx │ ├── index.css │ ├── index.js │ ├── logo.svg │ ├── reportWebVitals.js │ └── setupTests.js ├── README.md ├── ReactDemo └── react_demo │ ├── .gitignore │ ├── README.md │ ├── package-lock.json │ ├── package.json │ ├── public │ ├── favicon.ico │ ├── index.html │ ├── logo192.png │ ├── logo512.png │ ├── manifest.json │ └── robots.txt │ ├── src-Function │ ├── App.css │ ├── App.js │ ├── App.test.js │ ├── Components │ │ └── FunctionComponent │ │ │ └── Button.jsx │ ├── index.css │ ├── index.js │ ├── logo.svg │ ├── reportWebVitals.js │ └── setupTests.js │ ├── src-Object │ ├── App.css │ ├── App.js │ ├── App.test.js │ ├── Components │ │ └── ObjectComponent │ │ │ └── Header.jsx │ ├── index.css │ ├── index.js │ ├── logo.svg │ ├── reportWebVitals.js │ └── setupTests.js │ └── src │ ├── App.css │ ├── App.js │ ├── App.test.js │ ├── Components │ ├── Calculator.jsx │ ├── ChatApp.jsx │ ├── ExpenseTracker.jsx │ ├── ImageGallery.jsx │ ├── MovieSearch.jsx │ ├── QuizApp.jsx │ ├── StateCounter.jsx │ ├── ToDoList.jsx │ └── WeatherApp.jsx │ ├── index.css │ ├── index.js │ ├── logo.svg │ ├── reportWebVitals.js │ └── setupTests.js ├── ServerAPI ├── .gitignore ├── .vscode │ ├── launch.json │ └── settings.json ├── command.txt ├── controllers │ └── book.controller.js ├── database │ └── dbConnection.js ├── models │ └── book.model.js ├── package-lock.json ├── package.json ├── routes │ └── book.router.js ├── server.js └── services │ └── book.service.js ├── cv ├── amazon_logo.jpg ├── index.html ├── leetcode.jpg ├── myphoto.jpg └── style.css ├── full javascript ├── .vscode │ ├── launch.json │ └── settings.json ├── DataPage │ ├── .vscode │ │ └── settings.json │ └── StaticData │ │ ├── index.html │ │ ├── script.js │ │ └── style.css ├── Day1 │ ├── .vscode │ │ ├── launch.json │ │ └── settings.json │ ├── 02.datatype │ │ ├── math_obj.js │ │ ├── non-premitive.js │ │ ├── primitive.js │ │ ├── randomN.js │ │ ├── string_1.js │ │ ├── string_2.js │ │ ├── string_3.js │ │ ├── string_methods.js │ │ └── string_methods │ │ │ ├── accessing_character.js │ │ │ ├── char_at.js │ │ │ ├── char_code_at.js │ │ │ ├── concat.js │ │ │ ├── ends_with.js │ │ │ ├── includes.js │ │ │ ├── index_of.js │ │ │ ├── last_index_of.js │ │ │ ├── length.js │ │ │ ├── match.js │ │ │ ├── repeat.js │ │ │ ├── replace.js │ │ │ ├── search.js │ │ │ ├── split.js │ │ │ ├── starts_with.js │ │ │ ├── substr.js │ │ │ ├── substring.js │ │ │ ├── to_lowercase.js │ │ │ ├── to_uppercase.js │ │ │ └── trim.js │ ├── app.js │ └── index.html ├── Day2 │ ├── Data │ │ └── countries.js │ ├── alert.js │ ├── array.js │ ├── bool.js │ ├── cond.js │ ├── date.js │ ├── operator.js │ └── prompt.js ├── Day3 │ ├── array.js │ └── function.js ├── Day5 │ ├── Anonymousfunction.js │ ├── Arrow.js │ ├── Higer_Order_Function.js │ ├── function.js │ └── restparameter.js ├── Day7 │ └── Destructing.js ├── Javascript Promise │ ├── callback.js │ ├── index.html │ ├── promise.js │ └── script.js ├── day4 │ ├── filter.js │ ├── for-in.js │ ├── for-of.js │ ├── forEach.js │ ├── map.js │ └── style.css └── index.html ├── vsics-batch-1 ├── .gitignore ├── README.md ├── client │ ├── .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 │ │ ├── index.css │ │ ├── index.js │ │ ├── logo.svg │ │ ├── reportWebVitals.js │ │ └── setupTests.js └── server │ ├── .env │ ├── config │ └── config │ ├── controllers │ ├── admin.controller.js │ └── student.controller.js │ ├── database │ └── mongo.connection.js │ ├── databases │ └── mongo.connect.js │ ├── index.js │ ├── models │ ├── admin │ │ ├── admin.model.js │ │ └── dashboard.model.js │ ├── staff │ │ ├── staff.Attendance.model.js │ │ ├── staff.model.js │ │ ├── staff.salary.Model.js │ │ ├── staffAttendence.model.js │ │ └── staffSalary.model.js │ ├── student │ │ ├── student.Attendance.model.js │ │ ├── student.Fees.Model.js │ │ ├── student.model.js │ │ ├── studentAttendance.model.js │ │ └── studentFees.model.js │ └── teacher │ │ ├── teacher.Attendance.model.js │ │ ├── teacher.model.js │ │ ├── teacher.salary.Model.js │ │ ├── teacherAttendence.model.js │ │ └── teacherSalary.model.js │ ├── package-lock.json │ ├── package.json │ ├── routes │ ├── admin.route.js │ ├── staff.route.js │ ├── student.route.js │ └── teacher.route.js │ └── services │ ├── admin.service.js │ ├── staff.service.js │ ├── student.service.js │ └── teacher.service.js ├── vsics-batch-2 ├── .gitignore ├── README.md └── server │ ├── .env │ ├── controllers │ ├── admin.controller.js │ └── student.controller.js │ ├── databases │ ├── mongo.connect.js │ └── mongo.connection.js │ ├── index.js │ ├── models │ ├── admin │ │ ├── admin.model.js │ │ └── dashboard.model.js │ ├── staff │ │ ├── staff.Attendance.model.js │ │ ├── staff.Salary.model.js │ │ ├── staff.model.js │ │ ├── staffAttendence.model.js │ │ └── staffSalary.model.js │ ├── student │ │ ├── student Attendance.model.js │ │ ├── student.Fees.model.js │ │ ├── student.model.js │ │ ├── studentAttendance.model.js │ │ └── studentFees.model.js │ └── teacher │ │ ├── teacher.Attendance.model.js │ │ ├── teacher.Salary.model.js │ │ ├── teacher.model.js │ │ ├── teacherAttendence.model.js │ │ └── teacherSalary.model.js │ ├── package-lock.json │ ├── package.json │ ├── routes │ ├── admin.route.js │ ├── staff.route.js │ ├── student.route.js │ └── teacher.route.js │ └── services │ ├── admin.service.js │ ├── staff.service.js │ ├── student.service.js │ └── teacher.service.js └── vsics-batch-3 ├── .gitignore ├── README.md └── server ├── .env ├── controllers ├── admin.controller.js └── student.controller.js ├── databases └── mongo.connect.js ├── index.js ├── models ├── admin │ ├── admin.model.js │ └── dashboard.model.js ├── staff │ ├── staff.Attendance.model.js │ ├── staff.Salary.model.js │ ├── staff.model.js │ ├── staffAttendence.model.js │ └── staffSalary.model.js ├── student │ ├── student Attendance.model.js │ ├── student.Fees.model.js │ ├── student.model.js │ ├── studentAttendance.model.js │ └── studentFees.model.js └── teacher │ ├── teacher.Attendance.model.js │ ├── teacher.Salary.model.js │ ├── teacher.model.js │ ├── teacherAttendence.model.js │ └── teacherSalary.model.js ├── package-lock.json ├── package.json ├── routes ├── admin.route.js ├── staff.route.js ├── student.route.js └── teacher.route.js └── services ├── admin.service.js ├── staff.service.js ├── student.service.js └── teacher.service.js /.gitignore: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/js55998/vsics_dames/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /ASSIGNMENTS/assignment9.1.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/js55998/vsics_dames/HEAD/ASSIGNMENTS/assignment9.1.html -------------------------------------------------------------------------------- /ASSIGNMENTS/assignment9.2.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/js55998/vsics_dames/HEAD/ASSIGNMENTS/assignment9.2.html -------------------------------------------------------------------------------- /ASSIGNMENTS/t1.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/js55998/vsics_dames/HEAD/ASSIGNMENTS/t1.html -------------------------------------------------------------------------------- /ASSIGNMENTS/t2.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/js55998/vsics_dames/HEAD/ASSIGNMENTS/t2.html -------------------------------------------------------------------------------- /DAMS/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/js55998/vsics_dames/HEAD/DAMS/.gitignore -------------------------------------------------------------------------------- /DAMS/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/js55998/vsics_dames/HEAD/DAMS/README.md -------------------------------------------------------------------------------- /DAMS/server/.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/js55998/vsics_dames/HEAD/DAMS/server/.env -------------------------------------------------------------------------------- /DAMS/server/.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/js55998/vsics_dames/HEAD/DAMS/server/.vscode/settings.json -------------------------------------------------------------------------------- /DAMS/server/controllers/admin.controller.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/js55998/vsics_dames/HEAD/DAMS/server/controllers/admin.controller.js -------------------------------------------------------------------------------- /DAMS/server/controllers/student.controller.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/js55998/vsics_dames/HEAD/DAMS/server/controllers/student.controller.js -------------------------------------------------------------------------------- /DAMS/server/databases/mongo.connect.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/js55998/vsics_dames/HEAD/DAMS/server/databases/mongo.connect.js -------------------------------------------------------------------------------- /DAMS/server/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/js55998/vsics_dames/HEAD/DAMS/server/index.js -------------------------------------------------------------------------------- /DAMS/server/models/admin/admin.model.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/js55998/vsics_dames/HEAD/DAMS/server/models/admin/admin.model.js -------------------------------------------------------------------------------- /DAMS/server/models/admin/dashboard.model.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/js55998/vsics_dames/HEAD/DAMS/server/models/admin/dashboard.model.js -------------------------------------------------------------------------------- /DAMS/server/models/staff/staff.model.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/js55998/vsics_dames/HEAD/DAMS/server/models/staff/staff.model.js -------------------------------------------------------------------------------- /DAMS/server/models/staff/staffAttendence.model.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/js55998/vsics_dames/HEAD/DAMS/server/models/staff/staffAttendence.model.js -------------------------------------------------------------------------------- /DAMS/server/models/staff/staffSalary.model.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/js55998/vsics_dames/HEAD/DAMS/server/models/staff/staffSalary.model.js -------------------------------------------------------------------------------- /DAMS/server/models/student/student.model.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/js55998/vsics_dames/HEAD/DAMS/server/models/student/student.model.js -------------------------------------------------------------------------------- /DAMS/server/models/student/studentAttendance.model.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/js55998/vsics_dames/HEAD/DAMS/server/models/student/studentAttendance.model.js -------------------------------------------------------------------------------- /DAMS/server/models/student/studentFees.model.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/js55998/vsics_dames/HEAD/DAMS/server/models/student/studentFees.model.js -------------------------------------------------------------------------------- /DAMS/server/models/teacher/teacher.model.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/js55998/vsics_dames/HEAD/DAMS/server/models/teacher/teacher.model.js -------------------------------------------------------------------------------- /DAMS/server/models/teacher/teacherAttendence.model.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/js55998/vsics_dames/HEAD/DAMS/server/models/teacher/teacherAttendence.model.js -------------------------------------------------------------------------------- /DAMS/server/models/teacher/teacherSalary.model.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/js55998/vsics_dames/HEAD/DAMS/server/models/teacher/teacherSalary.model.js -------------------------------------------------------------------------------- /DAMS/server/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/js55998/vsics_dames/HEAD/DAMS/server/package-lock.json -------------------------------------------------------------------------------- /DAMS/server/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/js55998/vsics_dames/HEAD/DAMS/server/package.json -------------------------------------------------------------------------------- /DAMS/server/routes/admin.route.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /DAMS/server/routes/staff.route.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /DAMS/server/routes/student.route.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/js55998/vsics_dames/HEAD/DAMS/server/routes/student.route.js -------------------------------------------------------------------------------- /DAMS/server/routes/teacher.route.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /DAMS/server/services/admin.service.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/js55998/vsics_dames/HEAD/DAMS/server/services/admin.service.js -------------------------------------------------------------------------------- /DAMS/server/services/staff.service.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /DAMS/server/services/student.service.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/js55998/vsics_dames/HEAD/DAMS/server/services/student.service.js -------------------------------------------------------------------------------- /DAMS/server/services/teacher.service.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /FULL CSS/CSS3/BoxModel/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/js55998/vsics_dames/HEAD/FULL CSS/CSS3/BoxModel/index.html -------------------------------------------------------------------------------- /FULL CSS/CSS3/BoxModel/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/js55998/vsics_dames/HEAD/FULL CSS/CSS3/BoxModel/style.css -------------------------------------------------------------------------------- /FULL CSS/CSS3/Color/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/js55998/vsics_dames/HEAD/FULL CSS/CSS3/Color/index.html -------------------------------------------------------------------------------- /FULL CSS/CSS3/Color/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/js55998/vsics_dames/HEAD/FULL CSS/CSS3/Color/style.css -------------------------------------------------------------------------------- /FULL CSS/CSS3/Column/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/js55998/vsics_dames/HEAD/FULL CSS/CSS3/Column/index.html -------------------------------------------------------------------------------- /FULL CSS/CSS3/Column/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/js55998/vsics_dames/HEAD/FULL CSS/CSS3/Column/style.css -------------------------------------------------------------------------------- /FULL CSS/CSS3/DisplayProperty/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/js55998/vsics_dames/HEAD/FULL CSS/CSS3/DisplayProperty/index.html -------------------------------------------------------------------------------- /FULL CSS/CSS3/DisplayProperty/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/js55998/vsics_dames/HEAD/FULL CSS/CSS3/DisplayProperty/style.css -------------------------------------------------------------------------------- /FULL CSS/CSS3/FlexBox/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/js55998/vsics_dames/HEAD/FULL CSS/CSS3/FlexBox/index.html -------------------------------------------------------------------------------- /FULL CSS/CSS3/FlexBox/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/js55998/vsics_dames/HEAD/FULL CSS/CSS3/FlexBox/style.css -------------------------------------------------------------------------------- /FULL CSS/CSS3/Float/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/js55998/vsics_dames/HEAD/FULL CSS/CSS3/Float/index.html -------------------------------------------------------------------------------- /FULL CSS/CSS3/Float/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/js55998/vsics_dames/HEAD/FULL CSS/CSS3/Float/style.css -------------------------------------------------------------------------------- /FULL CSS/CSS3/Grid/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/js55998/vsics_dames/HEAD/FULL CSS/CSS3/Grid/index.html -------------------------------------------------------------------------------- /FULL CSS/CSS3/Grid/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/js55998/vsics_dames/HEAD/FULL CSS/CSS3/Grid/style.css -------------------------------------------------------------------------------- /FULL CSS/CSS3/HowToApplyCSS/CSS/style.css: -------------------------------------------------------------------------------- 1 | /* External css */ 2 | p { 3 | font-size: 64px; 4 | color: red; 5 | } 6 | -------------------------------------------------------------------------------- /FULL CSS/CSS3/HowToApplyCSS/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/js55998/vsics_dames/HEAD/FULL CSS/CSS3/HowToApplyCSS/index.html -------------------------------------------------------------------------------- /FULL CSS/CSS3/HyperLink/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/js55998/vsics_dames/HEAD/FULL CSS/CSS3/HyperLink/index.html -------------------------------------------------------------------------------- /FULL CSS/CSS3/HyperLink/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/js55998/vsics_dames/HEAD/FULL CSS/CSS3/HyperLink/style.css -------------------------------------------------------------------------------- /FULL CSS/CSS3/ListStyle/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/js55998/vsics_dames/HEAD/FULL CSS/CSS3/ListStyle/index.html -------------------------------------------------------------------------------- /FULL CSS/CSS3/ListStyle/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/js55998/vsics_dames/HEAD/FULL CSS/CSS3/ListStyle/style.css -------------------------------------------------------------------------------- /FULL CSS/CSS3/MiniCSSProject/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/js55998/vsics_dames/HEAD/FULL CSS/CSS3/MiniCSSProject/index.html -------------------------------------------------------------------------------- /FULL CSS/CSS3/MiniCSSProject/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/js55998/vsics_dames/HEAD/FULL CSS/CSS3/MiniCSSProject/style.css -------------------------------------------------------------------------------- /FULL CSS/CSS3/PositionProperty/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/js55998/vsics_dames/HEAD/FULL CSS/CSS3/PositionProperty/index.html -------------------------------------------------------------------------------- /FULL CSS/CSS3/PositionProperty/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/js55998/vsics_dames/HEAD/FULL CSS/CSS3/PositionProperty/style.css -------------------------------------------------------------------------------- /FULL CSS/CSS3/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/js55998/vsics_dames/HEAD/FULL CSS/CSS3/README.md -------------------------------------------------------------------------------- /FULL CSS/CSS3/Selector/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/js55998/vsics_dames/HEAD/FULL CSS/CSS3/Selector/index.html -------------------------------------------------------------------------------- /FULL CSS/CSS3/Selector/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/js55998/vsics_dames/HEAD/FULL CSS/CSS3/Selector/style.css -------------------------------------------------------------------------------- /FULL CSS/CSS3/Typography/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/js55998/vsics_dames/HEAD/FULL CSS/CSS3/Typography/index.html -------------------------------------------------------------------------------- /FULL CSS/CSS3/Typography/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/js55998/vsics_dames/HEAD/FULL CSS/CSS3/Typography/style.css -------------------------------------------------------------------------------- /FULL CSS/CSS3/Unit&Size/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/js55998/vsics_dames/HEAD/FULL CSS/CSS3/Unit&Size/index.html -------------------------------------------------------------------------------- /FULL CSS/CSS3/Unit&Size/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/js55998/vsics_dames/HEAD/FULL CSS/CSS3/Unit&Size/style.css -------------------------------------------------------------------------------- /FULL CSS/css/Basic/.vscode/settings.json: -------------------------------------------------------------------------------- 1 | { 2 | "liveServer.settings.port": 5501 3 | } -------------------------------------------------------------------------------- /FULL CSS/css/Basic/All_Css_Files/0.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/js55998/vsics_dames/HEAD/FULL CSS/css/Basic/All_Css_Files/0.css -------------------------------------------------------------------------------- /FULL CSS/css/Basic/All_Css_Files/0.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/js55998/vsics_dames/HEAD/FULL CSS/css/Basic/All_Css_Files/0.html -------------------------------------------------------------------------------- /FULL CSS/css/Basic/All_Css_Files/1_selector.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/js55998/vsics_dames/HEAD/FULL CSS/css/Basic/All_Css_Files/1_selector.css -------------------------------------------------------------------------------- /FULL CSS/css/Basic/All_Css_Files/1_selector.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/js55998/vsics_dames/HEAD/FULL CSS/css/Basic/All_Css_Files/1_selector.html -------------------------------------------------------------------------------- /FULL CSS/css/Basic/All_Css_Files/2_pseudo.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/js55998/vsics_dames/HEAD/FULL CSS/css/Basic/All_Css_Files/2_pseudo.css -------------------------------------------------------------------------------- /FULL CSS/css/Basic/All_Css_Files/2_pseudo.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/js55998/vsics_dames/HEAD/FULL CSS/css/Basic/All_Css_Files/2_pseudo.html -------------------------------------------------------------------------------- /FULL CSS/css/Basic/All_Css_Files/3_props.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/js55998/vsics_dames/HEAD/FULL CSS/css/Basic/All_Css_Files/3_props.css -------------------------------------------------------------------------------- /FULL CSS/css/Basic/All_Css_Files/3_props.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/js55998/vsics_dames/HEAD/FULL CSS/css/Basic/All_Css_Files/3_props.html -------------------------------------------------------------------------------- /FULL CSS/css/Basic/All_Css_Files/4_transform.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/js55998/vsics_dames/HEAD/FULL CSS/css/Basic/All_Css_Files/4_transform.css -------------------------------------------------------------------------------- /FULL CSS/css/Basic/All_Css_Files/4_transform.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/js55998/vsics_dames/HEAD/FULL CSS/css/Basic/All_Css_Files/4_transform.html -------------------------------------------------------------------------------- /FULL CSS/css/Basic/All_Css_Files/5_3D_Transform.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/js55998/vsics_dames/HEAD/FULL CSS/css/Basic/All_Css_Files/5_3D_Transform.css -------------------------------------------------------------------------------- /FULL CSS/css/Basic/All_Css_Files/5_3D_Transform.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/js55998/vsics_dames/HEAD/FULL CSS/css/Basic/All_Css_Files/5_3D_Transform.html -------------------------------------------------------------------------------- /FULL CSS/css/Basic/All_Css_Files/6_transition.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/js55998/vsics_dames/HEAD/FULL CSS/css/Basic/All_Css_Files/6_transition.css -------------------------------------------------------------------------------- /FULL CSS/css/Basic/All_Css_Files/6_transition.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/js55998/vsics_dames/HEAD/FULL CSS/css/Basic/All_Css_Files/6_transition.html -------------------------------------------------------------------------------- /FULL CSS/css/Basic/All_Css_Files/7_position.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/js55998/vsics_dames/HEAD/FULL CSS/css/Basic/All_Css_Files/7_position.css -------------------------------------------------------------------------------- /FULL CSS/css/Basic/All_Css_Files/7_position.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/js55998/vsics_dames/HEAD/FULL CSS/css/Basic/All_Css_Files/7_position.html -------------------------------------------------------------------------------- /FULL CSS/css/Basic/All_Css_Files/8_col.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/js55998/vsics_dames/HEAD/FULL CSS/css/Basic/All_Css_Files/8_col.css -------------------------------------------------------------------------------- /FULL CSS/css/Basic/All_Css_Files/8_col.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/js55998/vsics_dames/HEAD/FULL CSS/css/Basic/All_Css_Files/8_col.html -------------------------------------------------------------------------------- /FULL CSS/css/Basic/All_Css_Files/9_grid.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/js55998/vsics_dames/HEAD/FULL CSS/css/Basic/All_Css_Files/9_grid.css -------------------------------------------------------------------------------- /FULL CSS/css/Basic/All_Css_Files/9_grid.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/js55998/vsics_dames/HEAD/FULL CSS/css/Basic/All_Css_Files/9_grid.html -------------------------------------------------------------------------------- /FULL CSS/css/Basic/All_Css_Files/images.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/js55998/vsics_dames/HEAD/FULL CSS/css/Basic/All_Css_Files/images.jpg -------------------------------------------------------------------------------- /FULL CSS/css/Basic/All_Css_Files/index.js: -------------------------------------------------------------------------------- 1 | console.log("") -------------------------------------------------------------------------------- /FULL CSS/css/Basic/All_Css_Files/pic.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/js55998/vsics_dames/HEAD/FULL CSS/css/Basic/All_Css_Files/pic.jpg -------------------------------------------------------------------------------- /FULL CSS/css/Basic/ResponsiveWebDesign/images/0.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/js55998/vsics_dames/HEAD/FULL CSS/css/Basic/ResponsiveWebDesign/images/0.JPG -------------------------------------------------------------------------------- /FULL CSS/css/Basic/ResponsiveWebDesign/images/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/js55998/vsics_dames/HEAD/FULL CSS/css/Basic/ResponsiveWebDesign/images/1.png -------------------------------------------------------------------------------- /FULL CSS/css/Basic/ResponsiveWebDesign/images/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/js55998/vsics_dames/HEAD/FULL CSS/css/Basic/ResponsiveWebDesign/images/2.png -------------------------------------------------------------------------------- /FULL CSS/css/Basic/ResponsiveWebDesign/images/3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/js55998/vsics_dames/HEAD/FULL CSS/css/Basic/ResponsiveWebDesign/images/3.png -------------------------------------------------------------------------------- /FULL CSS/css/Basic/ResponsiveWebDesign/responsiveContent.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/js55998/vsics_dames/HEAD/FULL CSS/css/Basic/ResponsiveWebDesign/responsiveContent.html -------------------------------------------------------------------------------- /FULL CSS/css/Basic/ResponsiveWebDesign/responsiveLayout.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/js55998/vsics_dames/HEAD/FULL CSS/css/Basic/ResponsiveWebDesign/responsiveLayout.html -------------------------------------------------------------------------------- /FULL CSS/css/Basic/ResponsiveWebDesign/responsiveSize.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/js55998/vsics_dames/HEAD/FULL CSS/css/Basic/ResponsiveWebDesign/responsiveSize.html -------------------------------------------------------------------------------- /FULL CSS/css/Basic/assignment9.1.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/js55998/vsics_dames/HEAD/FULL CSS/css/Basic/assignment9.1.html -------------------------------------------------------------------------------- /FULL CSS/css/Basic/assignment9.2.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/js55998/vsics_dames/HEAD/FULL CSS/css/Basic/assignment9.2.html -------------------------------------------------------------------------------- /FULL CSS/css/Basic/dub/.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/js55998/vsics_dames/HEAD/FULL CSS/css/Basic/dub/.vscode/launch.json -------------------------------------------------------------------------------- /FULL CSS/css/Basic/dub/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/js55998/vsics_dames/HEAD/FULL CSS/css/Basic/dub/index.html -------------------------------------------------------------------------------- /FULL CSS/css/Basic/dub/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/js55998/vsics_dames/HEAD/FULL CSS/css/Basic/dub/script.js -------------------------------------------------------------------------------- /FULL CSS/css/Basic/dub/style.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /FULL CSS/css/Basic/style1.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/js55998/vsics_dames/HEAD/FULL CSS/css/Basic/style1.css -------------------------------------------------------------------------------- /FULL CSS/css/Basic/style2.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/js55998/vsics_dames/HEAD/FULL CSS/css/Basic/style2.css -------------------------------------------------------------------------------- /FULL CSS/css/intro/EN-Semantic-Search-Non-Semantic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/js55998/vsics_dames/HEAD/FULL CSS/css/intro/EN-Semantic-Search-Non-Semantic.png -------------------------------------------------------------------------------- /FULL CSS/css/intro/Header.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/js55998/vsics_dames/HEAD/FULL CSS/css/intro/Header.html -------------------------------------------------------------------------------- /FULL CSS/css/intro/Semantic-html.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/js55998/vsics_dames/HEAD/FULL CSS/css/intro/Semantic-html.png -------------------------------------------------------------------------------- /FULL CSS/css/intro/article.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/js55998/vsics_dames/HEAD/FULL CSS/css/intro/article.html -------------------------------------------------------------------------------- /FULL CSS/css/intro/artisec.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/js55998/vsics_dames/HEAD/FULL CSS/css/intro/artisec.html -------------------------------------------------------------------------------- /FULL CSS/css/intro/aside.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/js55998/vsics_dames/HEAD/FULL CSS/css/intro/aside.html -------------------------------------------------------------------------------- /FULL CSS/css/intro/details.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/js55998/vsics_dames/HEAD/FULL CSS/css/intro/details.html -------------------------------------------------------------------------------- /FULL CSS/css/intro/div/1.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/js55998/vsics_dames/HEAD/FULL CSS/css/intro/div/1.html -------------------------------------------------------------------------------- /FULL CSS/css/intro/div/2.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/js55998/vsics_dames/HEAD/FULL CSS/css/intro/div/2.html -------------------------------------------------------------------------------- /FULL CSS/css/intro/div/3.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/js55998/vsics_dames/HEAD/FULL CSS/css/intro/div/3.html -------------------------------------------------------------------------------- /FULL CSS/css/intro/div/4.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/js55998/vsics_dames/HEAD/FULL CSS/css/intro/div/4.html -------------------------------------------------------------------------------- /FULL CSS/css/intro/div/a.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/js55998/vsics_dames/HEAD/FULL CSS/css/intro/div/a.html -------------------------------------------------------------------------------- /FULL CSS/css/intro/div/fffff.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/js55998/vsics_dames/HEAD/FULL CSS/css/intro/div/fffff.html -------------------------------------------------------------------------------- /FULL CSS/css/intro/figure.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/js55998/vsics_dames/HEAD/FULL CSS/css/intro/figure.html -------------------------------------------------------------------------------- /FULL CSS/css/intro/footer.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/js55998/vsics_dames/HEAD/FULL CSS/css/intro/footer.html -------------------------------------------------------------------------------- /FULL CSS/css/intro/img_sem_elements.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/js55998/vsics_dames/HEAD/FULL CSS/css/intro/img_sem_elements.gif -------------------------------------------------------------------------------- /FULL CSS/css/intro/main.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/js55998/vsics_dames/HEAD/FULL CSS/css/intro/main.html -------------------------------------------------------------------------------- /FULL CSS/css/intro/mark.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/js55998/vsics_dames/HEAD/FULL CSS/css/intro/mark.html -------------------------------------------------------------------------------- /FULL CSS/css/intro/nav1.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/js55998/vsics_dames/HEAD/FULL CSS/css/intro/nav1.html -------------------------------------------------------------------------------- /FULL CSS/css/intro/nav2.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/js55998/vsics_dames/HEAD/FULL CSS/css/intro/nav2.html -------------------------------------------------------------------------------- /FULL CSS/css/intro/non-semantic.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/js55998/vsics_dames/HEAD/FULL CSS/css/intro/non-semantic.html -------------------------------------------------------------------------------- /FULL CSS/css/intro/page.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/js55998/vsics_dames/HEAD/FULL CSS/css/intro/page.html -------------------------------------------------------------------------------- /FULL CSS/css/intro/process.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/js55998/vsics_dames/HEAD/FULL CSS/css/intro/process.html -------------------------------------------------------------------------------- /FULL CSS/css/intro/section.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/js55998/vsics_dames/HEAD/FULL CSS/css/intro/section.html -------------------------------------------------------------------------------- /FULL CSS/css/intro/semantic.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/js55998/vsics_dames/HEAD/FULL CSS/css/intro/semantic.html -------------------------------------------------------------------------------- /FULL CSS/css/intro/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/js55998/vsics_dames/HEAD/FULL CSS/css/intro/styles.css -------------------------------------------------------------------------------- /FULL CSS/css/property-background-color/styles.css: -------------------------------------------------------------------------------- 1 | p { 2 | background-color: rgb(0, 0, 255); 3 | } 4 | -------------------------------------------------------------------------------- /FULL CSS/css/property-background-color/webpage.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/js55998/vsics_dames/HEAD/FULL CSS/css/property-background-color/webpage.html -------------------------------------------------------------------------------- /FULL CSS/css/property-background-image/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/js55998/vsics_dames/HEAD/FULL CSS/css/property-background-image/styles.css -------------------------------------------------------------------------------- /FULL CSS/css/property-background-image/webpage.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/js55998/vsics_dames/HEAD/FULL CSS/css/property-background-image/webpage.html -------------------------------------------------------------------------------- /FULL CSS/css/property-border-bottom-width/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/js55998/vsics_dames/HEAD/FULL CSS/css/property-border-bottom-width/styles.css -------------------------------------------------------------------------------- /FULL CSS/css/property-border-bottom-width/webpage.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/js55998/vsics_dames/HEAD/FULL CSS/css/property-border-bottom-width/webpage.html -------------------------------------------------------------------------------- /FULL CSS/css/property-border-left-width/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/js55998/vsics_dames/HEAD/FULL CSS/css/property-border-left-width/styles.css -------------------------------------------------------------------------------- /FULL CSS/css/property-border-left-width/webpage.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/js55998/vsics_dames/HEAD/FULL CSS/css/property-border-left-width/webpage.html -------------------------------------------------------------------------------- /FULL CSS/css/property-border-right-width/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/js55998/vsics_dames/HEAD/FULL CSS/css/property-border-right-width/styles.css -------------------------------------------------------------------------------- /FULL CSS/css/property-border-right-width/webpage.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/js55998/vsics_dames/HEAD/FULL CSS/css/property-border-right-width/webpage.html -------------------------------------------------------------------------------- /FULL CSS/css/property-border-top-width/styles.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/js55998/vsics_dames/HEAD/FULL CSS/css/property-border-top-width/styles.html -------------------------------------------------------------------------------- /FULL CSS/css/property-border-top-width/webpage.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/js55998/vsics_dames/HEAD/FULL CSS/css/property-border-top-width/webpage.html -------------------------------------------------------------------------------- /FULL CSS/css/property-border-width/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/js55998/vsics_dames/HEAD/FULL CSS/css/property-border-width/styles.css -------------------------------------------------------------------------------- /FULL CSS/css/property-border-width/webpage.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/js55998/vsics_dames/HEAD/FULL CSS/css/property-border-width/webpage.html -------------------------------------------------------------------------------- /FULL CSS/css/property-color/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/js55998/vsics_dames/HEAD/FULL CSS/css/property-color/styles.css -------------------------------------------------------------------------------- /FULL CSS/css/property-color/webpage.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/js55998/vsics_dames/HEAD/FULL CSS/css/property-color/webpage.html -------------------------------------------------------------------------------- /FULL CSS/css/property-opacity/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/js55998/vsics_dames/HEAD/FULL CSS/css/property-opacity/styles.css -------------------------------------------------------------------------------- /FULL CSS/css/property-opacity/webpage.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/js55998/vsics_dames/HEAD/FULL CSS/css/property-opacity/webpage.html -------------------------------------------------------------------------------- /FULL CSS/css/property-text-align/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/js55998/vsics_dames/HEAD/FULL CSS/css/property-text-align/styles.css -------------------------------------------------------------------------------- /FULL CSS/css/property-text-align/webpage.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/js55998/vsics_dames/HEAD/FULL CSS/css/property-text-align/webpage.html -------------------------------------------------------------------------------- /HTML FULL/Advanced content/HTML Attributes/customize-using-attribute-style/example1.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/js55998/vsics_dames/HEAD/HTML FULL/Advanced content/HTML Attributes/customize-using-attribute-style/example1.html -------------------------------------------------------------------------------- /HTML FULL/Advanced content/HTML Attributes/using-attribute-title/example1.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/js55998/vsics_dames/HEAD/HTML FULL/Advanced content/HTML Attributes/using-attribute-title/example1.html -------------------------------------------------------------------------------- /HTML FULL/Advanced content/HTML Attributes/using-the-attribute-lang/example1.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/js55998/vsics_dames/HEAD/HTML FULL/Advanced content/HTML Attributes/using-the-attribute-lang/example1.html -------------------------------------------------------------------------------- /HTML FULL/Advanced content/HTML Attributes/using-the-attribute-lang/example2.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/js55998/vsics_dames/HEAD/HTML FULL/Advanced content/HTML Attributes/using-the-attribute-lang/example2.html -------------------------------------------------------------------------------- /HTML FULL/Advanced content/HTML Attributes/using-the-attribute-style-for-unordered-lists/example1.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/js55998/vsics_dames/HEAD/HTML FULL/Advanced content/HTML Attributes/using-the-attribute-style-for-unordered-lists/example1.html -------------------------------------------------------------------------------- /HTML FULL/Advanced content/HTML Attributes/using-the-attribute-style-for-unordered-lists/example2.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/js55998/vsics_dames/HEAD/HTML FULL/Advanced content/HTML Attributes/using-the-attribute-style-for-unordered-lists/example2.html -------------------------------------------------------------------------------- /HTML FULL/Advanced content/HTML Attributes/using-the-attribute-style-for-unordered-lists/example3.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/js55998/vsics_dames/HEAD/HTML FULL/Advanced content/HTML Attributes/using-the-attribute-style-for-unordered-lists/example3.html -------------------------------------------------------------------------------- /HTML FULL/Advanced content/HTML Attributes/using-the-attribute-style-for-unordered-lists/example4.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/js55998/vsics_dames/HEAD/HTML FULL/Advanced content/HTML Attributes/using-the-attribute-style-for-unordered-lists/example4.html -------------------------------------------------------------------------------- /HTML FULL/Advanced content/HTML Attributes/using-the-attribute-type-ordered-lists/example1.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/js55998/vsics_dames/HEAD/HTML FULL/Advanced content/HTML Attributes/using-the-attribute-type-ordered-lists/example1.html -------------------------------------------------------------------------------- /HTML FULL/Advanced content/HTML Attributes/using-the-attribute-type-ordered-lists/example2.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/js55998/vsics_dames/HEAD/HTML FULL/Advanced content/HTML Attributes/using-the-attribute-type-ordered-lists/example2.html -------------------------------------------------------------------------------- /HTML FULL/Advanced content/HTML Attributes/using-the-attribute-type-ordered-lists/example3.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/js55998/vsics_dames/HEAD/HTML FULL/Advanced content/HTML Attributes/using-the-attribute-type-ordered-lists/example3.html -------------------------------------------------------------------------------- /HTML FULL/Advanced content/HTML Tags/using-the-tag-figure/example1.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/js55998/vsics_dames/HEAD/HTML FULL/Advanced content/HTML Tags/using-the-tag-figure/example1.html -------------------------------------------------------------------------------- /HTML FULL/Advanced content/HTML Tags/using-the-tag-head/example1.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/js55998/vsics_dames/HEAD/HTML FULL/Advanced content/HTML Tags/using-the-tag-head/example1.html -------------------------------------------------------------------------------- /HTML FULL/Advanced content/HTML Tags/using-the-tag-head/example2.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/js55998/vsics_dames/HEAD/HTML FULL/Advanced content/HTML Tags/using-the-tag-head/example2.html -------------------------------------------------------------------------------- /HTML FULL/Advanced content/HTML Tags/using-the-tag-title/example1.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/js55998/vsics_dames/HEAD/HTML FULL/Advanced content/HTML Tags/using-the-tag-title/example1.html -------------------------------------------------------------------------------- /HTML FULL/Advanced content/List Advanced/create-a-definition-list/example1.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/js55998/vsics_dames/HEAD/HTML FULL/Advanced content/List Advanced/create-a-definition-list/example1.html -------------------------------------------------------------------------------- /HTML FULL/Advanced content/List Advanced/create-an-ordered-list/example1.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/js55998/vsics_dames/HEAD/HTML FULL/Advanced content/List Advanced/create-an-ordered-list/example1.html -------------------------------------------------------------------------------- /HTML FULL/Advanced content/List Advanced/create-an-unordered-list/example1.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/js55998/vsics_dames/HEAD/HTML FULL/Advanced content/List Advanced/create-an-unordered-list/example1.html -------------------------------------------------------------------------------- /HTML FULL/Advanced content/List Advanced/create-nested-lists/example1.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/js55998/vsics_dames/HEAD/HTML FULL/Advanced content/List Advanced/create-nested-lists/example1.html -------------------------------------------------------------------------------- /HTML FULL/Advanced content/List Advanced/create-nested-lists/example2.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/js55998/vsics_dames/HEAD/HTML FULL/Advanced content/List Advanced/create-nested-lists/example2.html -------------------------------------------------------------------------------- /HTML FULL/Advanced content/List Advanced/create-nested-lists/example3.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/js55998/vsics_dames/HEAD/HTML FULL/Advanced content/List Advanced/create-nested-lists/example3.html -------------------------------------------------------------------------------- /HTML FULL/Advanced content/List Advanced/create-nested-lists/example4.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/js55998/vsics_dames/HEAD/HTML FULL/Advanced content/List Advanced/create-nested-lists/example4.html -------------------------------------------------------------------------------- /HTML FULL/Advanced content/List Advanced/create-nested-lists/example5.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/js55998/vsics_dames/HEAD/HTML FULL/Advanced content/List Advanced/create-nested-lists/example5.html -------------------------------------------------------------------------------- /HTML FULL/Advanced content/List Advanced/create-nested-lists/example6.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/js55998/vsics_dames/HEAD/HTML FULL/Advanced content/List Advanced/create-nested-lists/example6.html -------------------------------------------------------------------------------- /HTML FULL/Advanced content/html-document-structure/example1.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/js55998/vsics_dames/HEAD/HTML FULL/Advanced content/html-document-structure/example1.html -------------------------------------------------------------------------------- /HTML FULL/Advanced content/html-headings/example1.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/js55998/vsics_dames/HEAD/HTML FULL/Advanced content/html-headings/example1.html -------------------------------------------------------------------------------- /HTML FULL/Advanced content/saving-html-css-documents/CompletedExample.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/js55998/vsics_dames/HEAD/HTML FULL/Advanced content/saving-html-css-documents/CompletedExample.html -------------------------------------------------------------------------------- /HTML FULL/Advanced content/saving-html-css-documents/WebPage.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/js55998/vsics_dames/HEAD/HTML FULL/Advanced content/saving-html-css-documents/WebPage.html -------------------------------------------------------------------------------- /HTML FULL/Advanced content/saving-html-css-documents/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/js55998/vsics_dames/HEAD/HTML FULL/Advanced content/saving-html-css-documents/styles.css -------------------------------------------------------------------------------- /HTML FULL/HTML/01.intro.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/js55998/vsics_dames/HEAD/HTML FULL/HTML/01.intro.html -------------------------------------------------------------------------------- /HTML FULL/HTML/02.attributes.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/js55998/vsics_dames/HEAD/HTML FULL/HTML/02.attributes.html -------------------------------------------------------------------------------- /HTML FULL/HTML/03.headings.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/js55998/vsics_dames/HEAD/HTML FULL/HTML/03.headings.html -------------------------------------------------------------------------------- /HTML FULL/HTML/04.paragraphs.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/js55998/vsics_dames/HEAD/HTML FULL/HTML/04.paragraphs.html -------------------------------------------------------------------------------- /HTML FULL/HTML/05.styles.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/js55998/vsics_dames/HEAD/HTML FULL/HTML/05.styles.html -------------------------------------------------------------------------------- /HTML FULL/HTML/06.text_formatting.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/js55998/vsics_dames/HEAD/HTML FULL/HTML/06.text_formatting.html -------------------------------------------------------------------------------- /HTML FULL/HTML/07.quotations.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/js55998/vsics_dames/HEAD/HTML FULL/HTML/07.quotations.html -------------------------------------------------------------------------------- /HTML FULL/HTML/08.colors.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/js55998/vsics_dames/HEAD/HTML FULL/HTML/08.colors.html -------------------------------------------------------------------------------- /HTML FULL/HTML/09.html_css.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/js55998/vsics_dames/HEAD/HTML FULL/HTML/09.html_css.html -------------------------------------------------------------------------------- /HTML FULL/HTML/10.html_links.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/js55998/vsics_dames/HEAD/HTML FULL/HTML/10.html_links.html -------------------------------------------------------------------------------- /HTML FULL/HTML/11.images.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/js55998/vsics_dames/HEAD/HTML FULL/HTML/11.images.html -------------------------------------------------------------------------------- /HTML FULL/HTML/13a.lists.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/js55998/vsics_dames/HEAD/HTML FULL/HTML/13a.lists.html -------------------------------------------------------------------------------- /HTML FULL/HTML/13b.lists.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/js55998/vsics_dames/HEAD/HTML FULL/HTML/13b.lists.html -------------------------------------------------------------------------------- /HTML FULL/HTML/Html Lists/create-a-definition-list/example1.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/js55998/vsics_dames/HEAD/HTML FULL/HTML/Html Lists/create-a-definition-list/example1.html -------------------------------------------------------------------------------- /HTML FULL/HTML/Html Lists/create-an-ordered-list/example1.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/js55998/vsics_dames/HEAD/HTML FULL/HTML/Html Lists/create-an-ordered-list/example1.html -------------------------------------------------------------------------------- /HTML FULL/HTML/Html Lists/create-an-unordered-list/example1.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/js55998/vsics_dames/HEAD/HTML FULL/HTML/Html Lists/create-an-unordered-list/example1.html -------------------------------------------------------------------------------- /HTML FULL/HTML/Html Lists/create-nested-lists/example1.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/js55998/vsics_dames/HEAD/HTML FULL/HTML/Html Lists/create-nested-lists/example1.html -------------------------------------------------------------------------------- /HTML FULL/HTML/Html Lists/create-nested-lists/example2.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/js55998/vsics_dames/HEAD/HTML FULL/HTML/Html Lists/create-nested-lists/example2.html -------------------------------------------------------------------------------- /HTML FULL/HTML/Html Lists/create-nested-lists/example3.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/js55998/vsics_dames/HEAD/HTML FULL/HTML/Html Lists/create-nested-lists/example3.html -------------------------------------------------------------------------------- /HTML FULL/HTML/Html Lists/create-nested-lists/example4.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/js55998/vsics_dames/HEAD/HTML FULL/HTML/Html Lists/create-nested-lists/example4.html -------------------------------------------------------------------------------- /HTML FULL/HTML/Html Lists/create-nested-lists/example5.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/js55998/vsics_dames/HEAD/HTML FULL/HTML/Html Lists/create-nested-lists/example5.html -------------------------------------------------------------------------------- /HTML FULL/HTML/Html Lists/create-nested-lists/example6.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/js55998/vsics_dames/HEAD/HTML FULL/HTML/Html Lists/create-nested-lists/example6.html -------------------------------------------------------------------------------- /HTML FULL/HTML/Html Lists/l1.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/js55998/vsics_dames/HEAD/HTML FULL/HTML/Html Lists/l1.html -------------------------------------------------------------------------------- /HTML FULL/HTML/Html Page And Block Element/create-a-table/example1.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/js55998/vsics_dames/HEAD/HTML FULL/HTML/Html Page And Block Element/create-a-table/example1.html -------------------------------------------------------------------------------- /HTML FULL/HTML/Html Page And Block Element/how-to-add-a-comment/example1.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/js55998/vsics_dames/HEAD/HTML FULL/HTML/Html Page And Block Element/how-to-add-a-comment/example1.html -------------------------------------------------------------------------------- /HTML FULL/HTML/Html Page And Block Element/how-to-add-a-line-break-in-html/example1.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/js55998/vsics_dames/HEAD/HTML FULL/HTML/Html Page And Block Element/how-to-add-a-line-break-in-html/example1.html -------------------------------------------------------------------------------- /HTML FULL/HTML/Html Page And Block Element/how-to-add-a-link/example1.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/js55998/vsics_dames/HEAD/HTML FULL/HTML/Html Page And Block Element/how-to-add-a-link/example1.html -------------------------------------------------------------------------------- /HTML FULL/HTML/Html Page And Block Element/how-to-add-a-paragraph/example1.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/js55998/vsics_dames/HEAD/HTML FULL/HTML/Html Page And Block Element/how-to-add-a-paragraph/example1.html -------------------------------------------------------------------------------- /HTML FULL/HTML/Html Page And Block Element/how-to-add-a-paragraph/example2.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/js55998/vsics_dames/HEAD/HTML FULL/HTML/Html Page And Block Element/how-to-add-a-paragraph/example2.html -------------------------------------------------------------------------------- /HTML FULL/HTML/Html Page And Block Element/how-to-add-an-image/example1.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/js55998/vsics_dames/HEAD/HTML FULL/HTML/Html Page And Block Element/how-to-add-an-image/example1.html -------------------------------------------------------------------------------- /HTML FULL/HTML/Html Page And Block Element/how-to-display-italic-text/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/js55998/vsics_dames/HEAD/HTML FULL/HTML/Html Page And Block Element/how-to-display-italic-text/styles.css -------------------------------------------------------------------------------- /HTML FULL/HTML/Html Page And Block Element/how-to-display-italic-text/webpage.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/js55998/vsics_dames/HEAD/HTML FULL/HTML/Html Page And Block Element/how-to-display-italic-text/webpage.html -------------------------------------------------------------------------------- /HTML FULL/HTML/Html Page And Block Element/using-area-element/test.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/js55998/vsics_dames/HEAD/HTML FULL/HTML/Html Page And Block Element/using-area-element/test.html -------------------------------------------------------------------------------- /HTML FULL/HTML/Html Page And Block Element/using-area-element/webpage.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/js55998/vsics_dames/HEAD/HTML FULL/HTML/Html Page And Block Element/using-area-element/webpage.html -------------------------------------------------------------------------------- /HTML FULL/HTML/Html Page And Block Element/using-the-address-element/webpage.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/js55998/vsics_dames/HEAD/HTML FULL/HTML/Html Page And Block Element/using-the-address-element/webpage.html -------------------------------------------------------------------------------- /HTML FULL/HTML/Html Page And Block Element/using-the-article-element/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/js55998/vsics_dames/HEAD/HTML FULL/HTML/Html Page And Block Element/using-the-article-element/styles.css -------------------------------------------------------------------------------- /HTML FULL/HTML/Html Page And Block Element/using-the-article-element/webpage.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/js55998/vsics_dames/HEAD/HTML FULL/HTML/Html Page And Block Element/using-the-article-element/webpage.html -------------------------------------------------------------------------------- /HTML FULL/HTML/Html Page And Block Element/using-the-aside-element/styles.css: -------------------------------------------------------------------------------- 1 | h2 { 2 | text-align: center; 3 | } 4 | -------------------------------------------------------------------------------- /HTML FULL/HTML/Html Page And Block Element/using-the-aside-element/webpage.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/js55998/vsics_dames/HEAD/HTML FULL/HTML/Html Page And Block Element/using-the-aside-element/webpage.html -------------------------------------------------------------------------------- /HTML FULL/HTML/Html Page And Block Element/using-the-audio-element/a.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/js55998/vsics_dames/HEAD/HTML FULL/HTML/Html Page And Block Element/using-the-audio-element/a.ogg -------------------------------------------------------------------------------- /HTML FULL/HTML/Html Page And Block Element/using-the-audio-element/styles.css: -------------------------------------------------------------------------------- 1 | audio { 2 | display: block; 3 | margin: 0 auto; 4 | } 5 | -------------------------------------------------------------------------------- /HTML FULL/HTML/Html Page And Block Element/using-the-audio-element/webpage.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/js55998/vsics_dames/HEAD/HTML FULL/HTML/Html Page And Block Element/using-the-audio-element/webpage.html -------------------------------------------------------------------------------- /HTML FULL/HTML/Html Page And Block Element/using-the-b-element/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/js55998/vsics_dames/HEAD/HTML FULL/HTML/Html Page And Block Element/using-the-b-element/styles.css -------------------------------------------------------------------------------- /HTML FULL/HTML/Html Page And Block Element/using-the-b-element/webpage.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/js55998/vsics_dames/HEAD/HTML FULL/HTML/Html Page And Block Element/using-the-b-element/webpage.html -------------------------------------------------------------------------------- /HTML FULL/HTML/Html Page And Block Element/using-the-base-element/webpage.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/js55998/vsics_dames/HEAD/HTML FULL/HTML/Html Page And Block Element/using-the-base-element/webpage.html -------------------------------------------------------------------------------- /HTML FULL/HTML/Html Page And Block Element/using-the-body-element/webpage.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/js55998/vsics_dames/HEAD/HTML FULL/HTML/Html Page And Block Element/using-the-body-element/webpage.html -------------------------------------------------------------------------------- /HTML FULL/HTML/Html Page And Block Element/using-the-cite-element/webpage.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/js55998/vsics_dames/HEAD/HTML FULL/HTML/Html Page And Block Element/using-the-cite-element/webpage.html -------------------------------------------------------------------------------- /HTML FULL/HTML/Html Page And Block Element/using-the-code-element/webpage.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/js55998/vsics_dames/HEAD/HTML FULL/HTML/Html Page And Block Element/using-the-code-element/webpage.html -------------------------------------------------------------------------------- /HTML FULL/HTML/Html Page And Block Element/using-the-element-aside/webpage.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/js55998/vsics_dames/HEAD/HTML FULL/HTML/Html Page And Block Element/using-the-element-aside/webpage.html -------------------------------------------------------------------------------- /HTML FULL/HTML/Html Page And Block Element/using-the-em-element/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/js55998/vsics_dames/HEAD/HTML FULL/HTML/Html Page And Block Element/using-the-em-element/styles.css -------------------------------------------------------------------------------- /HTML FULL/HTML/Html Page And Block Element/using-the-em-element/webpage.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/js55998/vsics_dames/HEAD/HTML FULL/HTML/Html Page And Block Element/using-the-em-element/webpage.html -------------------------------------------------------------------------------- /HTML FULL/HTML/Html Page And Block Element/using-the-footer-element/webpage.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/js55998/vsics_dames/HEAD/HTML FULL/HTML/Html Page And Block Element/using-the-footer-element/webpage.html -------------------------------------------------------------------------------- /HTML FULL/HTML/Html Page And Block Element/using-the-hr-element/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/js55998/vsics_dames/HEAD/HTML FULL/HTML/Html Page And Block Element/using-the-hr-element/styles.css -------------------------------------------------------------------------------- /HTML FULL/HTML/Html Page And Block Element/using-the-hr-element/webpage.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/js55998/vsics_dames/HEAD/HTML FULL/HTML/Html Page And Block Element/using-the-hr-element/webpage.html -------------------------------------------------------------------------------- /HTML FULL/HTML/Html Page And Block Element/using-the-mark-element/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/js55998/vsics_dames/HEAD/HTML FULL/HTML/Html Page And Block Element/using-the-mark-element/styles.css -------------------------------------------------------------------------------- /HTML FULL/HTML/Html Page And Block Element/using-the-mark-element/webpage.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/js55998/vsics_dames/HEAD/HTML FULL/HTML/Html Page And Block Element/using-the-mark-element/webpage.html -------------------------------------------------------------------------------- /HTML FULL/HTML/Html Page And Block Element/using-the-s-element/styles.css: -------------------------------------------------------------------------------- 1 | s { 2 | color: red; 3 | } 4 | -------------------------------------------------------------------------------- /HTML FULL/HTML/Html Page And Block Element/using-the-s-element/webpage.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/js55998/vsics_dames/HEAD/HTML FULL/HTML/Html Page And Block Element/using-the-s-element/webpage.html -------------------------------------------------------------------------------- /HTML FULL/HTML/Html Page And Block Element/using-the-small-element/webpage.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/js55998/vsics_dames/HEAD/HTML FULL/HTML/Html Page And Block Element/using-the-small-element/webpage.html -------------------------------------------------------------------------------- /HTML FULL/HTML/Html Page And Block Element/using-the-span-element/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/js55998/vsics_dames/HEAD/HTML FULL/HTML/Html Page And Block Element/using-the-span-element/styles.css -------------------------------------------------------------------------------- /HTML FULL/HTML/Html Page And Block Element/using-the-span-element/webpage.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/js55998/vsics_dames/HEAD/HTML FULL/HTML/Html Page And Block Element/using-the-span-element/webpage.html -------------------------------------------------------------------------------- /HTML FULL/HTML/Html Page And Block Element/using-the-strong-element/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/js55998/vsics_dames/HEAD/HTML FULL/HTML/Html Page And Block Element/using-the-strong-element/styles.css -------------------------------------------------------------------------------- /HTML FULL/HTML/Html Page And Block Element/using-the-strong-element/webpage.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/js55998/vsics_dames/HEAD/HTML FULL/HTML/Html Page And Block Element/using-the-strong-element/webpage.html -------------------------------------------------------------------------------- /HTML FULL/HTML/Html Page And Block Element/using-the-video-element/a.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/js55998/vsics_dames/HEAD/HTML FULL/HTML/Html Page And Block Element/using-the-video-element/a.mp4 -------------------------------------------------------------------------------- /HTML FULL/HTML/Html Page And Block Element/using-the-video-element/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/js55998/vsics_dames/HEAD/HTML FULL/HTML/Html Page And Block Element/using-the-video-element/styles.css -------------------------------------------------------------------------------- /HTML FULL/HTML/Html Page And Block Element/using-the-video-element/webpage.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/js55998/vsics_dames/HEAD/HTML FULL/HTML/Html Page And Block Element/using-the-video-element/webpage.html -------------------------------------------------------------------------------- /HTML FULL/HTML/about.htm: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /HTML FULL/HTML/car.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/js55998/vsics_dames/HEAD/HTML FULL/HTML/car.jpg -------------------------------------------------------------------------------- /HTML FULL/HTML/contact.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /HTML FULL/HTML/flowers.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/js55998/vsics_dames/HEAD/HTML FULL/HTML/flowers.jpg -------------------------------------------------------------------------------- /HTML FULL/HTML/g.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/js55998/vsics_dames/HEAD/HTML FULL/HTML/g.html -------------------------------------------------------------------------------- /HTML FULL/HTML/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/js55998/vsics_dames/HEAD/HTML FULL/HTML/index.html -------------------------------------------------------------------------------- /HTML FULL/HTML/my_image.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/js55998/vsics_dames/HEAD/HTML FULL/HTML/my_image.gif -------------------------------------------------------------------------------- /HTML FULL/HTML/my_style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/js55998/vsics_dames/HEAD/HTML FULL/HTML/my_style.css -------------------------------------------------------------------------------- /HTML FULL/HTML/style.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /HTML FULL/HTML/table.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/js55998/vsics_dames/HEAD/HTML FULL/HTML/table.html -------------------------------------------------------------------------------- /HTML FULL/Html PageSturecture/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/js55998/vsics_dames/HEAD/HTML FULL/Html PageSturecture/index.html -------------------------------------------------------------------------------- /HTML FULL/Html PageSturecture/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/js55998/vsics_dames/HEAD/HTML FULL/Html PageSturecture/style.css -------------------------------------------------------------------------------- /HTML FULL/Html Table/nth1 (2).html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/js55998/vsics_dames/HEAD/HTML FULL/Html Table/nth1 (2).html -------------------------------------------------------------------------------- /HTML FULL/Html Table/nth1.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/js55998/vsics_dames/HEAD/HTML FULL/Html Table/nth1.html -------------------------------------------------------------------------------- /HTML FULL/Html Table/nth2 (2).html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/js55998/vsics_dames/HEAD/HTML FULL/Html Table/nth2 (2).html -------------------------------------------------------------------------------- /HTML FULL/Html Table/nth2.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/js55998/vsics_dames/HEAD/HTML FULL/Html Table/nth2.html -------------------------------------------------------------------------------- /HTML FULL/Html Table/nth3 (2).html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/js55998/vsics_dames/HEAD/HTML FULL/Html Table/nth3 (2).html -------------------------------------------------------------------------------- /HTML FULL/Html Table/nth3.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/js55998/vsics_dames/HEAD/HTML FULL/Html Table/nth3.html -------------------------------------------------------------------------------- /HTML FULL/Html Table/nth4 (2).html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/js55998/vsics_dames/HEAD/HTML FULL/Html Table/nth4 (2).html -------------------------------------------------------------------------------- /HTML FULL/Html Table/nth4.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/js55998/vsics_dames/HEAD/HTML FULL/Html Table/nth4.html -------------------------------------------------------------------------------- /HTML FULL/Html Table/nth5 (2).html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/js55998/vsics_dames/HEAD/HTML FULL/Html Table/nth5 (2).html -------------------------------------------------------------------------------- /HTML FULL/Html Table/nth5.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/js55998/vsics_dames/HEAD/HTML FULL/Html Table/nth5.html -------------------------------------------------------------------------------- /HTML FULL/Html Table/nth6 (2).html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/js55998/vsics_dames/HEAD/HTML FULL/Html Table/nth6 (2).html -------------------------------------------------------------------------------- /HTML FULL/Html Table/nth6.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/js55998/vsics_dames/HEAD/HTML FULL/Html Table/nth6.html -------------------------------------------------------------------------------- /HTML FULL/Html Table/style1.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/js55998/vsics_dames/HEAD/HTML FULL/Html Table/style1.css -------------------------------------------------------------------------------- /HTML FULL/Html Table/style2.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/js55998/vsics_dames/HEAD/HTML FULL/Html Table/style2.css -------------------------------------------------------------------------------- /HTML FULL/Html Table/table1 (2).html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/js55998/vsics_dames/HEAD/HTML FULL/Html Table/table1 (2).html -------------------------------------------------------------------------------- /HTML FULL/Html Table/table1.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/js55998/vsics_dames/HEAD/HTML FULL/Html Table/table1.html -------------------------------------------------------------------------------- /HTML FULL/Html Table/table2 (2).html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/js55998/vsics_dames/HEAD/HTML FULL/Html Table/table2 (2).html -------------------------------------------------------------------------------- /HTML FULL/Html Table/table2.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/js55998/vsics_dames/HEAD/HTML FULL/Html Table/table2.html -------------------------------------------------------------------------------- /HTML FULL/Html Table/table3.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/js55998/vsics_dames/HEAD/HTML FULL/Html Table/table3.html -------------------------------------------------------------------------------- /HTML FULL/Html Table/table4.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/js55998/vsics_dames/HEAD/HTML FULL/Html Table/table4.html -------------------------------------------------------------------------------- /HTML FULL/Html_from/Input1.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/js55998/vsics_dames/HEAD/HTML FULL/Html_from/Input1.html -------------------------------------------------------------------------------- /HTML FULL/Html_from/Input_element.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/js55998/vsics_dames/HEAD/HTML FULL/Html_from/Input_element.html -------------------------------------------------------------------------------- /HTML FULL/Html_from/f1.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/js55998/vsics_dames/HEAD/HTML FULL/Html_from/f1.html -------------------------------------------------------------------------------- /HTML FULL/Html_from/form1.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/js55998/vsics_dames/HEAD/HTML FULL/Html_from/form1.html -------------------------------------------------------------------------------- /HTML FULL/Html_from/ft.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/js55998/vsics_dames/HEAD/HTML FULL/Html_from/ft.html -------------------------------------------------------------------------------- /HTML FULL/Html_from/img_submit.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/js55998/vsics_dames/HEAD/HTML FULL/Html_from/img_submit.gif -------------------------------------------------------------------------------- /HTML FULL/Html_from/input2.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/js55998/vsics_dames/HEAD/HTML FULL/Html_from/input2.html -------------------------------------------------------------------------------- /HTML FULL/Html_from/input3.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/js55998/vsics_dames/HEAD/HTML FULL/Html_from/input3.html -------------------------------------------------------------------------------- /HTML FULL/Html_from/input_Attribute.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/js55998/vsics_dames/HEAD/HTML FULL/Html_from/input_Attribute.html -------------------------------------------------------------------------------- /HTML FULL/Html_from/server.jsp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /HTML FULL/html_basics/01.intro.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/js55998/vsics_dames/HEAD/HTML FULL/html_basics/01.intro.html -------------------------------------------------------------------------------- /HTML FULL/html_basics/02.attributes.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/js55998/vsics_dames/HEAD/HTML FULL/html_basics/02.attributes.html -------------------------------------------------------------------------------- /HTML FULL/html_basics/03.headings.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/js55998/vsics_dames/HEAD/HTML FULL/html_basics/03.headings.html -------------------------------------------------------------------------------- /HTML FULL/html_basics/04.paragraphs.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/js55998/vsics_dames/HEAD/HTML FULL/html_basics/04.paragraphs.html -------------------------------------------------------------------------------- /HTML FULL/html_basics/05.styles.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/js55998/vsics_dames/HEAD/HTML FULL/html_basics/05.styles.html -------------------------------------------------------------------------------- /HTML FULL/html_basics/06.text_formatting.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/js55998/vsics_dames/HEAD/HTML FULL/html_basics/06.text_formatting.html -------------------------------------------------------------------------------- /HTML FULL/html_basics/07.quotations.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/js55998/vsics_dames/HEAD/HTML FULL/html_basics/07.quotations.html -------------------------------------------------------------------------------- /HTML FULL/html_basics/08.colors.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/js55998/vsics_dames/HEAD/HTML FULL/html_basics/08.colors.html -------------------------------------------------------------------------------- /HTML FULL/html_basics/09.html_css.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/js55998/vsics_dames/HEAD/HTML FULL/html_basics/09.html_css.html -------------------------------------------------------------------------------- /HTML FULL/html_basics/10.html_links.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/js55998/vsics_dames/HEAD/HTML FULL/html_basics/10.html_links.html -------------------------------------------------------------------------------- /HTML FULL/html_basics/11.images.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/js55998/vsics_dames/HEAD/HTML FULL/html_basics/11.images.html -------------------------------------------------------------------------------- /HTML FULL/html_basics/12.tables.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/js55998/vsics_dames/HEAD/HTML FULL/html_basics/12.tables.html -------------------------------------------------------------------------------- /HTML FULL/html_basics/13a.lists.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/js55998/vsics_dames/HEAD/HTML FULL/html_basics/13a.lists.html -------------------------------------------------------------------------------- /HTML FULL/html_basics/13b.lists.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/js55998/vsics_dames/HEAD/HTML FULL/html_basics/13b.lists.html -------------------------------------------------------------------------------- /HTML FULL/html_basics/car.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/js55998/vsics_dames/HEAD/HTML FULL/html_basics/car.jpg -------------------------------------------------------------------------------- /HTML FULL/html_basics/css2/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/js55998/vsics_dames/HEAD/HTML FULL/html_basics/css2/index.html -------------------------------------------------------------------------------- /HTML FULL/html_basics/css2/style.css: -------------------------------------------------------------------------------- 1 | h1{ 2 | color: cadetblue; 3 | } -------------------------------------------------------------------------------- /HTML FULL/html_basics/flowers.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/js55998/vsics_dames/HEAD/HTML FULL/html_basics/flowers.jpg -------------------------------------------------------------------------------- /HTML FULL/html_basics/into/about.htm: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /HTML FULL/html_basics/into/contact.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /HTML FULL/html_basics/into/g.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/js55998/vsics_dames/HEAD/HTML FULL/html_basics/into/g.html -------------------------------------------------------------------------------- /HTML FULL/html_basics/into/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/js55998/vsics_dames/HEAD/HTML FULL/html_basics/into/index.html -------------------------------------------------------------------------------- /HTML FULL/html_basics/into/style.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /HTML FULL/html_basics/into/table.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/js55998/vsics_dames/HEAD/HTML FULL/html_basics/into/table.html -------------------------------------------------------------------------------- /HTML FULL/html_basics/my_image.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/js55998/vsics_dames/HEAD/HTML FULL/html_basics/my_image.gif -------------------------------------------------------------------------------- /HTML FULL/html_basics/my_style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/js55998/vsics_dames/HEAD/HTML FULL/html_basics/my_style.css -------------------------------------------------------------------------------- /KanpurProjects/Frontend/01-react/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/js55998/vsics_dames/HEAD/KanpurProjects/Frontend/01-react/.gitignore -------------------------------------------------------------------------------- /KanpurProjects/Frontend/01-react/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/js55998/vsics_dames/HEAD/KanpurProjects/Frontend/01-react/README.md -------------------------------------------------------------------------------- /KanpurProjects/Frontend/01-react/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/js55998/vsics_dames/HEAD/KanpurProjects/Frontend/01-react/package-lock.json -------------------------------------------------------------------------------- /KanpurProjects/Frontend/01-react/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/js55998/vsics_dames/HEAD/KanpurProjects/Frontend/01-react/package.json -------------------------------------------------------------------------------- /KanpurProjects/Frontend/01-react/public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/js55998/vsics_dames/HEAD/KanpurProjects/Frontend/01-react/public/favicon.ico -------------------------------------------------------------------------------- /KanpurProjects/Frontend/01-react/public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/js55998/vsics_dames/HEAD/KanpurProjects/Frontend/01-react/public/index.html -------------------------------------------------------------------------------- /KanpurProjects/Frontend/01-react/public/logo192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/js55998/vsics_dames/HEAD/KanpurProjects/Frontend/01-react/public/logo192.png -------------------------------------------------------------------------------- /KanpurProjects/Frontend/01-react/public/logo512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/js55998/vsics_dames/HEAD/KanpurProjects/Frontend/01-react/public/logo512.png -------------------------------------------------------------------------------- /KanpurProjects/Frontend/01-react/public/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/js55998/vsics_dames/HEAD/KanpurProjects/Frontend/01-react/public/manifest.json -------------------------------------------------------------------------------- /KanpurProjects/Frontend/01-react/public/robots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/js55998/vsics_dames/HEAD/KanpurProjects/Frontend/01-react/public/robots.txt -------------------------------------------------------------------------------- /KanpurProjects/Frontend/01-react/src-5/App.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /KanpurProjects/Frontend/01-react/src-5/App.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/js55998/vsics_dames/HEAD/KanpurProjects/Frontend/01-react/src-5/App.js -------------------------------------------------------------------------------- /KanpurProjects/Frontend/01-react/src-5/App.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/js55998/vsics_dames/HEAD/KanpurProjects/Frontend/01-react/src-5/App.test.js -------------------------------------------------------------------------------- /KanpurProjects/Frontend/01-react/src-5/Components/ArrayProps.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/js55998/vsics_dames/HEAD/KanpurProjects/Frontend/01-react/src-5/Components/ArrayProps.jsx -------------------------------------------------------------------------------- /KanpurProjects/Frontend/01-react/src-5/Components/ObjectProps.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/js55998/vsics_dames/HEAD/KanpurProjects/Frontend/01-react/src-5/Components/ObjectProps.jsx -------------------------------------------------------------------------------- /KanpurProjects/Frontend/01-react/src-5/Components/PropsBasic.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/js55998/vsics_dames/HEAD/KanpurProjects/Frontend/01-react/src-5/Components/PropsBasic.jsx -------------------------------------------------------------------------------- /KanpurProjects/Frontend/01-react/src-5/Components/info.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/js55998/vsics_dames/HEAD/KanpurProjects/Frontend/01-react/src-5/Components/info.jsx -------------------------------------------------------------------------------- /KanpurProjects/Frontend/01-react/src-5/index.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /KanpurProjects/Frontend/01-react/src-5/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/js55998/vsics_dames/HEAD/KanpurProjects/Frontend/01-react/src-5/index.js -------------------------------------------------------------------------------- /KanpurProjects/Frontend/01-react/src-5/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/js55998/vsics_dames/HEAD/KanpurProjects/Frontend/01-react/src-5/logo.svg -------------------------------------------------------------------------------- /KanpurProjects/Frontend/01-react/src-5/reportWebVitals.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/js55998/vsics_dames/HEAD/KanpurProjects/Frontend/01-react/src-5/reportWebVitals.js -------------------------------------------------------------------------------- /KanpurProjects/Frontend/01-react/src-5/setupTests.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/js55998/vsics_dames/HEAD/KanpurProjects/Frontend/01-react/src-5/setupTests.js -------------------------------------------------------------------------------- /KanpurProjects/Frontend/01-react/src-Day1/App.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /KanpurProjects/Frontend/01-react/src-Day1/App.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/js55998/vsics_dames/HEAD/KanpurProjects/Frontend/01-react/src-Day1/App.js -------------------------------------------------------------------------------- /KanpurProjects/Frontend/01-react/src-Day1/App.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/js55998/vsics_dames/HEAD/KanpurProjects/Frontend/01-react/src-Day1/App.test.js -------------------------------------------------------------------------------- /KanpurProjects/Frontend/01-react/src-Day1/Blog/BTitle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/js55998/vsics_dames/HEAD/KanpurProjects/Frontend/01-react/src-Day1/Blog/BTitle.js -------------------------------------------------------------------------------- /KanpurProjects/Frontend/01-react/src-Day1/Blog/Data.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/js55998/vsics_dames/HEAD/KanpurProjects/Frontend/01-react/src-Day1/Blog/Data.js -------------------------------------------------------------------------------- /KanpurProjects/Frontend/01-react/src-Day1/Blog/Title.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/js55998/vsics_dames/HEAD/KanpurProjects/Frontend/01-react/src-Day1/Blog/Title.css -------------------------------------------------------------------------------- /KanpurProjects/Frontend/01-react/src-Day1/Components/Card.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/js55998/vsics_dames/HEAD/KanpurProjects/Frontend/01-react/src-Day1/Components/Card.css -------------------------------------------------------------------------------- /KanpurProjects/Frontend/01-react/src-Day1/Components/Card.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/js55998/vsics_dames/HEAD/KanpurProjects/Frontend/01-react/src-Day1/Components/Card.js -------------------------------------------------------------------------------- /KanpurProjects/Frontend/01-react/src-Day1/Components/DCard.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/js55998/vsics_dames/HEAD/KanpurProjects/Frontend/01-react/src-Day1/Components/DCard.js -------------------------------------------------------------------------------- /KanpurProjects/Frontend/01-react/src-Day1/index.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /KanpurProjects/Frontend/01-react/src-Day1/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/js55998/vsics_dames/HEAD/KanpurProjects/Frontend/01-react/src-Day1/index.js -------------------------------------------------------------------------------- /KanpurProjects/Frontend/01-react/src-Day1/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/js55998/vsics_dames/HEAD/KanpurProjects/Frontend/01-react/src-Day1/logo.svg -------------------------------------------------------------------------------- /KanpurProjects/Frontend/01-react/src-Day1/reportWebVitals.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/js55998/vsics_dames/HEAD/KanpurProjects/Frontend/01-react/src-Day1/reportWebVitals.js -------------------------------------------------------------------------------- /KanpurProjects/Frontend/01-react/src-Day1/setupTests.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/js55998/vsics_dames/HEAD/KanpurProjects/Frontend/01-react/src-Day1/setupTests.js -------------------------------------------------------------------------------- /KanpurProjects/Frontend/01-react/src-Day2/App.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /KanpurProjects/Frontend/01-react/src-Day2/App.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/js55998/vsics_dames/HEAD/KanpurProjects/Frontend/01-react/src-Day2/App.js -------------------------------------------------------------------------------- /KanpurProjects/Frontend/01-react/src-Day2/App.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/js55998/vsics_dames/HEAD/KanpurProjects/Frontend/01-react/src-Day2/App.test.js -------------------------------------------------------------------------------- /KanpurProjects/Frontend/01-react/src-Day2/Components/DataPages/Footer.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/js55998/vsics_dames/HEAD/KanpurProjects/Frontend/01-react/src-Day2/Components/DataPages/Footer.jsx -------------------------------------------------------------------------------- /KanpurProjects/Frontend/01-react/src-Day2/Components/DataPages/Header.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/js55998/vsics_dames/HEAD/KanpurProjects/Frontend/01-react/src-Day2/Components/DataPages/Header.jsx -------------------------------------------------------------------------------- /KanpurProjects/Frontend/01-react/src-Day2/Components/DataPages/Info.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/js55998/vsics_dames/HEAD/KanpurProjects/Frontend/01-react/src-Day2/Components/DataPages/Info.jsx -------------------------------------------------------------------------------- /KanpurProjects/Frontend/01-react/src-Day2/Components/DataPages/Main.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/js55998/vsics_dames/HEAD/KanpurProjects/Frontend/01-react/src-Day2/Components/DataPages/Main.jsx -------------------------------------------------------------------------------- /KanpurProjects/Frontend/01-react/src-Day2/Components/DataPages/Page.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/js55998/vsics_dames/HEAD/KanpurProjects/Frontend/01-react/src-Day2/Components/DataPages/Page.jsx -------------------------------------------------------------------------------- /KanpurProjects/Frontend/01-react/src-Day2/Components/DataPages/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/js55998/vsics_dames/HEAD/KanpurProjects/Frontend/01-react/src-Day2/Components/DataPages/style.css -------------------------------------------------------------------------------- /KanpurProjects/Frontend/01-react/src-Day2/Components/DetailsProps/MultipleProps.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/js55998/vsics_dames/HEAD/KanpurProjects/Frontend/01-react/src-Day2/Components/DetailsProps/MultipleProps.jsx -------------------------------------------------------------------------------- /KanpurProjects/Frontend/01-react/src-Day2/Components/GeneralStylePages/Footer.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/js55998/vsics_dames/HEAD/KanpurProjects/Frontend/01-react/src-Day2/Components/GeneralStylePages/Footer.jsx -------------------------------------------------------------------------------- /KanpurProjects/Frontend/01-react/src-Day2/Components/GeneralStylePages/Header.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/js55998/vsics_dames/HEAD/KanpurProjects/Frontend/01-react/src-Day2/Components/GeneralStylePages/Header.jsx -------------------------------------------------------------------------------- /KanpurProjects/Frontend/01-react/src-Day2/Components/GeneralStylePages/Main.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/js55998/vsics_dames/HEAD/KanpurProjects/Frontend/01-react/src-Day2/Components/GeneralStylePages/Main.jsx -------------------------------------------------------------------------------- /KanpurProjects/Frontend/01-react/src-Day2/Components/GeneralStylePages/Page.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/js55998/vsics_dames/HEAD/KanpurProjects/Frontend/01-react/src-Day2/Components/GeneralStylePages/Page.jsx -------------------------------------------------------------------------------- /KanpurProjects/Frontend/01-react/src-Day2/Components/GeneralStylePages/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/js55998/vsics_dames/HEAD/KanpurProjects/Frontend/01-react/src-Day2/Components/GeneralStylePages/style.css -------------------------------------------------------------------------------- /KanpurProjects/Frontend/01-react/src-Day2/Components/Pages/Dams.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/js55998/vsics_dames/HEAD/KanpurProjects/Frontend/01-react/src-Day2/Components/Pages/Dams.jsx -------------------------------------------------------------------------------- /KanpurProjects/Frontend/01-react/src-Day2/Components/Pages/Footer.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/js55998/vsics_dames/HEAD/KanpurProjects/Frontend/01-react/src-Day2/Components/Pages/Footer.jsx -------------------------------------------------------------------------------- /KanpurProjects/Frontend/01-react/src-Day2/Components/Pages/Header.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/js55998/vsics_dames/HEAD/KanpurProjects/Frontend/01-react/src-Day2/Components/Pages/Header.jsx -------------------------------------------------------------------------------- /KanpurProjects/Frontend/01-react/src-Day2/Components/Pages/Main.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/js55998/vsics_dames/HEAD/KanpurProjects/Frontend/01-react/src-Day2/Components/Pages/Main.jsx -------------------------------------------------------------------------------- /KanpurProjects/Frontend/01-react/src-Day2/Components/PagesStyle/Footer.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/js55998/vsics_dames/HEAD/KanpurProjects/Frontend/01-react/src-Day2/Components/PagesStyle/Footer.jsx -------------------------------------------------------------------------------- /KanpurProjects/Frontend/01-react/src-Day2/Components/PagesStyle/Header.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/js55998/vsics_dames/HEAD/KanpurProjects/Frontend/01-react/src-Day2/Components/PagesStyle/Header.jsx -------------------------------------------------------------------------------- /KanpurProjects/Frontend/01-react/src-Day2/Components/PagesStyle/Main.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/js55998/vsics_dames/HEAD/KanpurProjects/Frontend/01-react/src-Day2/Components/PagesStyle/Main.jsx -------------------------------------------------------------------------------- /KanpurProjects/Frontend/01-react/src-Day2/Components/StyledPages/Footer.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/js55998/vsics_dames/HEAD/KanpurProjects/Frontend/01-react/src-Day2/Components/StyledPages/Footer.jsx -------------------------------------------------------------------------------- /KanpurProjects/Frontend/01-react/src-Day2/Components/StyledPages/Header.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/js55998/vsics_dames/HEAD/KanpurProjects/Frontend/01-react/src-Day2/Components/StyledPages/Header.jsx -------------------------------------------------------------------------------- /KanpurProjects/Frontend/01-react/src-Day2/Components/StyledPages/Main.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/js55998/vsics_dames/HEAD/KanpurProjects/Frontend/01-react/src-Day2/Components/StyledPages/Main.jsx -------------------------------------------------------------------------------- /KanpurProjects/Frontend/01-react/src-Day2/Components/genStyle/Footer.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/js55998/vsics_dames/HEAD/KanpurProjects/Frontend/01-react/src-Day2/Components/genStyle/Footer.jsx -------------------------------------------------------------------------------- /KanpurProjects/Frontend/01-react/src-Day2/Components/genStyle/Header.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/js55998/vsics_dames/HEAD/KanpurProjects/Frontend/01-react/src-Day2/Components/genStyle/Header.jsx -------------------------------------------------------------------------------- /KanpurProjects/Frontend/01-react/src-Day2/Components/genStyle/Main.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/js55998/vsics_dames/HEAD/KanpurProjects/Frontend/01-react/src-Day2/Components/genStyle/Main.jsx -------------------------------------------------------------------------------- /KanpurProjects/Frontend/01-react/src-Day2/Components/genStyle/pages.jsx: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /KanpurProjects/Frontend/01-react/src-Day2/Components/genStyle/style.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /KanpurProjects/Frontend/01-react/src-Day2/index.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /KanpurProjects/Frontend/01-react/src-Day2/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/js55998/vsics_dames/HEAD/KanpurProjects/Frontend/01-react/src-Day2/index.js -------------------------------------------------------------------------------- /KanpurProjects/Frontend/01-react/src-Day2/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/js55998/vsics_dames/HEAD/KanpurProjects/Frontend/01-react/src-Day2/logo.svg -------------------------------------------------------------------------------- /KanpurProjects/Frontend/01-react/src-Day2/reportWebVitals.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/js55998/vsics_dames/HEAD/KanpurProjects/Frontend/01-react/src-Day2/reportWebVitals.js -------------------------------------------------------------------------------- /KanpurProjects/Frontend/01-react/src-Day2/setupTests.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/js55998/vsics_dames/HEAD/KanpurProjects/Frontend/01-react/src-Day2/setupTests.js -------------------------------------------------------------------------------- /KanpurProjects/Frontend/01-react/src-Day3/App.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /KanpurProjects/Frontend/01-react/src-Day3/App.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/js55998/vsics_dames/HEAD/KanpurProjects/Frontend/01-react/src-Day3/App.js -------------------------------------------------------------------------------- /KanpurProjects/Frontend/01-react/src-Day3/App.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/js55998/vsics_dames/HEAD/KanpurProjects/Frontend/01-react/src-Day3/App.test.js -------------------------------------------------------------------------------- /KanpurProjects/Frontend/01-react/src-Day3/Components/HexComponent.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/js55998/vsics_dames/HEAD/KanpurProjects/Frontend/01-react/src-Day3/Components/HexComponent.jsx -------------------------------------------------------------------------------- /KanpurProjects/Frontend/01-react/src-Day3/Components/MathComponent.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/js55998/vsics_dames/HEAD/KanpurProjects/Frontend/01-react/src-Day3/Components/MathComponent.jsx -------------------------------------------------------------------------------- /KanpurProjects/Frontend/01-react/src-Day3/index.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /KanpurProjects/Frontend/01-react/src-Day3/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/js55998/vsics_dames/HEAD/KanpurProjects/Frontend/01-react/src-Day3/index.js -------------------------------------------------------------------------------- /KanpurProjects/Frontend/01-react/src-Day3/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/js55998/vsics_dames/HEAD/KanpurProjects/Frontend/01-react/src-Day3/logo.svg -------------------------------------------------------------------------------- /KanpurProjects/Frontend/01-react/src-Day3/reportWebVitals.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/js55998/vsics_dames/HEAD/KanpurProjects/Frontend/01-react/src-Day3/reportWebVitals.js -------------------------------------------------------------------------------- /KanpurProjects/Frontend/01-react/src-Day3/setupTests.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/js55998/vsics_dames/HEAD/KanpurProjects/Frontend/01-react/src-Day3/setupTests.js -------------------------------------------------------------------------------- /KanpurProjects/Frontend/01-react/src/App.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /KanpurProjects/Frontend/01-react/src/App.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/js55998/vsics_dames/HEAD/KanpurProjects/Frontend/01-react/src/App.js -------------------------------------------------------------------------------- /KanpurProjects/Frontend/01-react/src/App.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/js55998/vsics_dames/HEAD/KanpurProjects/Frontend/01-react/src/App.test.js -------------------------------------------------------------------------------- /KanpurProjects/Frontend/01-react/src/Components/ChildrenProps.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/js55998/vsics_dames/HEAD/KanpurProjects/Frontend/01-react/src/Components/ChildrenProps.jsx -------------------------------------------------------------------------------- /KanpurProjects/Frontend/01-react/src/Components/InValid.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/js55998/vsics_dames/HEAD/KanpurProjects/Frontend/01-react/src/Components/InValid.css -------------------------------------------------------------------------------- /KanpurProjects/Frontend/01-react/src/Components/MultipleProp.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/js55998/vsics_dames/HEAD/KanpurProjects/Frontend/01-react/src/Components/MultipleProp.jsx -------------------------------------------------------------------------------- /KanpurProjects/Frontend/01-react/src/Components/OptionalProps.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/js55998/vsics_dames/HEAD/KanpurProjects/Frontend/01-react/src/Components/OptionalProps.jsx -------------------------------------------------------------------------------- /KanpurProjects/Frontend/01-react/src/Components/PropsSpread.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/js55998/vsics_dames/HEAD/KanpurProjects/Frontend/01-react/src/Components/PropsSpread.jsx -------------------------------------------------------------------------------- /KanpurProjects/Frontend/01-react/src/Components/PropsValidator.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/js55998/vsics_dames/HEAD/KanpurProjects/Frontend/01-react/src/Components/PropsValidator.jsx -------------------------------------------------------------------------------- /KanpurProjects/Frontend/01-react/src/Components/ValidProps.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/js55998/vsics_dames/HEAD/KanpurProjects/Frontend/01-react/src/Components/ValidProps.jsx -------------------------------------------------------------------------------- /KanpurProjects/Frontend/01-react/src/index.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /KanpurProjects/Frontend/01-react/src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/js55998/vsics_dames/HEAD/KanpurProjects/Frontend/01-react/src/index.js -------------------------------------------------------------------------------- /KanpurProjects/Frontend/01-react/src/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/js55998/vsics_dames/HEAD/KanpurProjects/Frontend/01-react/src/logo.svg -------------------------------------------------------------------------------- /KanpurProjects/Frontend/01-react/src/reportWebVitals.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/js55998/vsics_dames/HEAD/KanpurProjects/Frontend/01-react/src/reportWebVitals.js -------------------------------------------------------------------------------- /KanpurProjects/Frontend/01-react/src/setupTests.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/js55998/vsics_dames/HEAD/KanpurProjects/Frontend/01-react/src/setupTests.js -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # vsics_dames -------------------------------------------------------------------------------- /ReactDemo/react_demo/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/js55998/vsics_dames/HEAD/ReactDemo/react_demo/.gitignore -------------------------------------------------------------------------------- /ReactDemo/react_demo/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/js55998/vsics_dames/HEAD/ReactDemo/react_demo/README.md -------------------------------------------------------------------------------- /ReactDemo/react_demo/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/js55998/vsics_dames/HEAD/ReactDemo/react_demo/package-lock.json -------------------------------------------------------------------------------- /ReactDemo/react_demo/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/js55998/vsics_dames/HEAD/ReactDemo/react_demo/package.json -------------------------------------------------------------------------------- /ReactDemo/react_demo/public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/js55998/vsics_dames/HEAD/ReactDemo/react_demo/public/favicon.ico -------------------------------------------------------------------------------- /ReactDemo/react_demo/public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/js55998/vsics_dames/HEAD/ReactDemo/react_demo/public/index.html -------------------------------------------------------------------------------- /ReactDemo/react_demo/public/logo192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/js55998/vsics_dames/HEAD/ReactDemo/react_demo/public/logo192.png -------------------------------------------------------------------------------- /ReactDemo/react_demo/public/logo512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/js55998/vsics_dames/HEAD/ReactDemo/react_demo/public/logo512.png -------------------------------------------------------------------------------- /ReactDemo/react_demo/public/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/js55998/vsics_dames/HEAD/ReactDemo/react_demo/public/manifest.json -------------------------------------------------------------------------------- /ReactDemo/react_demo/public/robots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/js55998/vsics_dames/HEAD/ReactDemo/react_demo/public/robots.txt -------------------------------------------------------------------------------- /ReactDemo/react_demo/src-Function/App.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ReactDemo/react_demo/src-Function/App.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/js55998/vsics_dames/HEAD/ReactDemo/react_demo/src-Function/App.js -------------------------------------------------------------------------------- /ReactDemo/react_demo/src-Function/App.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/js55998/vsics_dames/HEAD/ReactDemo/react_demo/src-Function/App.test.js -------------------------------------------------------------------------------- /ReactDemo/react_demo/src-Function/Components/FunctionComponent/Button.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/js55998/vsics_dames/HEAD/ReactDemo/react_demo/src-Function/Components/FunctionComponent/Button.jsx -------------------------------------------------------------------------------- /ReactDemo/react_demo/src-Function/index.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ReactDemo/react_demo/src-Function/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/js55998/vsics_dames/HEAD/ReactDemo/react_demo/src-Function/index.js -------------------------------------------------------------------------------- /ReactDemo/react_demo/src-Function/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/js55998/vsics_dames/HEAD/ReactDemo/react_demo/src-Function/logo.svg -------------------------------------------------------------------------------- /ReactDemo/react_demo/src-Function/reportWebVitals.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/js55998/vsics_dames/HEAD/ReactDemo/react_demo/src-Function/reportWebVitals.js -------------------------------------------------------------------------------- /ReactDemo/react_demo/src-Function/setupTests.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/js55998/vsics_dames/HEAD/ReactDemo/react_demo/src-Function/setupTests.js -------------------------------------------------------------------------------- /ReactDemo/react_demo/src-Object/App.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ReactDemo/react_demo/src-Object/App.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/js55998/vsics_dames/HEAD/ReactDemo/react_demo/src-Object/App.js -------------------------------------------------------------------------------- /ReactDemo/react_demo/src-Object/App.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/js55998/vsics_dames/HEAD/ReactDemo/react_demo/src-Object/App.test.js -------------------------------------------------------------------------------- /ReactDemo/react_demo/src-Object/Components/ObjectComponent/Header.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/js55998/vsics_dames/HEAD/ReactDemo/react_demo/src-Object/Components/ObjectComponent/Header.jsx -------------------------------------------------------------------------------- /ReactDemo/react_demo/src-Object/index.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ReactDemo/react_demo/src-Object/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/js55998/vsics_dames/HEAD/ReactDemo/react_demo/src-Object/index.js -------------------------------------------------------------------------------- /ReactDemo/react_demo/src-Object/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/js55998/vsics_dames/HEAD/ReactDemo/react_demo/src-Object/logo.svg -------------------------------------------------------------------------------- /ReactDemo/react_demo/src-Object/reportWebVitals.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/js55998/vsics_dames/HEAD/ReactDemo/react_demo/src-Object/reportWebVitals.js -------------------------------------------------------------------------------- /ReactDemo/react_demo/src-Object/setupTests.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/js55998/vsics_dames/HEAD/ReactDemo/react_demo/src-Object/setupTests.js -------------------------------------------------------------------------------- /ReactDemo/react_demo/src/App.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ReactDemo/react_demo/src/App.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/js55998/vsics_dames/HEAD/ReactDemo/react_demo/src/App.js -------------------------------------------------------------------------------- /ReactDemo/react_demo/src/App.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/js55998/vsics_dames/HEAD/ReactDemo/react_demo/src/App.test.js -------------------------------------------------------------------------------- /ReactDemo/react_demo/src/Components/Calculator.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/js55998/vsics_dames/HEAD/ReactDemo/react_demo/src/Components/Calculator.jsx -------------------------------------------------------------------------------- /ReactDemo/react_demo/src/Components/ChatApp.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/js55998/vsics_dames/HEAD/ReactDemo/react_demo/src/Components/ChatApp.jsx -------------------------------------------------------------------------------- /ReactDemo/react_demo/src/Components/ExpenseTracker.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/js55998/vsics_dames/HEAD/ReactDemo/react_demo/src/Components/ExpenseTracker.jsx -------------------------------------------------------------------------------- /ReactDemo/react_demo/src/Components/ImageGallery.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/js55998/vsics_dames/HEAD/ReactDemo/react_demo/src/Components/ImageGallery.jsx -------------------------------------------------------------------------------- /ReactDemo/react_demo/src/Components/MovieSearch.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/js55998/vsics_dames/HEAD/ReactDemo/react_demo/src/Components/MovieSearch.jsx -------------------------------------------------------------------------------- /ReactDemo/react_demo/src/Components/QuizApp.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/js55998/vsics_dames/HEAD/ReactDemo/react_demo/src/Components/QuizApp.jsx -------------------------------------------------------------------------------- /ReactDemo/react_demo/src/Components/StateCounter.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/js55998/vsics_dames/HEAD/ReactDemo/react_demo/src/Components/StateCounter.jsx -------------------------------------------------------------------------------- /ReactDemo/react_demo/src/Components/ToDoList.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/js55998/vsics_dames/HEAD/ReactDemo/react_demo/src/Components/ToDoList.jsx -------------------------------------------------------------------------------- /ReactDemo/react_demo/src/Components/WeatherApp.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/js55998/vsics_dames/HEAD/ReactDemo/react_demo/src/Components/WeatherApp.jsx -------------------------------------------------------------------------------- /ReactDemo/react_demo/src/index.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ReactDemo/react_demo/src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/js55998/vsics_dames/HEAD/ReactDemo/react_demo/src/index.js -------------------------------------------------------------------------------- /ReactDemo/react_demo/src/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/js55998/vsics_dames/HEAD/ReactDemo/react_demo/src/logo.svg -------------------------------------------------------------------------------- /ReactDemo/react_demo/src/reportWebVitals.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/js55998/vsics_dames/HEAD/ReactDemo/react_demo/src/reportWebVitals.js -------------------------------------------------------------------------------- /ReactDemo/react_demo/src/setupTests.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/js55998/vsics_dames/HEAD/ReactDemo/react_demo/src/setupTests.js -------------------------------------------------------------------------------- /ServerAPI/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/js55998/vsics_dames/HEAD/ServerAPI/.gitignore -------------------------------------------------------------------------------- /ServerAPI/.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/js55998/vsics_dames/HEAD/ServerAPI/.vscode/launch.json -------------------------------------------------------------------------------- /ServerAPI/.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/js55998/vsics_dames/HEAD/ServerAPI/.vscode/settings.json -------------------------------------------------------------------------------- /ServerAPI/command.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/js55998/vsics_dames/HEAD/ServerAPI/command.txt -------------------------------------------------------------------------------- /ServerAPI/controllers/book.controller.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/js55998/vsics_dames/HEAD/ServerAPI/controllers/book.controller.js -------------------------------------------------------------------------------- /ServerAPI/database/dbConnection.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/js55998/vsics_dames/HEAD/ServerAPI/database/dbConnection.js -------------------------------------------------------------------------------- /ServerAPI/models/book.model.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/js55998/vsics_dames/HEAD/ServerAPI/models/book.model.js -------------------------------------------------------------------------------- /ServerAPI/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/js55998/vsics_dames/HEAD/ServerAPI/package-lock.json -------------------------------------------------------------------------------- /ServerAPI/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/js55998/vsics_dames/HEAD/ServerAPI/package.json -------------------------------------------------------------------------------- /ServerAPI/routes/book.router.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/js55998/vsics_dames/HEAD/ServerAPI/routes/book.router.js -------------------------------------------------------------------------------- /ServerAPI/server.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/js55998/vsics_dames/HEAD/ServerAPI/server.js -------------------------------------------------------------------------------- /ServerAPI/services/book.service.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/js55998/vsics_dames/HEAD/ServerAPI/services/book.service.js -------------------------------------------------------------------------------- /cv/amazon_logo.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/js55998/vsics_dames/HEAD/cv/amazon_logo.jpg -------------------------------------------------------------------------------- /cv/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/js55998/vsics_dames/HEAD/cv/index.html -------------------------------------------------------------------------------- /cv/leetcode.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/js55998/vsics_dames/HEAD/cv/leetcode.jpg -------------------------------------------------------------------------------- /cv/myphoto.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/js55998/vsics_dames/HEAD/cv/myphoto.jpg -------------------------------------------------------------------------------- /cv/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/js55998/vsics_dames/HEAD/cv/style.css -------------------------------------------------------------------------------- /full javascript/.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/js55998/vsics_dames/HEAD/full javascript/.vscode/launch.json -------------------------------------------------------------------------------- /full javascript/.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/js55998/vsics_dames/HEAD/full javascript/.vscode/settings.json -------------------------------------------------------------------------------- /full javascript/DataPage/.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/js55998/vsics_dames/HEAD/full javascript/DataPage/.vscode/settings.json -------------------------------------------------------------------------------- /full javascript/DataPage/StaticData/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/js55998/vsics_dames/HEAD/full javascript/DataPage/StaticData/index.html -------------------------------------------------------------------------------- /full javascript/DataPage/StaticData/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/js55998/vsics_dames/HEAD/full javascript/DataPage/StaticData/script.js -------------------------------------------------------------------------------- /full javascript/DataPage/StaticData/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/js55998/vsics_dames/HEAD/full javascript/DataPage/StaticData/style.css -------------------------------------------------------------------------------- /full javascript/Day1/.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/js55998/vsics_dames/HEAD/full javascript/Day1/.vscode/launch.json -------------------------------------------------------------------------------- /full javascript/Day1/.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/js55998/vsics_dames/HEAD/full javascript/Day1/.vscode/settings.json -------------------------------------------------------------------------------- /full javascript/Day1/02.datatype/math_obj.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/js55998/vsics_dames/HEAD/full javascript/Day1/02.datatype/math_obj.js -------------------------------------------------------------------------------- /full javascript/Day1/02.datatype/non-premitive.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/js55998/vsics_dames/HEAD/full javascript/Day1/02.datatype/non-premitive.js -------------------------------------------------------------------------------- /full javascript/Day1/02.datatype/primitive.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/js55998/vsics_dames/HEAD/full javascript/Day1/02.datatype/primitive.js -------------------------------------------------------------------------------- /full javascript/Day1/02.datatype/randomN.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/js55998/vsics_dames/HEAD/full javascript/Day1/02.datatype/randomN.js -------------------------------------------------------------------------------- /full javascript/Day1/02.datatype/string_1.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/js55998/vsics_dames/HEAD/full javascript/Day1/02.datatype/string_1.js -------------------------------------------------------------------------------- /full javascript/Day1/02.datatype/string_2.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/js55998/vsics_dames/HEAD/full javascript/Day1/02.datatype/string_2.js -------------------------------------------------------------------------------- /full javascript/Day1/02.datatype/string_3.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/js55998/vsics_dames/HEAD/full javascript/Day1/02.datatype/string_3.js -------------------------------------------------------------------------------- /full javascript/Day1/02.datatype/string_methods.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/js55998/vsics_dames/HEAD/full javascript/Day1/02.datatype/string_methods.js -------------------------------------------------------------------------------- /full javascript/Day1/02.datatype/string_methods/accessing_character.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/js55998/vsics_dames/HEAD/full javascript/Day1/02.datatype/string_methods/accessing_character.js -------------------------------------------------------------------------------- /full javascript/Day1/02.datatype/string_methods/char_at.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/js55998/vsics_dames/HEAD/full javascript/Day1/02.datatype/string_methods/char_at.js -------------------------------------------------------------------------------- /full javascript/Day1/02.datatype/string_methods/char_code_at.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/js55998/vsics_dames/HEAD/full javascript/Day1/02.datatype/string_methods/char_code_at.js -------------------------------------------------------------------------------- /full javascript/Day1/02.datatype/string_methods/concat.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/js55998/vsics_dames/HEAD/full javascript/Day1/02.datatype/string_methods/concat.js -------------------------------------------------------------------------------- /full javascript/Day1/02.datatype/string_methods/ends_with.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/js55998/vsics_dames/HEAD/full javascript/Day1/02.datatype/string_methods/ends_with.js -------------------------------------------------------------------------------- /full javascript/Day1/02.datatype/string_methods/includes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/js55998/vsics_dames/HEAD/full javascript/Day1/02.datatype/string_methods/includes.js -------------------------------------------------------------------------------- /full javascript/Day1/02.datatype/string_methods/index_of.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/js55998/vsics_dames/HEAD/full javascript/Day1/02.datatype/string_methods/index_of.js -------------------------------------------------------------------------------- /full javascript/Day1/02.datatype/string_methods/last_index_of.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/js55998/vsics_dames/HEAD/full javascript/Day1/02.datatype/string_methods/last_index_of.js -------------------------------------------------------------------------------- /full javascript/Day1/02.datatype/string_methods/length.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/js55998/vsics_dames/HEAD/full javascript/Day1/02.datatype/string_methods/length.js -------------------------------------------------------------------------------- /full javascript/Day1/02.datatype/string_methods/match.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/js55998/vsics_dames/HEAD/full javascript/Day1/02.datatype/string_methods/match.js -------------------------------------------------------------------------------- /full javascript/Day1/02.datatype/string_methods/repeat.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/js55998/vsics_dames/HEAD/full javascript/Day1/02.datatype/string_methods/repeat.js -------------------------------------------------------------------------------- /full javascript/Day1/02.datatype/string_methods/replace.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/js55998/vsics_dames/HEAD/full javascript/Day1/02.datatype/string_methods/replace.js -------------------------------------------------------------------------------- /full javascript/Day1/02.datatype/string_methods/search.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/js55998/vsics_dames/HEAD/full javascript/Day1/02.datatype/string_methods/search.js -------------------------------------------------------------------------------- /full javascript/Day1/02.datatype/string_methods/split.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/js55998/vsics_dames/HEAD/full javascript/Day1/02.datatype/string_methods/split.js -------------------------------------------------------------------------------- /full javascript/Day1/02.datatype/string_methods/starts_with.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/js55998/vsics_dames/HEAD/full javascript/Day1/02.datatype/string_methods/starts_with.js -------------------------------------------------------------------------------- /full javascript/Day1/02.datatype/string_methods/substr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/js55998/vsics_dames/HEAD/full javascript/Day1/02.datatype/string_methods/substr.js -------------------------------------------------------------------------------- /full javascript/Day1/02.datatype/string_methods/substring.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/js55998/vsics_dames/HEAD/full javascript/Day1/02.datatype/string_methods/substring.js -------------------------------------------------------------------------------- /full javascript/Day1/02.datatype/string_methods/to_lowercase.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/js55998/vsics_dames/HEAD/full javascript/Day1/02.datatype/string_methods/to_lowercase.js -------------------------------------------------------------------------------- /full javascript/Day1/02.datatype/string_methods/to_uppercase.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/js55998/vsics_dames/HEAD/full javascript/Day1/02.datatype/string_methods/to_uppercase.js -------------------------------------------------------------------------------- /full javascript/Day1/02.datatype/string_methods/trim.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/js55998/vsics_dames/HEAD/full javascript/Day1/02.datatype/string_methods/trim.js -------------------------------------------------------------------------------- /full javascript/Day1/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/js55998/vsics_dames/HEAD/full javascript/Day1/app.js -------------------------------------------------------------------------------- /full javascript/Day1/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/js55998/vsics_dames/HEAD/full javascript/Day1/index.html -------------------------------------------------------------------------------- /full javascript/Day2/Data/countries.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/js55998/vsics_dames/HEAD/full javascript/Day2/Data/countries.js -------------------------------------------------------------------------------- /full javascript/Day2/alert.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/js55998/vsics_dames/HEAD/full javascript/Day2/alert.js -------------------------------------------------------------------------------- /full javascript/Day2/array.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/js55998/vsics_dames/HEAD/full javascript/Day2/array.js -------------------------------------------------------------------------------- /full javascript/Day2/bool.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/js55998/vsics_dames/HEAD/full javascript/Day2/bool.js -------------------------------------------------------------------------------- /full javascript/Day2/cond.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /full javascript/Day2/date.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/js55998/vsics_dames/HEAD/full javascript/Day2/date.js -------------------------------------------------------------------------------- /full javascript/Day2/operator.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/js55998/vsics_dames/HEAD/full javascript/Day2/operator.js -------------------------------------------------------------------------------- /full javascript/Day2/prompt.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/js55998/vsics_dames/HEAD/full javascript/Day2/prompt.js -------------------------------------------------------------------------------- /full javascript/Day3/array.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/js55998/vsics_dames/HEAD/full javascript/Day3/array.js -------------------------------------------------------------------------------- /full javascript/Day3/function.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/js55998/vsics_dames/HEAD/full javascript/Day3/function.js -------------------------------------------------------------------------------- /full javascript/Day5/Anonymousfunction.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/js55998/vsics_dames/HEAD/full javascript/Day5/Anonymousfunction.js -------------------------------------------------------------------------------- /full javascript/Day5/Arrow.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/js55998/vsics_dames/HEAD/full javascript/Day5/Arrow.js -------------------------------------------------------------------------------- /full javascript/Day5/Higer_Order_Function.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/js55998/vsics_dames/HEAD/full javascript/Day5/Higer_Order_Function.js -------------------------------------------------------------------------------- /full javascript/Day5/function.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/js55998/vsics_dames/HEAD/full javascript/Day5/function.js -------------------------------------------------------------------------------- /full javascript/Day5/restparameter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/js55998/vsics_dames/HEAD/full javascript/Day5/restparameter.js -------------------------------------------------------------------------------- /full javascript/Day7/Destructing.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/js55998/vsics_dames/HEAD/full javascript/Day7/Destructing.js -------------------------------------------------------------------------------- /full javascript/Javascript Promise/callback.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/js55998/vsics_dames/HEAD/full javascript/Javascript Promise/callback.js -------------------------------------------------------------------------------- /full javascript/Javascript Promise/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/js55998/vsics_dames/HEAD/full javascript/Javascript Promise/index.html -------------------------------------------------------------------------------- /full javascript/Javascript Promise/promise.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/js55998/vsics_dames/HEAD/full javascript/Javascript Promise/promise.js -------------------------------------------------------------------------------- /full javascript/Javascript Promise/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/js55998/vsics_dames/HEAD/full javascript/Javascript Promise/script.js -------------------------------------------------------------------------------- /full javascript/day4/filter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/js55998/vsics_dames/HEAD/full javascript/day4/filter.js -------------------------------------------------------------------------------- /full javascript/day4/for-in.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/js55998/vsics_dames/HEAD/full javascript/day4/for-in.js -------------------------------------------------------------------------------- /full javascript/day4/for-of.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/js55998/vsics_dames/HEAD/full javascript/day4/for-of.js -------------------------------------------------------------------------------- /full javascript/day4/forEach.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/js55998/vsics_dames/HEAD/full javascript/day4/forEach.js -------------------------------------------------------------------------------- /full javascript/day4/map.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/js55998/vsics_dames/HEAD/full javascript/day4/map.js -------------------------------------------------------------------------------- /full javascript/day4/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/js55998/vsics_dames/HEAD/full javascript/day4/style.css -------------------------------------------------------------------------------- /full javascript/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/js55998/vsics_dames/HEAD/full javascript/index.html -------------------------------------------------------------------------------- /vsics-batch-1/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/js55998/vsics_dames/HEAD/vsics-batch-1/.gitignore -------------------------------------------------------------------------------- /vsics-batch-1/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/js55998/vsics_dames/HEAD/vsics-batch-1/README.md -------------------------------------------------------------------------------- /vsics-batch-1/client/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/js55998/vsics_dames/HEAD/vsics-batch-1/client/.gitignore -------------------------------------------------------------------------------- /vsics-batch-1/client/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/js55998/vsics_dames/HEAD/vsics-batch-1/client/README.md -------------------------------------------------------------------------------- /vsics-batch-1/client/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/js55998/vsics_dames/HEAD/vsics-batch-1/client/package-lock.json -------------------------------------------------------------------------------- /vsics-batch-1/client/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/js55998/vsics_dames/HEAD/vsics-batch-1/client/package.json -------------------------------------------------------------------------------- /vsics-batch-1/client/public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/js55998/vsics_dames/HEAD/vsics-batch-1/client/public/favicon.ico -------------------------------------------------------------------------------- /vsics-batch-1/client/public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/js55998/vsics_dames/HEAD/vsics-batch-1/client/public/index.html -------------------------------------------------------------------------------- /vsics-batch-1/client/public/logo192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/js55998/vsics_dames/HEAD/vsics-batch-1/client/public/logo192.png -------------------------------------------------------------------------------- /vsics-batch-1/client/public/logo512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/js55998/vsics_dames/HEAD/vsics-batch-1/client/public/logo512.png -------------------------------------------------------------------------------- /vsics-batch-1/client/public/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/js55998/vsics_dames/HEAD/vsics-batch-1/client/public/manifest.json -------------------------------------------------------------------------------- /vsics-batch-1/client/public/robots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/js55998/vsics_dames/HEAD/vsics-batch-1/client/public/robots.txt -------------------------------------------------------------------------------- /vsics-batch-1/client/src/App.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/js55998/vsics_dames/HEAD/vsics-batch-1/client/src/App.css -------------------------------------------------------------------------------- /vsics-batch-1/client/src/App.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/js55998/vsics_dames/HEAD/vsics-batch-1/client/src/App.js -------------------------------------------------------------------------------- /vsics-batch-1/client/src/App.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/js55998/vsics_dames/HEAD/vsics-batch-1/client/src/App.test.js -------------------------------------------------------------------------------- /vsics-batch-1/client/src/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/js55998/vsics_dames/HEAD/vsics-batch-1/client/src/index.css -------------------------------------------------------------------------------- /vsics-batch-1/client/src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/js55998/vsics_dames/HEAD/vsics-batch-1/client/src/index.js -------------------------------------------------------------------------------- /vsics-batch-1/client/src/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/js55998/vsics_dames/HEAD/vsics-batch-1/client/src/logo.svg -------------------------------------------------------------------------------- /vsics-batch-1/client/src/reportWebVitals.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/js55998/vsics_dames/HEAD/vsics-batch-1/client/src/reportWebVitals.js -------------------------------------------------------------------------------- /vsics-batch-1/client/src/setupTests.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/js55998/vsics_dames/HEAD/vsics-batch-1/client/src/setupTests.js -------------------------------------------------------------------------------- /vsics-batch-1/server/.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/js55998/vsics_dames/HEAD/vsics-batch-1/server/.env -------------------------------------------------------------------------------- /vsics-batch-1/server/config/config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/js55998/vsics_dames/HEAD/vsics-batch-1/server/config/config -------------------------------------------------------------------------------- /vsics-batch-1/server/controllers/admin.controller.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/js55998/vsics_dames/HEAD/vsics-batch-1/server/controllers/admin.controller.js -------------------------------------------------------------------------------- /vsics-batch-1/server/controllers/student.controller.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/js55998/vsics_dames/HEAD/vsics-batch-1/server/controllers/student.controller.js -------------------------------------------------------------------------------- /vsics-batch-1/server/database/mongo.connection.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/js55998/vsics_dames/HEAD/vsics-batch-1/server/database/mongo.connection.js -------------------------------------------------------------------------------- /vsics-batch-1/server/databases/mongo.connect.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/js55998/vsics_dames/HEAD/vsics-batch-1/server/databases/mongo.connect.js -------------------------------------------------------------------------------- /vsics-batch-1/server/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/js55998/vsics_dames/HEAD/vsics-batch-1/server/index.js -------------------------------------------------------------------------------- /vsics-batch-1/server/models/admin/admin.model.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/js55998/vsics_dames/HEAD/vsics-batch-1/server/models/admin/admin.model.js -------------------------------------------------------------------------------- /vsics-batch-1/server/models/admin/dashboard.model.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/js55998/vsics_dames/HEAD/vsics-batch-1/server/models/admin/dashboard.model.js -------------------------------------------------------------------------------- /vsics-batch-1/server/models/staff/staff.Attendance.model.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/js55998/vsics_dames/HEAD/vsics-batch-1/server/models/staff/staff.Attendance.model.js -------------------------------------------------------------------------------- /vsics-batch-1/server/models/staff/staff.model.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/js55998/vsics_dames/HEAD/vsics-batch-1/server/models/staff/staff.model.js -------------------------------------------------------------------------------- /vsics-batch-1/server/models/staff/staff.salary.Model.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/js55998/vsics_dames/HEAD/vsics-batch-1/server/models/staff/staff.salary.Model.js -------------------------------------------------------------------------------- /vsics-batch-1/server/models/staff/staffAttendence.model.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/js55998/vsics_dames/HEAD/vsics-batch-1/server/models/staff/staffAttendence.model.js -------------------------------------------------------------------------------- /vsics-batch-1/server/models/staff/staffSalary.model.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/js55998/vsics_dames/HEAD/vsics-batch-1/server/models/staff/staffSalary.model.js -------------------------------------------------------------------------------- /vsics-batch-1/server/models/student/student.Attendance.model.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/js55998/vsics_dames/HEAD/vsics-batch-1/server/models/student/student.Attendance.model.js -------------------------------------------------------------------------------- /vsics-batch-1/server/models/student/student.Fees.Model.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/js55998/vsics_dames/HEAD/vsics-batch-1/server/models/student/student.Fees.Model.js -------------------------------------------------------------------------------- /vsics-batch-1/server/models/student/student.model.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/js55998/vsics_dames/HEAD/vsics-batch-1/server/models/student/student.model.js -------------------------------------------------------------------------------- /vsics-batch-1/server/models/student/studentAttendance.model.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/js55998/vsics_dames/HEAD/vsics-batch-1/server/models/student/studentAttendance.model.js -------------------------------------------------------------------------------- /vsics-batch-1/server/models/student/studentFees.model.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/js55998/vsics_dames/HEAD/vsics-batch-1/server/models/student/studentFees.model.js -------------------------------------------------------------------------------- /vsics-batch-1/server/models/teacher/teacher.Attendance.model.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/js55998/vsics_dames/HEAD/vsics-batch-1/server/models/teacher/teacher.Attendance.model.js -------------------------------------------------------------------------------- /vsics-batch-1/server/models/teacher/teacher.model.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/js55998/vsics_dames/HEAD/vsics-batch-1/server/models/teacher/teacher.model.js -------------------------------------------------------------------------------- /vsics-batch-1/server/models/teacher/teacher.salary.Model.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/js55998/vsics_dames/HEAD/vsics-batch-1/server/models/teacher/teacher.salary.Model.js -------------------------------------------------------------------------------- /vsics-batch-1/server/models/teacher/teacherAttendence.model.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/js55998/vsics_dames/HEAD/vsics-batch-1/server/models/teacher/teacherAttendence.model.js -------------------------------------------------------------------------------- /vsics-batch-1/server/models/teacher/teacherSalary.model.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/js55998/vsics_dames/HEAD/vsics-batch-1/server/models/teacher/teacherSalary.model.js -------------------------------------------------------------------------------- /vsics-batch-1/server/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/js55998/vsics_dames/HEAD/vsics-batch-1/server/package-lock.json -------------------------------------------------------------------------------- /vsics-batch-1/server/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/js55998/vsics_dames/HEAD/vsics-batch-1/server/package.json -------------------------------------------------------------------------------- /vsics-batch-1/server/routes/admin.route.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vsics-batch-1/server/routes/staff.route.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vsics-batch-1/server/routes/student.route.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/js55998/vsics_dames/HEAD/vsics-batch-1/server/routes/student.route.js -------------------------------------------------------------------------------- /vsics-batch-1/server/routes/teacher.route.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vsics-batch-1/server/services/admin.service.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/js55998/vsics_dames/HEAD/vsics-batch-1/server/services/admin.service.js -------------------------------------------------------------------------------- /vsics-batch-1/server/services/staff.service.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vsics-batch-1/server/services/student.service.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/js55998/vsics_dames/HEAD/vsics-batch-1/server/services/student.service.js -------------------------------------------------------------------------------- /vsics-batch-1/server/services/teacher.service.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vsics-batch-2/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/js55998/vsics_dames/HEAD/vsics-batch-2/.gitignore -------------------------------------------------------------------------------- /vsics-batch-2/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/js55998/vsics_dames/HEAD/vsics-batch-2/README.md -------------------------------------------------------------------------------- /vsics-batch-2/server/.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/js55998/vsics_dames/HEAD/vsics-batch-2/server/.env -------------------------------------------------------------------------------- /vsics-batch-2/server/controllers/admin.controller.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/js55998/vsics_dames/HEAD/vsics-batch-2/server/controllers/admin.controller.js -------------------------------------------------------------------------------- /vsics-batch-2/server/controllers/student.controller.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/js55998/vsics_dames/HEAD/vsics-batch-2/server/controllers/student.controller.js -------------------------------------------------------------------------------- /vsics-batch-2/server/databases/mongo.connect.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/js55998/vsics_dames/HEAD/vsics-batch-2/server/databases/mongo.connect.js -------------------------------------------------------------------------------- /vsics-batch-2/server/databases/mongo.connection.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/js55998/vsics_dames/HEAD/vsics-batch-2/server/databases/mongo.connection.js -------------------------------------------------------------------------------- /vsics-batch-2/server/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/js55998/vsics_dames/HEAD/vsics-batch-2/server/index.js -------------------------------------------------------------------------------- /vsics-batch-2/server/models/admin/admin.model.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/js55998/vsics_dames/HEAD/vsics-batch-2/server/models/admin/admin.model.js -------------------------------------------------------------------------------- /vsics-batch-2/server/models/admin/dashboard.model.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/js55998/vsics_dames/HEAD/vsics-batch-2/server/models/admin/dashboard.model.js -------------------------------------------------------------------------------- /vsics-batch-2/server/models/staff/staff.Attendance.model.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/js55998/vsics_dames/HEAD/vsics-batch-2/server/models/staff/staff.Attendance.model.js -------------------------------------------------------------------------------- /vsics-batch-2/server/models/staff/staff.Salary.model.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/js55998/vsics_dames/HEAD/vsics-batch-2/server/models/staff/staff.Salary.model.js -------------------------------------------------------------------------------- /vsics-batch-2/server/models/staff/staff.model.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/js55998/vsics_dames/HEAD/vsics-batch-2/server/models/staff/staff.model.js -------------------------------------------------------------------------------- /vsics-batch-2/server/models/staff/staffAttendence.model.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/js55998/vsics_dames/HEAD/vsics-batch-2/server/models/staff/staffAttendence.model.js -------------------------------------------------------------------------------- /vsics-batch-2/server/models/staff/staffSalary.model.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/js55998/vsics_dames/HEAD/vsics-batch-2/server/models/staff/staffSalary.model.js -------------------------------------------------------------------------------- /vsics-batch-2/server/models/student/student Attendance.model.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/js55998/vsics_dames/HEAD/vsics-batch-2/server/models/student/student Attendance.model.js -------------------------------------------------------------------------------- /vsics-batch-2/server/models/student/student.Fees.model.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/js55998/vsics_dames/HEAD/vsics-batch-2/server/models/student/student.Fees.model.js -------------------------------------------------------------------------------- /vsics-batch-2/server/models/student/student.model.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/js55998/vsics_dames/HEAD/vsics-batch-2/server/models/student/student.model.js -------------------------------------------------------------------------------- /vsics-batch-2/server/models/student/studentAttendance.model.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/js55998/vsics_dames/HEAD/vsics-batch-2/server/models/student/studentAttendance.model.js -------------------------------------------------------------------------------- /vsics-batch-2/server/models/student/studentFees.model.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/js55998/vsics_dames/HEAD/vsics-batch-2/server/models/student/studentFees.model.js -------------------------------------------------------------------------------- /vsics-batch-2/server/models/teacher/teacher.Attendance.model.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/js55998/vsics_dames/HEAD/vsics-batch-2/server/models/teacher/teacher.Attendance.model.js -------------------------------------------------------------------------------- /vsics-batch-2/server/models/teacher/teacher.Salary.model.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/js55998/vsics_dames/HEAD/vsics-batch-2/server/models/teacher/teacher.Salary.model.js -------------------------------------------------------------------------------- /vsics-batch-2/server/models/teacher/teacher.model.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/js55998/vsics_dames/HEAD/vsics-batch-2/server/models/teacher/teacher.model.js -------------------------------------------------------------------------------- /vsics-batch-2/server/models/teacher/teacherAttendence.model.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/js55998/vsics_dames/HEAD/vsics-batch-2/server/models/teacher/teacherAttendence.model.js -------------------------------------------------------------------------------- /vsics-batch-2/server/models/teacher/teacherSalary.model.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/js55998/vsics_dames/HEAD/vsics-batch-2/server/models/teacher/teacherSalary.model.js -------------------------------------------------------------------------------- /vsics-batch-2/server/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/js55998/vsics_dames/HEAD/vsics-batch-2/server/package-lock.json -------------------------------------------------------------------------------- /vsics-batch-2/server/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/js55998/vsics_dames/HEAD/vsics-batch-2/server/package.json -------------------------------------------------------------------------------- /vsics-batch-2/server/routes/admin.route.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vsics-batch-2/server/routes/staff.route.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vsics-batch-2/server/routes/student.route.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/js55998/vsics_dames/HEAD/vsics-batch-2/server/routes/student.route.js -------------------------------------------------------------------------------- /vsics-batch-2/server/routes/teacher.route.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vsics-batch-2/server/services/admin.service.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/js55998/vsics_dames/HEAD/vsics-batch-2/server/services/admin.service.js -------------------------------------------------------------------------------- /vsics-batch-2/server/services/staff.service.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vsics-batch-2/server/services/student.service.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/js55998/vsics_dames/HEAD/vsics-batch-2/server/services/student.service.js -------------------------------------------------------------------------------- /vsics-batch-2/server/services/teacher.service.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vsics-batch-3/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/js55998/vsics_dames/HEAD/vsics-batch-3/.gitignore -------------------------------------------------------------------------------- /vsics-batch-3/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/js55998/vsics_dames/HEAD/vsics-batch-3/README.md -------------------------------------------------------------------------------- /vsics-batch-3/server/.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/js55998/vsics_dames/HEAD/vsics-batch-3/server/.env -------------------------------------------------------------------------------- /vsics-batch-3/server/controllers/admin.controller.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/js55998/vsics_dames/HEAD/vsics-batch-3/server/controllers/admin.controller.js -------------------------------------------------------------------------------- /vsics-batch-3/server/controllers/student.controller.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/js55998/vsics_dames/HEAD/vsics-batch-3/server/controllers/student.controller.js -------------------------------------------------------------------------------- /vsics-batch-3/server/databases/mongo.connect.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/js55998/vsics_dames/HEAD/vsics-batch-3/server/databases/mongo.connect.js -------------------------------------------------------------------------------- /vsics-batch-3/server/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/js55998/vsics_dames/HEAD/vsics-batch-3/server/index.js -------------------------------------------------------------------------------- /vsics-batch-3/server/models/admin/admin.model.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/js55998/vsics_dames/HEAD/vsics-batch-3/server/models/admin/admin.model.js -------------------------------------------------------------------------------- /vsics-batch-3/server/models/admin/dashboard.model.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/js55998/vsics_dames/HEAD/vsics-batch-3/server/models/admin/dashboard.model.js -------------------------------------------------------------------------------- /vsics-batch-3/server/models/staff/staff.Attendance.model.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/js55998/vsics_dames/HEAD/vsics-batch-3/server/models/staff/staff.Attendance.model.js -------------------------------------------------------------------------------- /vsics-batch-3/server/models/staff/staff.Salary.model.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/js55998/vsics_dames/HEAD/vsics-batch-3/server/models/staff/staff.Salary.model.js -------------------------------------------------------------------------------- /vsics-batch-3/server/models/staff/staff.model.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/js55998/vsics_dames/HEAD/vsics-batch-3/server/models/staff/staff.model.js -------------------------------------------------------------------------------- /vsics-batch-3/server/models/staff/staffAttendence.model.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/js55998/vsics_dames/HEAD/vsics-batch-3/server/models/staff/staffAttendence.model.js -------------------------------------------------------------------------------- /vsics-batch-3/server/models/staff/staffSalary.model.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/js55998/vsics_dames/HEAD/vsics-batch-3/server/models/staff/staffSalary.model.js -------------------------------------------------------------------------------- /vsics-batch-3/server/models/student/student Attendance.model.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/js55998/vsics_dames/HEAD/vsics-batch-3/server/models/student/student Attendance.model.js -------------------------------------------------------------------------------- /vsics-batch-3/server/models/student/student.Fees.model.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/js55998/vsics_dames/HEAD/vsics-batch-3/server/models/student/student.Fees.model.js -------------------------------------------------------------------------------- /vsics-batch-3/server/models/student/student.model.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/js55998/vsics_dames/HEAD/vsics-batch-3/server/models/student/student.model.js -------------------------------------------------------------------------------- /vsics-batch-3/server/models/student/studentAttendance.model.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/js55998/vsics_dames/HEAD/vsics-batch-3/server/models/student/studentAttendance.model.js -------------------------------------------------------------------------------- /vsics-batch-3/server/models/student/studentFees.model.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/js55998/vsics_dames/HEAD/vsics-batch-3/server/models/student/studentFees.model.js -------------------------------------------------------------------------------- /vsics-batch-3/server/models/teacher/teacher.Attendance.model.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/js55998/vsics_dames/HEAD/vsics-batch-3/server/models/teacher/teacher.Attendance.model.js -------------------------------------------------------------------------------- /vsics-batch-3/server/models/teacher/teacher.Salary.model.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/js55998/vsics_dames/HEAD/vsics-batch-3/server/models/teacher/teacher.Salary.model.js -------------------------------------------------------------------------------- /vsics-batch-3/server/models/teacher/teacher.model.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/js55998/vsics_dames/HEAD/vsics-batch-3/server/models/teacher/teacher.model.js -------------------------------------------------------------------------------- /vsics-batch-3/server/models/teacher/teacherAttendence.model.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/js55998/vsics_dames/HEAD/vsics-batch-3/server/models/teacher/teacherAttendence.model.js -------------------------------------------------------------------------------- /vsics-batch-3/server/models/teacher/teacherSalary.model.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/js55998/vsics_dames/HEAD/vsics-batch-3/server/models/teacher/teacherSalary.model.js -------------------------------------------------------------------------------- /vsics-batch-3/server/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/js55998/vsics_dames/HEAD/vsics-batch-3/server/package-lock.json -------------------------------------------------------------------------------- /vsics-batch-3/server/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/js55998/vsics_dames/HEAD/vsics-batch-3/server/package.json -------------------------------------------------------------------------------- /vsics-batch-3/server/routes/admin.route.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vsics-batch-3/server/routes/staff.route.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vsics-batch-3/server/routes/student.route.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/js55998/vsics_dames/HEAD/vsics-batch-3/server/routes/student.route.js -------------------------------------------------------------------------------- /vsics-batch-3/server/routes/teacher.route.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vsics-batch-3/server/services/admin.service.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/js55998/vsics_dames/HEAD/vsics-batch-3/server/services/admin.service.js -------------------------------------------------------------------------------- /vsics-batch-3/server/services/staff.service.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vsics-batch-3/server/services/student.service.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/js55998/vsics_dames/HEAD/vsics-batch-3/server/services/student.service.js -------------------------------------------------------------------------------- /vsics-batch-3/server/services/teacher.service.js: -------------------------------------------------------------------------------- 1 | --------------------------------------------------------------------------------