├── CSS Codes ├── Animations │ ├── animation1.css │ ├── animation1.html │ ├── animation2.css │ ├── animation2.html │ ├── animation3.css │ └── animation3.html ├── BOX Model │ └── boxModelIntro.html ├── Flex Properties │ ├── Intro.html │ ├── flexstyle.css │ └── practiceflex.html ├── Grid Properties │ ├── BuildWebapp.html │ ├── FunctionalGrid.html │ ├── Intro.html │ ├── gridstyle.css │ └── style.css ├── PSEUDO CLASSES │ ├── firstchild_lastchild_onlychild.html │ ├── focus.html │ ├── hover.html │ └── nthChild.html ├── Responsive │ ├── mediaquery.html │ └── metaTag.html ├── SELECTORS │ ├── AdjacentSibling.html │ ├── Attribute.html │ ├── BasicSelectors.html │ ├── Child.html │ ├── Descendant.html │ └── ID and class.html ├── Transform │ ├── transform.css │ └── transform.html ├── Types of CSS │ ├── InlineCSS.html │ ├── InternalCSS.html │ └── style.css └── postion and relative │ ├── index.html │ └── task.html ├── HTML Code ├── Attributes.html ├── BlockLevelTag.html ├── DisplayImages.html ├── HeadingTags.html ├── HyperText.html ├── Iframes.html ├── List.html ├── PairedTags.html ├── ParaTag.html ├── PasswordValidation.html ├── Pattern.html ├── TextFormattingTags.html ├── Video.html ├── forms.html ├── srcdoc.html └── table.html └── JavaScript ├── DOM Manipulation ├── ByClassName().html ├── DOM Basics.html ├── addRemove.html ├── events.html ├── querySelector.html └── task1.html ├── DataType.html ├── ExceptionHandling.html ├── FunctionOverloading.html ├── HigherOrderFunction.html ├── Hoisting.html ├── Inheritance.html ├── LexicalScope.html ├── MultipleFormFields.html ├── ObjectIntro.html ├── Operators.html ├── Promise.html ├── Synchronous.html ├── argumentsObject.html ├── array.html ├── arrayIterationMethods.html ├── arrayMethods.html ├── async and await.html ├── awaitasync.html ├── closures.html ├── constructor.html ├── controlConstruct.html ├── firstscript.html ├── formValidate.html ├── functionExamples.html ├── functions.html ├── keywords.html ├── practice.html ├── script.js ├── spreadOperator.html ├── superMethod.html └── validationtestMethod.html /CSS Codes/Animations/animation1.css: -------------------------------------------------------------------------------- 1 | p { 2 | border: 2px solid black; 3 | height: 200px;width: 200px; 4 | /* animation-name: change_clr; 5 | animation-duration: 5s; 6 | animation-iteration-count: infinite; */ 7 | 8 | animation: change_clr 1s infinite; 9 | } 10 | 11 | @keyframes change_clr{ 12 | from { 13 | background-color: red; 14 | border-radius: 100px; 15 | } 16 | to { 17 | background-color: yellow; 18 | } 19 | } -------------------------------------------------------------------------------- /CSS Codes/Animations/animation1.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | Animation 1 4 | 5 | 6 | 7 |

8 | 9 | -------------------------------------------------------------------------------- /CSS Codes/Animations/animation2.css: -------------------------------------------------------------------------------- 1 | p { 2 | border: 2px solid black; 3 | height: 100px; width: 100px; 4 | animation: chnage_multiclr 5s infinite; 5 | } 6 | 7 | @keyframes chnage_multiclr{ 8 | 0%{ 9 | background-color: darkcyan; 10 | border: 20px groove black; 11 | } 12 | 25%{ 13 | background-color: aquamarine; 14 | } 15 | 50%{ 16 | background-color: darkred; 17 | border-radius: 50px; 18 | } 19 | 75% { 20 | background-color: darkkhaki; 21 | } 22 | 100% { 23 | background-color: darkmagenta; 24 | } 25 | } -------------------------------------------------------------------------------- /CSS Codes/Animations/animation2.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | Animation 2 4 | 5 | 6 | 7 |

8 | 9 | -------------------------------------------------------------------------------- /CSS Codes/Animations/animation3.css: -------------------------------------------------------------------------------- 1 | p { 2 | border: 2px solid black; 3 | height: 100px; width: 100px; 4 | animation: moving_circle 5s infinite; 5 | border-radius: 50px; 6 | } 7 | 8 | @keyframes moving_circle{ 9 | 0%{ 10 | background-color: darkcyan; 11 | transform: translate(0px,0px); 12 | } 13 | 25%{ 14 | background-color: aquamarine; 15 | transform: translate(400px,0px); 16 | } 17 | 50%{ 18 | background-color: darkred; 19 | transform: translate(400px,400px); 20 | } 21 | 75% { 22 | background-color: darkkhaki; 23 | transform: translate(0px,400px); 24 | } 25 | 100% { 26 | background-color: darkmagenta; 27 | transform: translate(0px,0px); 28 | } 29 | } -------------------------------------------------------------------------------- /CSS Codes/Animations/animation3.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | Animation 3 4 | 5 | 6 | 7 |

8 | 9 | -------------------------------------------------------------------------------- /CSS Codes/BOX Model/boxModelIntro.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | Box Model 4 | 10 | 11 | 12 |

Lorem ipsum dolor sit amet.

13 | 14 | 15 | -------------------------------------------------------------------------------- /CSS Codes/Flex Properties/Intro.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | Flex Properties 4 | 5 | 6 | 7 |
8 |

Product 1

9 |

Product 2

10 |

Product 3

11 |

Product 4

12 |

Product 5

13 |

Product 6

14 |
15 | 16 | -------------------------------------------------------------------------------- /CSS Codes/Flex Properties/flexstyle.css: -------------------------------------------------------------------------------- 1 | p { 2 | border: 2px solid black; 3 | padding: 15px; 4 | background-color: yellow; 5 | font-weight: bold; 6 | font-family: cursive; 7 | font-size: 20px; 8 | text-align: center; 9 | height: 50px; 10 | } 11 | 12 | div { 13 | border: 2px solid red; 14 | display: flex; 15 | flex-direction: row; 16 | justify-content: center; 17 | gap: 30px; 18 | height: 400px; 19 | align-items: flex-end; 20 | } -------------------------------------------------------------------------------- /CSS Codes/Flex Properties/practiceflex.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | Document 4 | 24 | 25 | 26 |
27 |
28 |

Hello

29 |
30 |
31 | 32 | -------------------------------------------------------------------------------- /CSS Codes/Grid Properties/BuildWebapp.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | Build Complete frontend 4 | 5 | 6 | 7 | 8 |
9 |
10 | 15 |
16 |
17 |

Sidebar

18 |

Lorem ipsum, dolor sit amet consectetur adipisicing elit.

19 |
20 |
21 |
22 |

Article 1

23 |

Lorem ipsum dolor sit amet.

24 |
25 | 26 |
27 |

Article 2

28 |

Lorem ipsum dolor sit amet.

29 |
30 | 31 |
32 |

Article 3

33 |

Lorem ipsum dolor sit amet.

34 |
35 |
36 | 39 |
40 | 41 | -------------------------------------------------------------------------------- /CSS Codes/Grid Properties/FunctionalGrid.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | Grid 4 | 20 | 21 | 22 |
23 |
24 |

Product 1

25 |

Rs.240

26 |
27 | 28 |
29 |

Product 2

30 |

Rs.240

31 |
32 | 33 |
34 |

Product 3

35 |

Rs.240

36 |
37 | 38 |
39 |

Product 4

40 |

Rs.240

41 |
42 |
43 | 44 | -------------------------------------------------------------------------------- /CSS Codes/Grid Properties/Intro.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | Grid Properties 4 | 5 | 6 | 7 |
8 |

Item 1

9 |

Item 2

10 |

Item 3

11 |

Item 4

12 |

Item 5

13 |

Item 6

14 |
15 | 16 | -------------------------------------------------------------------------------- /CSS Codes/Grid Properties/gridstyle.css: -------------------------------------------------------------------------------- 1 | .grid-container { 2 | border: 2px solid black; 3 | display: grid; 4 | border-radius: 20px; 5 | grid-template-columns: 1fr 1fr; 6 | grid-template-rows: 1fr 2fr 1fr; 7 | height: 100vh;width: 100vw; 8 | gap: 10px; 9 | } 10 | 11 | .item { 12 | border-radius: 20px; 13 | border: 2px solid red; 14 | padding: 15px; 15 | display: flex; 16 | justify-content: center; 17 | align-items: center; 18 | } 19 | .item1 {background-color: lightpink;} 20 | .item2 {background-color: lightgreen;} 21 | .item6 {background-color: lightgrey;} 22 | .item5 {background-color: lightcoral;} 23 | 24 | .item p { 25 | font-weight: bold; 26 | font-family: 'Times New Roman', Times, serif; 27 | font-size: 25px; 28 | } 29 | 30 | .item6 { 31 | grid-row-start: 1; 32 | grid-row-end: 2; 33 | grid-column: 1/3; 34 | } 35 | 36 | .item5 { 37 | grid-column: 1/3; 38 | } 39 | -------------------------------------------------------------------------------- /CSS Codes/Grid Properties/style.css: -------------------------------------------------------------------------------- 1 | body { 2 | margin: 0; 3 | } 4 | .grid-container { 5 | display: grid; 6 | grid-template-columns: 1fr 3fr; 7 | grid-template-rows: auto 3fr auto; 8 | gap:10px;height: 100vh; 9 | } 10 | 11 | .header { 12 | grid-column: 1/3; 13 | background-color: lightgreen; 14 | padding: 20px; 15 | } 16 | .aside { 17 | background-color: lightgrey; 18 | padding: 10px; 19 | 20 | } 21 | 22 | .footer { 23 | grid-column: 1/3; 24 | background-color: lightblue; 25 | text-align: center; 26 | } 27 | 28 | .main { 29 | display: grid; 30 | grid-template-columns: 1fr 1fr 1fr; 31 | gap:10px 32 | } 33 | .article { 34 | background-color: lightgoldenrodyellow; 35 | border: 2px solid black; height: 100px; 36 | border-radius: 10px; 37 | text-align: center; 38 | } -------------------------------------------------------------------------------- /CSS Codes/PSEUDO CLASSES/firstchild_lastchild_onlychild.html: -------------------------------------------------------------------------------- 1 | 9 | 10 | 23 | -------------------------------------------------------------------------------- /CSS Codes/PSEUDO CLASSES/focus.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | focus Pseudo Class 4 | 9 | 10 | 11 | 12 | 13 | 14 | -------------------------------------------------------------------------------- /CSS Codes/PSEUDO CLASSES/hover.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | hover Paseudo Class 4 | 17 | 18 | 19 |

20 |

Lorem, ipsum dolor.

21 | 22 | -------------------------------------------------------------------------------- /CSS Codes/PSEUDO CLASSES/nthChild.html: -------------------------------------------------------------------------------- 1 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 30 |
Row 1Row 1
Row 2Row 2
Row 3Row 3
31 | -------------------------------------------------------------------------------- /CSS Codes/Responsive/mediaquery.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Media Query 5 | 14 | 15 | 16 |

Hello from Media Query

17 | 18 | -------------------------------------------------------------------------------- /CSS Codes/Responsive/metaTag.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 10 | Document 11 | 12 | 13 |

14 | 15 | -------------------------------------------------------------------------------- /CSS Codes/SELECTORS/AdjacentSibling.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | Adjacent Sibling Selector 4 | 7 | 8 | 9 |

Heading

10 |

Para 1

11 |

Para 2

12 |

Heading

13 |

Para after h2

14 |
15 |

Para inside div

16 |
17 |

Para 1

18 |

Para 2

19 | 20 | -------------------------------------------------------------------------------- /CSS Codes/SELECTORS/Attribute.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | Attribute Selector 4 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | -------------------------------------------------------------------------------- /CSS Codes/SELECTORS/BasicSelectors.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | Element, Group, Universal 4 | 20 | 21 | 22 |

Lorem ipsum dolor sit.

23 | 24 | -------------------------------------------------------------------------------- /CSS Codes/SELECTORS/Child.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | Child Selector 4 | 9 | 10 | 11 |
12 |

Direct p1

13 | 14 |

Inner p of span

15 |
16 |

Direct p2

17 |
18 | 19 | -------------------------------------------------------------------------------- /CSS Codes/SELECTORS/Descendant.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | Descendant Selector Example 4 | 9 | 10 | 11 |
12 |

This is a heading inside a div.

13 |

This p inside div will be styled.

14 | 15 |

Para wrapped into span

16 |
17 |
18 | 19 |

This paragraph is outside the div and won’t be affected.

20 |

This p is also outside the div and won’t be styled.

21 | 22 | 23 | -------------------------------------------------------------------------------- /CSS Codes/SELECTORS/ID and class.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | ID and Class Selector 4 | 19 | 20 | 21 |

Main Heading 1

22 |

Lorem ipsum dolor sit amet.

23 | 24 |

Heading 2

25 |

Lorem ipsum dolor sit amet.

26 | 27 | -------------------------------------------------------------------------------- /CSS Codes/Transform/transform.css: -------------------------------------------------------------------------------- 1 | /*translate(left, top)*/ 2 | /* p:hover{ 3 | transform: translate(150px, 0px); 4 | } */ 5 | 6 | p { 7 | border: 2px solid black; 8 | height: 100px;width: 100px; 9 | margin: 100px; 10 | } 11 | 12 | p:hover{ 13 | /* transform: scaleX(2); */ 14 | /* transform: scaleY(2); */ 15 | /* transform: scale(0.5); */ 16 | 17 | /* transform: rotate(30deg); */ 18 | 19 | transform: skewY(20deg); 20 | } -------------------------------------------------------------------------------- /CSS Codes/Transform/transform.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | transform 4 | 5 | 6 | 7 |

8 | 9 | -------------------------------------------------------------------------------- /CSS Codes/Types of CSS/InlineCSS.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | Inline CSS 4 | 5 | 6 |

Inline CSS

13 | 14 |

Lorem ipsum dolor sit amet.

15 |

Lorem ipsum dolor sit amet.

16 |

Lorem ipsum dolor sit amet.

17 | 18 | 19 | 20 | 21 | -------------------------------------------------------------------------------- /CSS Codes/Types of CSS/InternalCSS.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | Internal CSS 4 | 5 | 15 | 16 | 17 |

Lorem, ipsum dolor.

18 |

Lorem ipsum dolor sit amet.

19 |

Lorem ipsum dolor sit amet.

20 |

Lorem ipsum dolor sit amet.

21 | 22 | 23 | -------------------------------------------------------------------------------- /CSS Codes/Types of CSS/style.css: -------------------------------------------------------------------------------- 1 | * { 2 | background-color: aqua; 3 | } -------------------------------------------------------------------------------- /CSS Codes/postion and relative/index.html: -------------------------------------------------------------------------------- 1 | 2 | 19 | 20 | 21 |
22 |

23 |
24 | 25 | -------------------------------------------------------------------------------- /CSS Codes/postion and relative/task.html: -------------------------------------------------------------------------------- 1 | 2 | 21 | 22 | 23 |
Header Content
24 | 25 | 26 | -------------------------------------------------------------------------------- /HTML Code/Attributes.html: -------------------------------------------------------------------------------- 1 |

2 | Lorem ipsum dolor sit amet consectetur, 3 | adipisicing elit. Distinctio, voluptas! 4 |

5 | 6 |

7 | Lorem ipsum dolor sit amet. 8 |

9 | 10 | -------------------------------------------------------------------------------- /HTML Code/BlockLevelTag.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Block Level vs Inline Tags 5 | 6 | 7 |

Hello1

Hello2

8 | Hello 3 9 | Hello 4 10 | 11 | 12 | -------------------------------------------------------------------------------- /HTML Code/DisplayImages.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | Image Tag 4 | 5 | 6 |

Nature Image

7 |

Lorem ipsum dolor sit amet consectetur adipisicing elit. Voluptas sint reiciendis consectetur deleniti facilis inventore exercitationem error ipsam quasi expedita hic autem consequatur, fugit quia in totam provident porro ducimus? Eius, doloribus commodi fugit distinctio sed minima iusto libero, accusamus dicta voluptatem quia sapiente alias id voluptas quisquam! Quia, ratione.

8 | 10 | 11 | Image is Loading 13 | 14 | -------------------------------------------------------------------------------- /HTML Code/HeadingTags.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Basic Tags 5 | 6 | 7 |

Heading 1

8 |

Heading 2

9 |

Heading 3

10 |

Heading 4

11 |
Heading 5
12 |
Heading 6
13 | 14 | -------------------------------------------------------------------------------- /HTML Code/HyperText.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Hyper Text 5 | 6 | 7 | 9 | Kodnest 10 |

11 | 12 | Nandi Hills 13 | 14 | 15 | -------------------------------------------------------------------------------- /HTML Code/Iframes.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | Iframes 4 | 5 | 6 | 9 | 10 | 13 | 14 | 15 | 16 | -------------------------------------------------------------------------------- /HTML Code/List.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | List 4 | 5 | 6 |

Ordered List

7 |
    8 |
  1. Item 1
  2. 9 |
  3. Item 1
  4. 10 |
  5. Item 1
  6. 11 |
12 | 13 |

Unorderd List

14 | 19 | 20 |

Descriptional List (Data Def. List)

21 |
22 |
Tea:
23 |
Lorem ipsum dolor sit amet consectetur adipisicing elit. Architecto, natus.
24 | 25 |
Coffee:
26 |
Lorem ipsum dolor sit, amet consectetur adipisicing elit. Sunt totam non natus necessitatibus sed nobis ullam obcaecati dolorem at mollitia?
27 |
28 | 29 |

Nested List

30 |
    31 |
  1. Item1 32 | 37 |
  2. 38 | 39 |
  3. Item2 43 |
  4. 44 |
45 | 46 | -------------------------------------------------------------------------------- /HTML Code/PairedTags.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Paired vs Unpaired Tag 5 | 6 | 7 |
8 |

Lorem ipsum dolor sit amet.

9 |

10 |

Lorem ipsum dolor sit amet.

11 |

12 | 13 | 14 | -------------------------------------------------------------------------------- /HTML Code/ParaTag.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | Understanding Paragraph Tag 4 | 5 | 6 |

Lorem ipsum dolor sit amet consectetur adipisicing elit. Maiores doloribus dolore fuga, laborum voluptatibus voluptas fugit id recusandae itaque omnis laboriosam totam expedita ab eligendi quasi. Repellendus, hic consequatur magni doloremque unde inventore, nobis neque omnis voluptates assumenda porro aut molestias harum laudantium impedit facere quae. Quidem voluptates esse, obcaecati laboriosam assumenda odit voluptate eos necessitatibus quas blanditiis est repudiandae ratione tempora porro ex omnis at? Soluta voluptatem consequatur, similique impedit ullam facere placeat optio voluptatibus. Adipisci fugiat aliquid culpa soluta modi dolor dolorem, commodi possimus neque provident praesentium facilis excepturi error reiciendis dicta quo, ab assumenda, placeat repellendus! Consectetur?

7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /HTML Code/PasswordValidation.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | Password Validation 4 | 5 | 6 |

At least one uppercase letter, 7 | one lowercase letter, and one digit.

8 |
9 | 10 | 12 | 13 |
14 | 15 | -------------------------------------------------------------------------------- /HTML Code/Pattern.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | Name Field Validation 4 | 5 | 6 |
7 |

Name Validation Cases:

8 |

1.Name Should Contain Only Charcaters

9 |

2.Min. Length Should be 2

10 |

3.Max Length Should be 15

11 | 12 | 14 | 15 |
16 | 17 | -------------------------------------------------------------------------------- /HTML Code/TextFormattingTags.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Text Formatting Tags 5 | 6 | 7 |

8 | Lorem ipsum, 9 | important word 10 | sit amet consectetur 11 | adipisicing elit. Beatae, 12 | exercitationem. 13 |

H2O

14 |

(a+b)2 = a2 + b2 + 2ab

15 |

Some para contentHello Priya !

16 | Completed! 17 |

18 | 19 | 20 | 21 | -------------------------------------------------------------------------------- /HTML Code/Video.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Video Example 5 | 6 | 7 |

Watch the Video

8 |