├── .DS_Store ├── 03landing ├── .vscode │ └── settings.json ├── index.html └── css │ └── style.css ├── 04comingsoon ├── .vscode │ └── settings.json ├── .DS_Store ├── images │ ├── icon.png │ └── .DS_Store ├── index.html └── css │ └── style.css ├── 07registration ├── css │ ├── styletwo.css │ └── style.css ├── .DS_Store ├── images │ ├── mobile.png │ └── yellow-blob.png └── index.html ├── test ├── web.jpeg ├── index.html └── style.css ├── 03html ├── .DS_Store ├── img │ ├── .DS_Store │ └── logo-white.png ├── contact │ └── contact.html ├── service │ └── service.html └── index.html ├── 06mobileapp ├── .DS_Store ├── images │ ├── bg.png │ ├── logo.png │ ├── phone-image.png │ └── google-play-badge.png ├── index.html └── css │ └── style.css ├── 09razorpaystyle ├── cycleman.jpeg ├── style.css └── index.html ├── 01Hello └── index.html ├── 05mediaQ ├── index.html └── css │ └── style.css ├── 08animation ├── style.css └── index.html └── 02emmet └── index.html /.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiteshchoudhary/web-dev-21/HEAD/.DS_Store -------------------------------------------------------------------------------- /03landing/.vscode/settings.json: -------------------------------------------------------------------------------- 1 | { 2 | "liveServer.settings.port": 5501 3 | } -------------------------------------------------------------------------------- /04comingsoon/.vscode/settings.json: -------------------------------------------------------------------------------- 1 | { 2 | "liveServer.settings.port": 5501 3 | } -------------------------------------------------------------------------------- /07registration/css/styletwo.css: -------------------------------------------------------------------------------- 1 | body { 2 | background-color: crimson; 3 | } 4 | -------------------------------------------------------------------------------- /test/web.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiteshchoudhary/web-dev-21/HEAD/test/web.jpeg -------------------------------------------------------------------------------- /03html/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiteshchoudhary/web-dev-21/HEAD/03html/.DS_Store -------------------------------------------------------------------------------- /03html/img/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiteshchoudhary/web-dev-21/HEAD/03html/img/.DS_Store -------------------------------------------------------------------------------- /04comingsoon/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiteshchoudhary/web-dev-21/HEAD/04comingsoon/.DS_Store -------------------------------------------------------------------------------- /06mobileapp/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiteshchoudhary/web-dev-21/HEAD/06mobileapp/.DS_Store -------------------------------------------------------------------------------- /03html/img/logo-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiteshchoudhary/web-dev-21/HEAD/03html/img/logo-white.png -------------------------------------------------------------------------------- /06mobileapp/images/bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiteshchoudhary/web-dev-21/HEAD/06mobileapp/images/bg.png -------------------------------------------------------------------------------- /07registration/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiteshchoudhary/web-dev-21/HEAD/07registration/.DS_Store -------------------------------------------------------------------------------- /04comingsoon/images/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiteshchoudhary/web-dev-21/HEAD/04comingsoon/images/icon.png -------------------------------------------------------------------------------- /06mobileapp/images/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiteshchoudhary/web-dev-21/HEAD/06mobileapp/images/logo.png -------------------------------------------------------------------------------- /04comingsoon/images/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiteshchoudhary/web-dev-21/HEAD/04comingsoon/images/.DS_Store -------------------------------------------------------------------------------- /09razorpaystyle/cycleman.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiteshchoudhary/web-dev-21/HEAD/09razorpaystyle/cycleman.jpeg -------------------------------------------------------------------------------- /07registration/images/mobile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiteshchoudhary/web-dev-21/HEAD/07registration/images/mobile.png -------------------------------------------------------------------------------- /06mobileapp/images/phone-image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiteshchoudhary/web-dev-21/HEAD/06mobileapp/images/phone-image.png -------------------------------------------------------------------------------- /07registration/images/yellow-blob.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiteshchoudhary/web-dev-21/HEAD/07registration/images/yellow-blob.png -------------------------------------------------------------------------------- /06mobileapp/images/google-play-badge.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiteshchoudhary/web-dev-21/HEAD/06mobileapp/images/google-play-badge.png -------------------------------------------------------------------------------- /01Hello/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | Document 8 | 9 | 10 |

Hello world

11 |

Hitesh Choudhary

12 | 13 | 14 | -------------------------------------------------------------------------------- /03landing/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | Welcome page 8 | 9 | 10 | 11 |

Welcome to CSS

12 |

Web Dev by LCO

13 | 14 | 15 | -------------------------------------------------------------------------------- /05mediaQ/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | Welcome page 8 | 9 | 10 | 11 |

Welcome to CSS

12 |

Web Dev by LCO

13 | 14 | 15 | -------------------------------------------------------------------------------- /test/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | Document 8 | 9 | 10 | 11 |
12 |

Cycle Star

13 |

Cycle tourist

14 |
15 |
16 |

Heyy

17 |
18 | 19 | -------------------------------------------------------------------------------- /09razorpaystyle/style.css: -------------------------------------------------------------------------------- 1 | body { 2 | background-color: #1d1d1d; 3 | } 4 | 5 | header { 6 | height: 80vh; 7 | background-image: linear-gradient( 8 | to right bottom, 9 | rgba(219, 11, 94, 0.781), 10 | rgba(6, 0, 12, 0.952) 11 | ), 12 | url(cycleman.jpeg); 13 | 14 | background-size: cover; 15 | background-position: top; 16 | clip-path: polygon(100% 0, 100% 38%, 86% 70%, 0 53%, 0 0); 17 | } 18 | 19 | header h1 { 20 | color: #fff; 21 | font-size: 70px; 22 | padding-top: 15%; 23 | padding-left: 15%; 24 | } 25 | -------------------------------------------------------------------------------- /04comingsoon/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | Coming soon | LCO 8 | 9 | 10 | 11 | image 12 | 18 | 19 | -------------------------------------------------------------------------------- /test/style.css: -------------------------------------------------------------------------------- 1 | @import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,400;0,900;1,400&display=swap"); 2 | 3 | * { 4 | margin: 0; 5 | padding: 0; 6 | } 7 | 8 | header { 9 | height: 95vh; 10 | background-image: linear-gradient( 11 | to right bottom, 12 | rgba(30, 46, 192, 0.705), 13 | rgba(12, 29, 180, 0.719) 14 | ), 15 | url(web.jpeg); 16 | 17 | background-size: cover; 18 | background-position: top; 19 | clip-path: polygon(100% 1%, 100% 40%, 86% 61%, 0 55%, 0 0); 20 | } 21 | 22 | header h2 { 23 | font-size: 100px; 24 | padding-top: 10%; 25 | padding-left: 15%; 26 | color: aliceblue; 27 | } 28 | 29 | body { 30 | background-color: #1d1d1d; 31 | } 32 | -------------------------------------------------------------------------------- /08animation/style.css: -------------------------------------------------------------------------------- 1 | body { 2 | background: linear-gradient(90deg, #00d2ff 0%, #3a47d5 100%); 3 | color: #fff; 4 | } 5 | 6 | .container { 7 | height: 100vh; 8 | width: 100vw; 9 | } 10 | 11 | .wrapper { 12 | margin: 0 auto; 13 | height: 500px; 14 | width: 500px; 15 | display: flex; 16 | justify-content: space-around; 17 | align-items: center; 18 | border: 3px solid black; 19 | } 20 | 21 | .left, 22 | .right { 23 | height: 100px; 24 | width: 100px; 25 | background-color: #fff; 26 | 27 | animation: pump 1.5s linear infinite; 28 | } 29 | 30 | @keyframes pump { 31 | 0%, 32 | 100% { 33 | transform: scale(0); 34 | } 35 | 75% { 36 | transform: scale(1); 37 | } 38 | 50% { 39 | transform: scale(0); 40 | } 41 | } 42 | -------------------------------------------------------------------------------- /08animation/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | Animation 8 | 12 | 13 | 14 | 15 |
16 |
17 |

Hello Animation

18 |
19 |
20 |
21 |
22 | 23 | -------------------------------------------------------------------------------- /09razorpaystyle/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | Razoyish 8 | 9 | 10 | 11 |
12 |

Cycle Star

13 |

Cycle tourist

14 |
15 |
16 |

Hello world

17 |
18 | 23 |
24 |
25 | 26 | -------------------------------------------------------------------------------- /04comingsoon/css/style.css: -------------------------------------------------------------------------------- 1 | @import url("https://fonts.googleapis.com/css2?family=Oswald:wght@200;700&display=swap"); 2 | 3 | :root { 4 | --yellow: #ffbb30; 5 | --black: #242424; 6 | --grey: #818181; 7 | --white: #ffffff; 8 | } 9 | 10 | * { 11 | margin: 0; 12 | padding: 0; 13 | outline: 0; 14 | } 15 | 16 | body { 17 | height: 100%; 18 | background-color: var(--yellow); 19 | font-family: "Oswald", sans-serif; 20 | } 21 | 22 | img { 23 | display: block; 24 | /* margin-left: auto; 25 | margin-right: auto; */ 26 | height: 150px; 27 | width: 150px; 28 | /* margin-top: 30px; 29 | margin-bottom: 30px; */ 30 | margin: 30px auto; 31 | } 32 | 33 | .banner { 34 | background-color: var(--white); 35 | padding-bottom: 30px; 36 | box-shadow: 0 5px 10px rgba(0, 0, 0, 0.4); 37 | } 38 | 39 | .text-container { 40 | width: 60%; 41 | display: block; 42 | margin: 0 auto; 43 | } 44 | 45 | h1 { 46 | font-size: 90px; 47 | text-align: center; 48 | color: var(--black); 49 | } 50 | 51 | p { 52 | color: var(--grey); 53 | text-align: right; 54 | font-size: 26px; 55 | font-weight: 200; 56 | } 57 | -------------------------------------------------------------------------------- /03landing/css/style.css: -------------------------------------------------------------------------------- 1 | @import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@400;900&display=swap"); 2 | 3 | body { 4 | background: linear-gradient(90deg, #00d2ff 0%, #3a47d5 100%); 5 | color: #ffffff; 6 | } 7 | 8 | h1 { 9 | font-size: 70px; 10 | text-align: center; 11 | margin-top: 20%; 12 | color: #ffffff; 13 | font-family: "Montserrat"; 14 | font-weight: 400; 15 | } 16 | 17 | span { 18 | color: #1f1f1f; 19 | font-size: 100px; 20 | font-weight: 900; 21 | } 22 | 23 | p { 24 | text-align: center; 25 | margin-top: -20px; 26 | font-size: 18px; 27 | letter-spacing: 3px; 28 | } 29 | 30 | button { 31 | margin: auto; 32 | display: block; 33 | } 34 | 35 | .btn { 36 | background-color: transparent; 37 | border: 2px solid #1f1f1f; 38 | border-radius: 0.6em; 39 | color: #1f1f1f; 40 | font-size: 1rem; 41 | 42 | padding: 1.2em 2.5em; 43 | cursor: grab; 44 | text-align: center; 45 | text-transform: uppercase; 46 | font-family: "Montserrat"; 47 | font-weight: 900; 48 | } 49 | 50 | .btn:hover { 51 | color: #ffffff; 52 | outline: 0; 53 | } 54 | 55 | .lco { 56 | transition: box-shadow 300ms ease-in-out, color 300ms ease-in-out; 57 | } 58 | 59 | .lco:hover { 60 | box-shadow: 0 0 40px 40px #1f1f1f inset; 61 | } 62 | -------------------------------------------------------------------------------- /02emmet/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | Document 9 | 20 | 21 | 22 | 23 | 24 |

Hello from emmet

25 |

LearnCOdeonline

26 | LCO 27 | 28 | 29 | 30 |

Class and ID

31 | 32 | 33 | 34 |
35 | 36 | 37 | 38 | 39 |
40 | 41 |
42 |

43 |
44 | 45 | 46 | -------------------------------------------------------------------------------- /03html/contact/contact.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | Document 8 | 9 | 10 |

Welcome to Contact page

11 |

You can reach us using this form

12 |

Home

13 | 14 |
15 |
16 | 17 |
18 | 24 |
25 | 26 |
27 | 33 | 37 | 38 | 43 | 44 | 45 |
46 |
47 | 48 | 49 | -------------------------------------------------------------------------------- /05mediaQ/css/style.css: -------------------------------------------------------------------------------- 1 | @import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@400;900&display=swap"); 2 | 3 | body { 4 | background: linear-gradient(90deg, #00d2ff 0%, #3a47d5 100%); 5 | color: #ffffff; 6 | } 7 | 8 | h1 { 9 | font-size: 70px; 10 | text-align: center; 11 | margin-top: 20%; 12 | color: #ffffff; 13 | font-family: "Montserrat"; 14 | font-weight: 400; 15 | } 16 | 17 | span { 18 | color: #1f1f1f; 19 | font-size: 100px; 20 | font-weight: 900; 21 | } 22 | 23 | p { 24 | text-align: center; 25 | margin-top: -20px; 26 | font-size: 18px; 27 | letter-spacing: 3px; 28 | } 29 | 30 | button { 31 | margin: auto; 32 | display: block; 33 | } 34 | 35 | .btn { 36 | background-color: transparent; 37 | border: 2px solid #1f1f1f; 38 | border-radius: 0.6em; 39 | color: #1f1f1f; 40 | font-size: 1rem; 41 | 42 | padding: 1.2em 2.5em; 43 | cursor: grab; 44 | text-align: center; 45 | text-transform: uppercase; 46 | font-family: "Montserrat"; 47 | font-weight: 900; 48 | } 49 | 50 | .btn:hover { 51 | color: #ffffff; 52 | outline: 0; 53 | } 54 | 55 | .lco { 56 | transition: box-shadow 300ms ease-in-out, color 300ms ease-in-out; 57 | } 58 | 59 | .lco:hover { 60 | box-shadow: 0 0 40px 40px #1f1f1f inset; 61 | } 62 | 63 | @media screen and (max-width: 800px) { 64 | body { 65 | background: orange; 66 | } 67 | 68 | h1 { 69 | font-size: 40px; 70 | } 71 | span { 72 | font-size: 60px; 73 | } 74 | } 75 | 76 | @media screen and (max-width: 600px) and (min-width: 400px) { 77 | body { 78 | background: crimson; 79 | } 80 | 81 | h1 { 82 | font-size: 40px; 83 | } 84 | span { 85 | font-size: 60px; 86 | } 87 | } 88 | -------------------------------------------------------------------------------- /06mobileapp/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | App landing page 8 | 9 | 10 | 11 | 12 | 33 | 34 |
35 |
36 |

Quality Courses, Affordable prices

37 |

Your Company Name

38 | 39 |
40 |
41 | 42 |
43 |
44 | 45 | -------------------------------------------------------------------------------- /07registration/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | Register page | LCO 8 | 9 | 10 | 11 | 12 | 13 |
14 |
15 | yellow image 16 | mobile 17 |
18 |
19 |

create account

20 |
21 |
22 | 23 | 24 |
25 |
26 | 27 |
28 | 29 | 30 |
31 | 32 | 33 |
34 | 35 |
36 | 37 |
38 |
OR
39 | 40 | 41 |
42 | 43 | 44 |
45 |
46 | 47 | -------------------------------------------------------------------------------- /03html/service/service.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | Document 8 | 13 | 14 | 15 |

Service page

16 |

Welcome to the food service

17 |

Home

18 | 19 |
20 |
21 | Behind every great computer, there is a mess of wire. 22 |
23 |

-- By Mr G.

24 |
25 | 26 |
27 | 28 |
29 | 30 |
31 | 32 | 33 | 34 | 35 | 36 | 37 | 38 | 39 | 40 | 41 | 42 | 43 | 44 | 45 | 46 | 47 | 48 | 49 | 50 | 51 | 52 | 53 | 54 | 55 | 56 | 57 |
SilverGoldPlatinum
loginsuper loginultra login
loginsuper loginultra login
loginsuper loginultra login
loginsuper loginultra login
58 | 59 | 60 |
61 | 62 | 63 | -------------------------------------------------------------------------------- /07registration/css/style.css: -------------------------------------------------------------------------------- 1 | * { 2 | padding: 0; 3 | margin: 0; 4 | outline: 0; 5 | } 6 | 7 | body { 8 | background-color: #d5d5d5; 9 | height: 100vh; 10 | font-family: "Roboto", sans-serif; 11 | } 12 | 13 | main { 14 | display: grid; 15 | grid-template-columns: 1fr 1fr; 16 | position: relative; 17 | height: 100%; 18 | } 19 | 20 | .flex { 21 | width: 100%; 22 | display: flex; 23 | justify-content: center; 24 | align-items: center; 25 | } 26 | 27 | .image-top { 28 | position: absolute; 29 | height: 500px; 30 | top: 0; 31 | left: 0; 32 | z-index: -1; 33 | } 34 | 35 | .mockup { 36 | height: 500px; 37 | } 38 | 39 | .form { 40 | width: 100%; 41 | } 42 | 43 | .flex-column { 44 | flex-direction: column; 45 | } 46 | 47 | .form-section { 48 | justify-content: flex-start; 49 | align-items: flex-start; 50 | margin-top: 50px; 51 | width: 75%; 52 | } 53 | 54 | .form-section h1 { 55 | font-size: 40px; 56 | margin: 25px 0; 57 | color: #343333; 58 | text-transform: capitalize; 59 | } 60 | 61 | input { 62 | font-size: 20px; 63 | padding: 10px 30px; 64 | border-radius: 8px; 65 | border: 1px solid #a7a7a7; 66 | margin-bottom: 15px; 67 | width: 100%; 68 | margin: 0 6px 10px 6px; 69 | } 70 | 71 | .row { 72 | display: flex; 73 | flex-direction: row; 74 | justify-content: space-between; 75 | } 76 | 77 | .btn { 78 | width: 100%; 79 | padding: 10px 0px; 80 | font-size: 20px; 81 | color: #ffffff; 82 | background-color: #f59e2e; 83 | border: none; 84 | outline: none; 85 | margin-bottom: 15px; 86 | border-radius: 8px; 87 | margin-top: 10px; 88 | } 89 | 90 | .btn:hover { 91 | background-color: #1d1d1d; 92 | } 93 | 94 | .btn-facebook { 95 | background-color: #354c8d; 96 | } 97 | .btn-twitter { 98 | background-color: #009fe9; 99 | } 100 | 101 | @media screen and (max-width: 600px) { 102 | .form-section { 103 | padding: 20px 30px; 104 | } 105 | .row { 106 | flex-direction: column; 107 | } 108 | .mockup { 109 | display: none; 110 | } 111 | main { 112 | grid-template-columns: 1fr; 113 | } 114 | } 115 | -------------------------------------------------------------------------------- /06mobileapp/css/style.css: -------------------------------------------------------------------------------- 1 | body { 2 | background-image: url("../images/bg.png"); 3 | background-position: center; 4 | background-size: cover; 5 | height: 100vh; 6 | margin: 0 5%; 7 | } 8 | 9 | nav { 10 | display: flex; 11 | flex-direction: row; 12 | height: 20vh; 13 | } 14 | 15 | .nav-link { 16 | text-decoration: none; 17 | color: #fff; 18 | font-size: 25px; 19 | } 20 | 21 | nav .nav-menu-icon { 22 | display: none; 23 | } 24 | 25 | nav .nav-items { 26 | flex: 2; 27 | display: flex; 28 | justify-content: space-between; 29 | align-items: center; 30 | list-style-type: none; 31 | } 32 | 33 | .brand-img { 34 | flex: 1; 35 | margin: auto; 36 | } 37 | 38 | .nav-logo { 39 | display: block; 40 | } 41 | 42 | .brand-img img { 43 | height: 80px; 44 | } 45 | 46 | .nav-button { 47 | background-color: #e03b8b; 48 | border: none; 49 | padding: 5px 40px; 50 | border-radius: 20px; 51 | cursor: pointer; 52 | } 53 | 54 | .container { 55 | display: flex; 56 | flex-direction: row; 57 | flex: 1; 58 | height: 80vh; 59 | } 60 | 61 | .col { 62 | display: flex; 63 | flex: 0.5; 64 | min-height: 100%; 65 | } 66 | 67 | .col-2 { 68 | overflow: hidden; 69 | } 70 | .phone-img { 71 | position: absolute; 72 | bottom: 0; 73 | right: 0; 74 | height: 80%; 75 | } 76 | 77 | .col-1 { 78 | flex-direction: column; 79 | justify-content: center; 80 | align-items: flex-start; 81 | color: #fff; 82 | } 83 | .col-1 p { 84 | font-size: 25px; 85 | } 86 | 87 | .col-1 h1 { 88 | font-size: 75px; 89 | margin: 20px 0; 90 | } 91 | 92 | .google-play-img { 93 | height: 90px; 94 | } 95 | 96 | @media screen and (max-width: 1230px) { 97 | .phone-img { 98 | height: 60%; 99 | } 100 | nav .nav-items { 101 | display: none; 102 | } 103 | nav .nav-menu-icon { 104 | display: block; 105 | margin: auto; 106 | } 107 | nav .nav-menu-icon i { 108 | color: #fff; 109 | font-size: 30px; 110 | } 111 | } 112 | 113 | @media screen and (max-width: 900px) { 114 | .phone-img { 115 | display: none; 116 | } 117 | .google-play-img { 118 | height: 50px; 119 | } 120 | } 121 | -------------------------------------------------------------------------------- /03html/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | Blog | LearnCodeOnline 8 | 13 | 14 | 15 | 20 | 21 |

Blog for LearnCodeOnline users

22 | LCO logo image 23 |

A place for coders

24 | 25 |
26 |

Getting started with C programming

27 |

Lorem ipsum dolor sit amet consectetur adipisicing elit. Aut eos velit facilis nihil excepturi neque doloremque, quos ad beatae eveniet quo, laudantium sapiente iste ipsa non. Inventore ea nisi enim rerum veniam fugit dolores soluta architecto sequi dicta hic, in et fuga atque, culpa, a porro excepturi recusandae assumenda obcaecati distinctio? Veniam consequatur deleniti amet eveniet nemo, sequi natus et!

28 |

Price 300 200 Rs

29 |

LearnCodeOnline

30 |
31 | 32 |
33 |

React is really getting popular

34 |

Lorem ipsum dolor sit amet consectetur adipisicing elit. Aut eos velit facilis nihil excepturi neque doloremque, quos ad beatae eveniet quo, laudantium sapiente iste ipsa non. Inventore ea nisi enim rerum veniam fugit dolores soluta architecto sequi dicta hic, in et fuga atque, culpa, a porro excepturi recusandae assumenda obcaecati distinctio? Veniam consequatur deleniti amet eveniet nemo, sequi natus et!

35 | image from web 39 |
40 | 41 |
42 |

Angular is changing everyday

43 |

Lorem ipsum dolor sit amet consectetur adipisicing elit. Aut eos velit facilis nihil excepturi neque doloremque, quos ad beatae eveniet quo, laudantium sapiente iste ipsa non. Inventore ea nisi enim rerum veniam fugit dolores soluta architecto sequi dicta hic, in et fuga atque, culpa, a porro excepturi recusandae assumenda obcaecati distinctio? Veniam consequatur deleniti amet eveniet nemo, sequi natus et!

44 |
45 | 46 |
47 |

python is taking with web with storm

48 |

Lorem ipsum dolor sit amet consectetur adipisicing elit. Aut eos velit facilis nihil excepturi neque doloremque, quos ad beatae eveniet quo, laudantium sapiente iste ipsa non. Inventore ea nisi enim rerum veniam fugit dolores soluta architecto sequi dicta hic, in et fuga atque, culpa, a porro excepturi recusandae assumenda obcaecati distinctio? Veniam consequatur deleniti amet eveniet nemo, sequi natus et!

49 |
50 | 51 | --------------------------------------------------------------------------------