├── 01 Feb 2023 | Project With Mock up with design -1 ├── assets │ └── avtar.png ├── index.html └── styles │ └── style.css ├── 06 Feb 2023 └── meta │ └── index.html ├── 06 March 2023 ├── Part One.js ├── Part Three.js └── Part Two.js ├── 07 Feb 2023 └── index.html ├── 08 Feb 2023 ├── index.html └── media.html ├── 09 Feb 2022 ├── index.html └── style.css ├── 10 Feb 2023 ├── assets │ ├── github.png │ ├── hambrger.png │ ├── image.png │ ├── linkedin.png │ ├── outlook.png │ ├── pc-image.png │ └── waving-hand.png ├── index.html └── style.css ├── 11 Feb 2023 ├── Beats │ ├── Icons │ │ ├── Group.svg │ │ ├── battery.png │ │ ├── bluetooth.png │ │ ├── caseLogo.png │ │ ├── charger.png │ │ ├── facebook.png │ │ ├── group.png │ │ ├── instagram.png │ │ ├── linkedin.png │ │ ├── mic.png │ │ ├── productLogo.png │ │ ├── rightArrow.png │ │ ├── shoppingBag.png │ │ ├── specsLogo.png │ │ ├── twitter.png │ │ └── upArrow.png │ ├── Photos │ │ ├── amazonLogo.png │ │ ├── appleLogo.png │ │ ├── beatsLogo.png │ │ ├── black.png │ │ ├── blue.png │ │ ├── buyNowSectionImage.png │ │ ├── caseImage.png │ │ ├── mainImage.png │ │ ├── nightBlack.png │ │ ├── onEar.png │ │ ├── redBlack.png │ │ ├── specsImage.png │ │ ├── spotifyLogo.png │ │ ├── twilightGray.png │ │ └── youtubeLogo.png │ ├── index.html │ └── style.css ├── Multi-Page Website │ ├── about │ │ ├── about.css │ │ └── about.html │ ├── contact │ │ ├── contact.css │ │ └── contact.html │ ├── images │ │ ├── bottomAngle.png │ │ ├── doctor.png │ │ ├── greenBox.png │ │ ├── logo.png │ │ ├── mouse.png │ │ ├── stethoscope.png │ │ ├── topAngle.png │ │ └── yellowBox.png │ ├── index.html │ ├── output.png │ └── style.css └── Real Estate │ ├── Icons │ ├── Logo.svg │ ├── facebook.png │ ├── featureImageBg1.svg │ ├── featureImageBg2.png │ ├── instagram.png │ ├── logoName.svg │ ├── mail.png │ └── twitter.png │ ├── Photos │ ├── cardImage1.png │ ├── cardImage2.png │ ├── cardImage3.png │ ├── cardImage4.png │ ├── cardImage5.png │ ├── cardImage6.png │ ├── cardImage7.png │ ├── cardImage8.png │ ├── cardImage9.png │ ├── featuresImage1.png │ ├── featuresImage2.png │ └── mainBackground.png │ ├── index.html │ └── style.css ├── 19 Jan 2023 └── index.html ├── 2 Feb | Project With Mock Up Design ├── assets │ ├── img1.png │ ├── img2.png │ ├── img3.png │ └── logo.png ├── index.html └── style │ └── style.css ├── 20 Jan 2023 └── index.html ├── 27 Feb 2023 ├── ColorChanger │ ├── index.html │ ├── script.js │ └── style.css ├── Part 1 │ └── index.html ├── Part 2 │ └── index.html └── Part 3 │ ├── index.html │ └── part3.html ├── 29 Jan ├── layout.html ├── positons.html └── zindex.html ├── 30 Jan └── flexbox.html ├── 31 Jan ├── creatingalbum.html └── grid.html ├── Assignment_01(HTML+CSS) ├── Output │ └── Project_1.png ├── assets │ ├── pexels-maxyne-barcel-10402282 1.png │ ├── scrool.png │ └── white-logo.png ├── index.html └── style.css ├── Assignment_02(HTML+CSS) ├── Output │ └── Project_2.png ├── assets │ ├── Header Illustration.png │ └── Logo.png ├── index.html └── style.css ├── Assignment_03(HTML+CSS) ├── Output │ └── Project_3.png ├── assets │ ├── bg.png │ └── white-logo.png ├── index.html └── style.css ├── DOM Assignment ├── Counter App │ ├── index.html │ ├── script.js │ └── style.css └── Event Listener Project │ ├── 01 onclick │ ├── index.html │ ├── script.js │ └── style.css │ ├── 02 dubbleClick │ ├── index.html │ ├── script.js │ └── style.css │ ├── 03 mouseOver │ ├── index.html │ ├── script.js │ └── style.css │ ├── 04 mouseOut │ ├── index.html │ ├── script.js │ └── style.css │ ├── 05 onKeyPress │ ├── index.html │ ├── script.js │ └── style.css │ └── 06 keydown_keyup │ ├── index.html │ ├── script.js │ └── style.css └── Time Table Project with HTML └── index.html /01 Feb 2023 | Project With Mock up with design -1/assets/avtar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pwlive/fullstackwebdevelopment/e8c859fa6653a77a6c36ba42b519fcec36df61f3/01 Feb 2023 | Project With Mock up with design -1/assets/avtar.png -------------------------------------------------------------------------------- /01 Feb 2023 | Project With Mock up with design -1/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 |
4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 |40 | I am an aspiring Full Stack JavaScript Developer , who is 41 | currently working as a Freelancer for 42 | National and International Client. 43 |
44 |PWSKILLS Full Stack Web Developement !@#$%^&*()
22 | 23 | 24 | 25 | -------------------------------------------------------------------------------- /06 March 2023/Part One.js: -------------------------------------------------------------------------------- 1 | const powerTwo = (n) => { 2 | return n ** 2 3 | } 4 | 5 | function powerCube(powerTwo, n){ 6 | return powerTwo(n) * n 7 | } 8 | 9 | // console.log(powerCube(powerTwo, 3)); 10 | 11 | function sayHello(){ 12 | return () => { 13 | console.log("Hello Hitesh"); 14 | } 15 | } 16 | 17 | let guessValue = sayHello() 18 | // console.log(guessValue); 19 | 20 | // guessValue() 21 | 22 | 23 | const higherOrder = n => { 24 | const oneFun = m => { 25 | const twoFun = p => { 26 | return m + n + p 27 | } 28 | return twoFun 29 | } 30 | return oneFun 31 | } 32 | 33 | console.log(higherOrder(2)(3)(4)) 34 | 35 | 36 | const myNums = [2, 3, 4, 5] 37 | 38 | const sumArray = arr => { 39 | let total = 0 40 | arr.forEach(function(element){ 41 | total += element 42 | }); 43 | return total 44 | } 45 | 46 | // console.log(sumArray(myNums)); 47 | 48 | function oneMoreHello(){ 49 | console.log("Hello hitesh ! ", Math.random()); 50 | } 51 | 52 | setInterval(oneMoreHello, 1000) 53 | 54 | // setTimeout(oneMoreHello, 2000) -------------------------------------------------------------------------------- /06 March 2023/Part Three.js: -------------------------------------------------------------------------------- 1 | let pattern = 'pw' 2 | 3 | let regExOne = new RegExp(pattern) 4 | 5 | let flag = 'gi' 6 | let regExTwo = new RegExp(pattern, flag) 7 | 8 | let regExThree = /pw/gi 9 | 10 | const strToCheck = "PW is growing at a rapid speed and recently they are working on Pwskills to create skills based pwcontent" 11 | 12 | const result = regExThree.test(strToCheck) 13 | console.log(result); 14 | 15 | const anotherResult = strToCheck.match(regExThree) 16 | console.log(anotherResult); 17 | 18 | const oneMoreResult = strToCheck.replace(regExThree, 'p-w') 19 | console.log(oneMoreResult); 20 | 21 | const webUrl = "https://pwskills.com/hitesh%20choudhary" 22 | 23 | const useableUrl = webUrl.replace(/%\d0/, '-') 24 | console.log(useableUrl); -------------------------------------------------------------------------------- /06 March 2023/Part Two.js: -------------------------------------------------------------------------------- 1 | let arr = [2, 3, 4] 2 | 3 | arr.forEach(function(element, index, arr){ 4 | console.log(index, element, arr); 5 | }) 6 | 7 | arr.forEach((element, index, arr) => { 8 | console.log("arrow: ", index, element, arr); 9 | }) 10 | 11 | const heros = ["naagraj", "doga", "dhruva", "maniraj"] 12 | 13 | 14 | heros.forEach((el) => { console.log(el.toUpperCase())}) 15 | 16 | arr.map(function(element, index, arr){ 17 | console.log(element, index, arr); 18 | }) 19 | 20 | heros.map((h) => console.log(h.toUpperCase())) 21 | 22 | //filter 23 | console.log(heros); 24 | const herosWithRaj = heros.filter((h) => { 25 | return h.endsWith('raj') 26 | }) 27 | console.log(herosWithRaj); 28 | 29 | //shopping cart 30 | 31 | const cartBill = [20, 30, 50] 32 | const sumOfCartBill = cartBill.reduce((prev, curr) => prev+curr, 0) 33 | console.log(sumOfCartBill); 34 | 35 | const gameScore = [200, 100, 310, 300, 250, 150] 36 | 37 | //check if all values are numbers 38 | console.log(typeof gameScore[1]); 39 | const gameScoreCheck = gameScore.every((v) => typeof v === 'number') 40 | console.log("check: ", gameScoreCheck); 41 | 42 | // find score above 200 43 | 44 | const above200 = gameScore.find((score) => score > 200 ) 45 | 46 | console.log(above200); 47 | 48 | 49 | // findIndex 50 | // some 51 | // sort -------------------------------------------------------------------------------- /07 Feb 2023/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 |Screen size : 1440px
16 |Screen size : 1024px
17 |Screen size : 768px
18 |Screen size : 425px
19 | 20 | 21 | -------------------------------------------------------------------------------- /09 Feb 2022/style.css: -------------------------------------------------------------------------------- 1 | body { 2 | height: 100vh; 3 | background-color: aquamarine; 4 | } 5 | 6 | h1 { 7 | font-size: 60px; 8 | text-align: center; 9 | } 10 | 11 | .laptop_large, 12 | .laptop, 13 | .tablet, 14 | .mobile { 15 | font-size: 40px; 16 | text-align: center; 17 | display: none; 18 | } 19 | 20 | /* media queries using max-width */ 21 | 22 | /* @media screen and (max-width: 1440px) { 23 | body { 24 | background-color: brown; 25 | } 26 | 27 | .laptop_large { 28 | display: block; 29 | } 30 | } 31 | 32 | 33 | @media screen and (max-width: 1024px) { 34 | body { 35 | background-color: chartreuse; 36 | } 37 | 38 | .laptop_large { 39 | display: none; 40 | } 41 | 42 | .laptop { 43 | display: block; 44 | } 45 | } 46 | 47 | 48 | @media screen and (max-width: 768px) { 49 | body { 50 | background-color: darkorange; 51 | } 52 | 53 | .laptop_large { 54 | display: none; 55 | } 56 | 57 | .laptop { 58 | display: none; 59 | } 60 | 61 | .tablet { 62 | display: block; 63 | } 64 | } 65 | 66 | 67 | @media screen and (max-width: 425px) { 68 | body { 69 | background-color: darkolivegreen; 70 | } 71 | 72 | .laptop_large { 73 | display: none; 74 | } 75 | 76 | .laptop { 77 | display: none; 78 | } 79 | 80 | .tablet { 81 | display: none; 82 | } 83 | 84 | .mobile { 85 | display: block; 86 | } 87 | } */ 88 | 89 | /* media queries with min-width */ 90 | 91 | @media screen and (min-width: 0px) { 92 | body { 93 | background-color: crimson; 94 | } 95 | 96 | .mobile { 97 | display: block; 98 | } 99 | } 100 | 101 | @media screen and (min-width: 425px) { 102 | body { 103 | background-color: aqua; 104 | } 105 | 106 | .mobile { 107 | display: none; 108 | } 109 | 110 | .tablet { 111 | display: block; 112 | } 113 | } 114 | 115 | @media screen and (min-width: 768px) { 116 | body { 117 | background-color: darkgoldenrod; 118 | } 119 | 120 | .mobile { 121 | display: none; 122 | } 123 | 124 | .tablet { 125 | display: none; 126 | } 127 | 128 | .laptop { 129 | display: block; 130 | } 131 | } 132 | 133 | @media screen and (min-width: 1024px) { 134 | body { 135 | background-color: forestgreen; 136 | } 137 | 138 | .mobile { 139 | display: none; 140 | } 141 | 142 | .tablet { 143 | display: none; 144 | } 145 | 146 | .laptop { 147 | display: none; 148 | } 149 | 150 | .laptop_large { 151 | display: block; 152 | } 153 | } 154 | 155 | /* media queries using both min width and max width */ 156 | 157 | /* 158 | @media screen and (min-width:425px) and (max-width: 768px) { 159 | body { 160 | background-color: darkgrey; 161 | } 162 | } */ 163 | -------------------------------------------------------------------------------- /10 Feb 2023/assets/github.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pwlive/fullstackwebdevelopment/e8c859fa6653a77a6c36ba42b519fcec36df61f3/10 Feb 2023/assets/github.png -------------------------------------------------------------------------------- /10 Feb 2023/assets/hambrger.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pwlive/fullstackwebdevelopment/e8c859fa6653a77a6c36ba42b519fcec36df61f3/10 Feb 2023/assets/hambrger.png -------------------------------------------------------------------------------- /10 Feb 2023/assets/image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pwlive/fullstackwebdevelopment/e8c859fa6653a77a6c36ba42b519fcec36df61f3/10 Feb 2023/assets/image.png -------------------------------------------------------------------------------- /10 Feb 2023/assets/linkedin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pwlive/fullstackwebdevelopment/e8c859fa6653a77a6c36ba42b519fcec36df61f3/10 Feb 2023/assets/linkedin.png -------------------------------------------------------------------------------- /10 Feb 2023/assets/outlook.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pwlive/fullstackwebdevelopment/e8c859fa6653a77a6c36ba42b519fcec36df61f3/10 Feb 2023/assets/outlook.png -------------------------------------------------------------------------------- /10 Feb 2023/assets/pc-image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pwlive/fullstackwebdevelopment/e8c859fa6653a77a6c36ba42b519fcec36df61f3/10 Feb 2023/assets/pc-image.png -------------------------------------------------------------------------------- /10 Feb 2023/assets/waving-hand.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pwlive/fullstackwebdevelopment/e8c859fa6653a77a6c36ba42b519fcec36df61f3/10 Feb 2023/assets/waving-hand.png -------------------------------------------------------------------------------- /10 Feb 2023/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 |Project 1
54 |Project 2
58 |Project 3
62 |Project 4
66 |45 | Enjoy award-winning Beats sound with wireless listening freedom and a 46 | sleek, streamlined design with comfortable padded earphones, 47 | delivering first-rate playback. 48 |
49 |Add to Bag
52 | N399K 53 |Connection
81 |Bluetooth v5.2
82 |Battery
87 |Duration 40h
88 |Load
93 |Fast Charge 4.2-AAC
94 |Microphone
99 |Supports Apple Siri and Google
100 |126 | With a comfortable and adaptable case so that you can store it 127 | whenever you want, and keep your durability forever. 128 |
129 |
130 |
131 | More Info
132 |
Buy Now, up to 40% off.
142 |Buy Now
145 |
163 | Black
164 | N299K
165 |
182 | Red Black
183 | N299K
184 |
201 | Night Black
202 | N299K
203 |
216 | Blue
217 | N299K
218 |
235 | Black
236 | N299K
237 |
39 | We had bring the best experts of medical field to provide you the best 40 | service as possible. We are trying our best to serve the world with 41 | our facilities, so that everyone can have a proper medical facility to 42 | avail. 43 |
44 |Doctors
51 |Customers
56 |Students
61 |40 | We're always available for our Patients with emergen problems. You can 41 | easily reach us 24/7. We focused on highest quality. 42 |
43 |38 | Are you looking for amazing Real estate? Don't worry! we got it for 39 | you 40 |
41 | 42 |$205,500
69 |$205,500
84 |$205,500
99 |$205,500
114 |$205,500
129 |$205,500
144 |$205,500
159 |$205,500
174 |$205,500
189 |209 | Lorem ipsum dolor sit amet consectetur adipisicing elit, Dolorem quo 210 | rem officia nisi exercitationem porro? 211 |
212 | 213 |222 | Lorem ipsum dolor sit amet consectetur adipisicing elit. Dolorem quo 223 | rem officia nisi exercitationem porro? 224 |
225 | 226 |Lorem ipsum dolor sit, amet consectetur adipisicing.
15 | 16 | 17 |Not just an ordinary headphones. It's designed for meditation.
26 | 27 |Lorem ipsum dolor sit amet consectetur adipisicing elit. Praesentium, tenetur!
22 |I am anurag mentor at PW Skills
23 | 24 | 25 |27 |
28 |
29 | 30 | 31 | 32 | 33 | 34 | 35 |54 |
55 | 56 |Hello Namaste
12 | 13 |Lorem ipsum dolor sit amet consectetur adipisicing elit. Tempora
37 | 38 | 39 | 40 | 41 | 42 | -------------------------------------------------------------------------------- /30 Jan/flexbox.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 |50 | Buy 1 Token. Join the DAO. Change the world 51 |
52 | 53 |Click me 👇
13 |Click me twice 👇👇
13 |Restricted Area 🙅
13 |Safe Zone 😃
13 |Time Table | 15 ||||||||
---|---|---|---|---|---|---|---|
Day/Lecture | 18 |I 09:00 - 09:30 |
19 | II 09:00 - 09:30 |
20 | III 09:00 - 09:30 |
21 | Lunch | 22 |IV 09:00 - 09:30 |
23 | V 09:00 - 09:30 |
24 | VI 09:00 - 09:30 |
25 |
Monday | 30 |Subject I | 31 |Subject II | 32 |Subject III | 33 |Lunch Break | 34 |Subject IV | 35 |Subject V | 36 |Subject VI | 37 |
Tuesday | 40 |Subject I | 41 |Subject II | 42 |Subject III | 43 |Subject IV | 44 |Subject V | 45 |Subject VI | 46 ||
Wednesday | 49 |Subject I | 50 |Subject II | 51 |Subject III | 52 |Subject IV | 53 |Subject V | 54 |Subject VI | 55 ||
Thursday | 58 |Subject I | 59 |Subject II | 60 |Subject III | 61 |Subject IV | 62 |Subject V | 63 |Subject VI | 64 ||
Friday | 67 |Subject I | 68 |Subject II | 69 |Subject III | 70 |Subject IV | 71 |Subject V | 72 |Subject VI | 73 ||
Saturday | 76 |Subject I | 77 |Subject II | 78 |Subject III | 79 |No Lecture | 80 |