├── README.md ├── bankist ├── Bankist-flowchart.png ├── README.md ├── icon.png ├── index.html ├── logo.png ├── script.js └── style.css ├── blackJack ├── backgroundImage │ └── casino table.jpg ├── index.css ├── index.html └── index.js ├── calculator ├── .prettierrc ├── index.html ├── script.js └── style.css ├── carousel ├── index.html ├── index.js └── styles.css ├── clock ├── index.html ├── script.js └── style.css ├── diceChallenge ├── dicee.html ├── index.js └── styles.css ├── diceGame ├── index.css ├── index.html └── index.js ├── dragDrop ├── index.html ├── index.js └── styles.css ├── dynamicTweetBox ├── index.html ├── script.js └── style.css ├── expandingCards ├── .prettierrc ├── index.html ├── script.js └── style.css ├── foodMenuItems ├── app.js ├── images │ ├── item1.jpg │ ├── item10.jpg │ ├── item2.jpg │ ├── item3.jpg │ ├── item4.jpg │ ├── item5.jpg │ ├── item6.jpg │ ├── item7.jpg │ ├── item8.jpg │ └── item9.jpg ├── index.html └── style.css ├── grocify ├── grocery.png ├── index.html ├── script.js └── style.css ├── guessingGame ├── index.html ├── script.js └── style.css ├── hoverBoard ├── app.js ├── index.html └── styles.css ├── ipTracker ├── .gitignore ├── design │ ├── active-states.jpg │ ├── desktop-design.jpg │ ├── desktop-preview.jpg │ └── mobile-design.jpg ├── images │ ├── favicon-32x32.png │ ├── icon-arrow.svg │ ├── icon-location.svg │ ├── logo.jpg │ └── pattern-bg.png ├── index.html ├── main.js ├── package-lock.json ├── package.json └── style.css ├── javascriptQuiz ├── index.html ├── script.js └── style.css ├── leadGenerator-ChromeExtension ├── index.html ├── logo.png ├── manifest.json ├── script.js └── style.css ├── modalWindow ├── index.html ├── script.js └── style.css ├── myTravelBucketList ├── images │ └── plane.png ├── index.html ├── script.js └── styles.css ├── newYearCountdown ├── index.html ├── newyear.jpg ├── script.js └── style.css ├── picture-in-picture ├── index.html ├── script.js └── style.css ├── pigGame ├── dice-1.png ├── dice-2.png ├── dice-3.png ├── dice-4.png ├── dice-5.png ├── dice-6.png ├── index.html ├── script.js └── style.css ├── progressSteps ├── .prettierrc ├── index.html ├── script.js └── style.css ├── randomColorGenerator ├── index.css ├── index.html └── index.js ├── randomPasswordGenerator ├── index.html ├── script.js └── styles.css ├── rockpaperscissors ├── app.js ├── index.html └── styles.css ├── rotatingNavigation ├── .prettierrc ├── index.html ├── script.js └── style.css ├── searchBar ├── index.html ├── index.js └── styles.css └── weatherly ├── index.html ├── script.js └── style.css /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namyakhan/javascriptProjects/HEAD/README.md -------------------------------------------------------------------------------- /bankist/Bankist-flowchart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namyakhan/javascriptProjects/HEAD/bankist/Bankist-flowchart.png -------------------------------------------------------------------------------- /bankist/README.md: -------------------------------------------------------------------------------- 1 | username: nk 2 | pin: 2222 3 | -------------------------------------------------------------------------------- /bankist/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namyakhan/javascriptProjects/HEAD/bankist/icon.png -------------------------------------------------------------------------------- /bankist/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namyakhan/javascriptProjects/HEAD/bankist/index.html -------------------------------------------------------------------------------- /bankist/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namyakhan/javascriptProjects/HEAD/bankist/logo.png -------------------------------------------------------------------------------- /bankist/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namyakhan/javascriptProjects/HEAD/bankist/script.js -------------------------------------------------------------------------------- /bankist/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namyakhan/javascriptProjects/HEAD/bankist/style.css -------------------------------------------------------------------------------- /blackJack/backgroundImage/casino table.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namyakhan/javascriptProjects/HEAD/blackJack/backgroundImage/casino table.jpg -------------------------------------------------------------------------------- /blackJack/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namyakhan/javascriptProjects/HEAD/blackJack/index.css -------------------------------------------------------------------------------- /blackJack/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namyakhan/javascriptProjects/HEAD/blackJack/index.html -------------------------------------------------------------------------------- /blackJack/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namyakhan/javascriptProjects/HEAD/blackJack/index.js -------------------------------------------------------------------------------- /calculator/.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namyakhan/javascriptProjects/HEAD/calculator/.prettierrc -------------------------------------------------------------------------------- /calculator/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namyakhan/javascriptProjects/HEAD/calculator/index.html -------------------------------------------------------------------------------- /calculator/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namyakhan/javascriptProjects/HEAD/calculator/script.js -------------------------------------------------------------------------------- /calculator/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namyakhan/javascriptProjects/HEAD/calculator/style.css -------------------------------------------------------------------------------- /carousel/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namyakhan/javascriptProjects/HEAD/carousel/index.html -------------------------------------------------------------------------------- /carousel/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namyakhan/javascriptProjects/HEAD/carousel/index.js -------------------------------------------------------------------------------- /carousel/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namyakhan/javascriptProjects/HEAD/carousel/styles.css -------------------------------------------------------------------------------- /clock/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namyakhan/javascriptProjects/HEAD/clock/index.html -------------------------------------------------------------------------------- /clock/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namyakhan/javascriptProjects/HEAD/clock/script.js -------------------------------------------------------------------------------- /clock/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namyakhan/javascriptProjects/HEAD/clock/style.css -------------------------------------------------------------------------------- /diceChallenge/dicee.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namyakhan/javascriptProjects/HEAD/diceChallenge/dicee.html -------------------------------------------------------------------------------- /diceChallenge/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namyakhan/javascriptProjects/HEAD/diceChallenge/index.js -------------------------------------------------------------------------------- /diceChallenge/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namyakhan/javascriptProjects/HEAD/diceChallenge/styles.css -------------------------------------------------------------------------------- /diceGame/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namyakhan/javascriptProjects/HEAD/diceGame/index.css -------------------------------------------------------------------------------- /diceGame/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namyakhan/javascriptProjects/HEAD/diceGame/index.html -------------------------------------------------------------------------------- /diceGame/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namyakhan/javascriptProjects/HEAD/diceGame/index.js -------------------------------------------------------------------------------- /dragDrop/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namyakhan/javascriptProjects/HEAD/dragDrop/index.html -------------------------------------------------------------------------------- /dragDrop/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namyakhan/javascriptProjects/HEAD/dragDrop/index.js -------------------------------------------------------------------------------- /dragDrop/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namyakhan/javascriptProjects/HEAD/dragDrop/styles.css -------------------------------------------------------------------------------- /dynamicTweetBox/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namyakhan/javascriptProjects/HEAD/dynamicTweetBox/index.html -------------------------------------------------------------------------------- /dynamicTweetBox/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namyakhan/javascriptProjects/HEAD/dynamicTweetBox/script.js -------------------------------------------------------------------------------- /dynamicTweetBox/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namyakhan/javascriptProjects/HEAD/dynamicTweetBox/style.css -------------------------------------------------------------------------------- /expandingCards/.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namyakhan/javascriptProjects/HEAD/expandingCards/.prettierrc -------------------------------------------------------------------------------- /expandingCards/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namyakhan/javascriptProjects/HEAD/expandingCards/index.html -------------------------------------------------------------------------------- /expandingCards/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namyakhan/javascriptProjects/HEAD/expandingCards/script.js -------------------------------------------------------------------------------- /expandingCards/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namyakhan/javascriptProjects/HEAD/expandingCards/style.css -------------------------------------------------------------------------------- /foodMenuItems/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namyakhan/javascriptProjects/HEAD/foodMenuItems/app.js -------------------------------------------------------------------------------- /foodMenuItems/images/item1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namyakhan/javascriptProjects/HEAD/foodMenuItems/images/item1.jpg -------------------------------------------------------------------------------- /foodMenuItems/images/item10.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namyakhan/javascriptProjects/HEAD/foodMenuItems/images/item10.jpg -------------------------------------------------------------------------------- /foodMenuItems/images/item2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namyakhan/javascriptProjects/HEAD/foodMenuItems/images/item2.jpg -------------------------------------------------------------------------------- /foodMenuItems/images/item3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namyakhan/javascriptProjects/HEAD/foodMenuItems/images/item3.jpg -------------------------------------------------------------------------------- /foodMenuItems/images/item4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namyakhan/javascriptProjects/HEAD/foodMenuItems/images/item4.jpg -------------------------------------------------------------------------------- /foodMenuItems/images/item5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namyakhan/javascriptProjects/HEAD/foodMenuItems/images/item5.jpg -------------------------------------------------------------------------------- /foodMenuItems/images/item6.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namyakhan/javascriptProjects/HEAD/foodMenuItems/images/item6.jpg -------------------------------------------------------------------------------- /foodMenuItems/images/item7.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namyakhan/javascriptProjects/HEAD/foodMenuItems/images/item7.jpg -------------------------------------------------------------------------------- /foodMenuItems/images/item8.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namyakhan/javascriptProjects/HEAD/foodMenuItems/images/item8.jpg -------------------------------------------------------------------------------- /foodMenuItems/images/item9.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namyakhan/javascriptProjects/HEAD/foodMenuItems/images/item9.jpg -------------------------------------------------------------------------------- /foodMenuItems/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namyakhan/javascriptProjects/HEAD/foodMenuItems/index.html -------------------------------------------------------------------------------- /foodMenuItems/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namyakhan/javascriptProjects/HEAD/foodMenuItems/style.css -------------------------------------------------------------------------------- /grocify/grocery.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namyakhan/javascriptProjects/HEAD/grocify/grocery.png -------------------------------------------------------------------------------- /grocify/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namyakhan/javascriptProjects/HEAD/grocify/index.html -------------------------------------------------------------------------------- /grocify/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namyakhan/javascriptProjects/HEAD/grocify/script.js -------------------------------------------------------------------------------- /grocify/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namyakhan/javascriptProjects/HEAD/grocify/style.css -------------------------------------------------------------------------------- /guessingGame/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namyakhan/javascriptProjects/HEAD/guessingGame/index.html -------------------------------------------------------------------------------- /guessingGame/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namyakhan/javascriptProjects/HEAD/guessingGame/script.js -------------------------------------------------------------------------------- /guessingGame/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namyakhan/javascriptProjects/HEAD/guessingGame/style.css -------------------------------------------------------------------------------- /hoverBoard/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namyakhan/javascriptProjects/HEAD/hoverBoard/app.js -------------------------------------------------------------------------------- /hoverBoard/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namyakhan/javascriptProjects/HEAD/hoverBoard/index.html -------------------------------------------------------------------------------- /hoverBoard/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namyakhan/javascriptProjects/HEAD/hoverBoard/styles.css -------------------------------------------------------------------------------- /ipTracker/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namyakhan/javascriptProjects/HEAD/ipTracker/.gitignore -------------------------------------------------------------------------------- /ipTracker/design/active-states.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namyakhan/javascriptProjects/HEAD/ipTracker/design/active-states.jpg -------------------------------------------------------------------------------- /ipTracker/design/desktop-design.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namyakhan/javascriptProjects/HEAD/ipTracker/design/desktop-design.jpg -------------------------------------------------------------------------------- /ipTracker/design/desktop-preview.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namyakhan/javascriptProjects/HEAD/ipTracker/design/desktop-preview.jpg -------------------------------------------------------------------------------- /ipTracker/design/mobile-design.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namyakhan/javascriptProjects/HEAD/ipTracker/design/mobile-design.jpg -------------------------------------------------------------------------------- /ipTracker/images/favicon-32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namyakhan/javascriptProjects/HEAD/ipTracker/images/favicon-32x32.png -------------------------------------------------------------------------------- /ipTracker/images/icon-arrow.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namyakhan/javascriptProjects/HEAD/ipTracker/images/icon-arrow.svg -------------------------------------------------------------------------------- /ipTracker/images/icon-location.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namyakhan/javascriptProjects/HEAD/ipTracker/images/icon-location.svg -------------------------------------------------------------------------------- /ipTracker/images/logo.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namyakhan/javascriptProjects/HEAD/ipTracker/images/logo.jpg -------------------------------------------------------------------------------- /ipTracker/images/pattern-bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namyakhan/javascriptProjects/HEAD/ipTracker/images/pattern-bg.png -------------------------------------------------------------------------------- /ipTracker/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namyakhan/javascriptProjects/HEAD/ipTracker/index.html -------------------------------------------------------------------------------- /ipTracker/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namyakhan/javascriptProjects/HEAD/ipTracker/main.js -------------------------------------------------------------------------------- /ipTracker/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namyakhan/javascriptProjects/HEAD/ipTracker/package-lock.json -------------------------------------------------------------------------------- /ipTracker/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namyakhan/javascriptProjects/HEAD/ipTracker/package.json -------------------------------------------------------------------------------- /ipTracker/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namyakhan/javascriptProjects/HEAD/ipTracker/style.css -------------------------------------------------------------------------------- /javascriptQuiz/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namyakhan/javascriptProjects/HEAD/javascriptQuiz/index.html -------------------------------------------------------------------------------- /javascriptQuiz/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namyakhan/javascriptProjects/HEAD/javascriptQuiz/script.js -------------------------------------------------------------------------------- /javascriptQuiz/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namyakhan/javascriptProjects/HEAD/javascriptQuiz/style.css -------------------------------------------------------------------------------- /leadGenerator-ChromeExtension/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namyakhan/javascriptProjects/HEAD/leadGenerator-ChromeExtension/index.html -------------------------------------------------------------------------------- /leadGenerator-ChromeExtension/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namyakhan/javascriptProjects/HEAD/leadGenerator-ChromeExtension/logo.png -------------------------------------------------------------------------------- /leadGenerator-ChromeExtension/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namyakhan/javascriptProjects/HEAD/leadGenerator-ChromeExtension/manifest.json -------------------------------------------------------------------------------- /leadGenerator-ChromeExtension/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namyakhan/javascriptProjects/HEAD/leadGenerator-ChromeExtension/script.js -------------------------------------------------------------------------------- /leadGenerator-ChromeExtension/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namyakhan/javascriptProjects/HEAD/leadGenerator-ChromeExtension/style.css -------------------------------------------------------------------------------- /modalWindow/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namyakhan/javascriptProjects/HEAD/modalWindow/index.html -------------------------------------------------------------------------------- /modalWindow/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namyakhan/javascriptProjects/HEAD/modalWindow/script.js -------------------------------------------------------------------------------- /modalWindow/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namyakhan/javascriptProjects/HEAD/modalWindow/style.css -------------------------------------------------------------------------------- /myTravelBucketList/images/plane.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namyakhan/javascriptProjects/HEAD/myTravelBucketList/images/plane.png -------------------------------------------------------------------------------- /myTravelBucketList/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namyakhan/javascriptProjects/HEAD/myTravelBucketList/index.html -------------------------------------------------------------------------------- /myTravelBucketList/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namyakhan/javascriptProjects/HEAD/myTravelBucketList/script.js -------------------------------------------------------------------------------- /myTravelBucketList/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namyakhan/javascriptProjects/HEAD/myTravelBucketList/styles.css -------------------------------------------------------------------------------- /newYearCountdown/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namyakhan/javascriptProjects/HEAD/newYearCountdown/index.html -------------------------------------------------------------------------------- /newYearCountdown/newyear.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namyakhan/javascriptProjects/HEAD/newYearCountdown/newyear.jpg -------------------------------------------------------------------------------- /newYearCountdown/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namyakhan/javascriptProjects/HEAD/newYearCountdown/script.js -------------------------------------------------------------------------------- /newYearCountdown/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namyakhan/javascriptProjects/HEAD/newYearCountdown/style.css -------------------------------------------------------------------------------- /picture-in-picture/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namyakhan/javascriptProjects/HEAD/picture-in-picture/index.html -------------------------------------------------------------------------------- /picture-in-picture/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namyakhan/javascriptProjects/HEAD/picture-in-picture/script.js -------------------------------------------------------------------------------- /picture-in-picture/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namyakhan/javascriptProjects/HEAD/picture-in-picture/style.css -------------------------------------------------------------------------------- /pigGame/dice-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namyakhan/javascriptProjects/HEAD/pigGame/dice-1.png -------------------------------------------------------------------------------- /pigGame/dice-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namyakhan/javascriptProjects/HEAD/pigGame/dice-2.png -------------------------------------------------------------------------------- /pigGame/dice-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namyakhan/javascriptProjects/HEAD/pigGame/dice-3.png -------------------------------------------------------------------------------- /pigGame/dice-4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namyakhan/javascriptProjects/HEAD/pigGame/dice-4.png -------------------------------------------------------------------------------- /pigGame/dice-5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namyakhan/javascriptProjects/HEAD/pigGame/dice-5.png -------------------------------------------------------------------------------- /pigGame/dice-6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namyakhan/javascriptProjects/HEAD/pigGame/dice-6.png -------------------------------------------------------------------------------- /pigGame/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namyakhan/javascriptProjects/HEAD/pigGame/index.html -------------------------------------------------------------------------------- /pigGame/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namyakhan/javascriptProjects/HEAD/pigGame/script.js -------------------------------------------------------------------------------- /pigGame/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namyakhan/javascriptProjects/HEAD/pigGame/style.css -------------------------------------------------------------------------------- /progressSteps/.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namyakhan/javascriptProjects/HEAD/progressSteps/.prettierrc -------------------------------------------------------------------------------- /progressSteps/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namyakhan/javascriptProjects/HEAD/progressSteps/index.html -------------------------------------------------------------------------------- /progressSteps/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namyakhan/javascriptProjects/HEAD/progressSteps/script.js -------------------------------------------------------------------------------- /progressSteps/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namyakhan/javascriptProjects/HEAD/progressSteps/style.css -------------------------------------------------------------------------------- /randomColorGenerator/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namyakhan/javascriptProjects/HEAD/randomColorGenerator/index.css -------------------------------------------------------------------------------- /randomColorGenerator/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namyakhan/javascriptProjects/HEAD/randomColorGenerator/index.html -------------------------------------------------------------------------------- /randomColorGenerator/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namyakhan/javascriptProjects/HEAD/randomColorGenerator/index.js -------------------------------------------------------------------------------- /randomPasswordGenerator/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namyakhan/javascriptProjects/HEAD/randomPasswordGenerator/index.html -------------------------------------------------------------------------------- /randomPasswordGenerator/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namyakhan/javascriptProjects/HEAD/randomPasswordGenerator/script.js -------------------------------------------------------------------------------- /randomPasswordGenerator/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namyakhan/javascriptProjects/HEAD/randomPasswordGenerator/styles.css -------------------------------------------------------------------------------- /rockpaperscissors/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namyakhan/javascriptProjects/HEAD/rockpaperscissors/app.js -------------------------------------------------------------------------------- /rockpaperscissors/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namyakhan/javascriptProjects/HEAD/rockpaperscissors/index.html -------------------------------------------------------------------------------- /rockpaperscissors/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namyakhan/javascriptProjects/HEAD/rockpaperscissors/styles.css -------------------------------------------------------------------------------- /rotatingNavigation/.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namyakhan/javascriptProjects/HEAD/rotatingNavigation/.prettierrc -------------------------------------------------------------------------------- /rotatingNavigation/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namyakhan/javascriptProjects/HEAD/rotatingNavigation/index.html -------------------------------------------------------------------------------- /rotatingNavigation/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namyakhan/javascriptProjects/HEAD/rotatingNavigation/script.js -------------------------------------------------------------------------------- /rotatingNavigation/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namyakhan/javascriptProjects/HEAD/rotatingNavigation/style.css -------------------------------------------------------------------------------- /searchBar/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namyakhan/javascriptProjects/HEAD/searchBar/index.html -------------------------------------------------------------------------------- /searchBar/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namyakhan/javascriptProjects/HEAD/searchBar/index.js -------------------------------------------------------------------------------- /searchBar/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namyakhan/javascriptProjects/HEAD/searchBar/styles.css -------------------------------------------------------------------------------- /weatherly/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namyakhan/javascriptProjects/HEAD/weatherly/index.html -------------------------------------------------------------------------------- /weatherly/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namyakhan/javascriptProjects/HEAD/weatherly/script.js -------------------------------------------------------------------------------- /weatherly/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namyakhan/javascriptProjects/HEAD/weatherly/style.css --------------------------------------------------------------------------------