├── Catch Me If You Can ├── index.html └── script.js ├── Cube SlideShow ├── app.js ├── images │ ├── bg.jpg │ ├── slide-img-1.jpg │ ├── slide-img-2.jpg │ ├── slide-img-3.jpg │ └── slide-img-4.jpg ├── index.html └── style.css ├── Dicee Challenge ├── dicee.html ├── images │ ├── dice1.png │ ├── dice2.png │ ├── dice3.png │ ├── dice4.png │ ├── dice5.png │ └── dice6.png ├── index.js └── styles.css ├── Drum Kit ├── images │ ├── crash.png │ ├── kick.png │ ├── snare.png │ ├── tom1.png │ ├── tom2.png │ ├── tom3.png │ └── tom4.png ├── index.html ├── index.js ├── sounds │ ├── crash.mp3 │ ├── kick-bass.mp3 │ ├── snare.mp3 │ ├── tom-1.mp3 │ ├── tom-2.mp3 │ ├── tom-3.mp3 │ └── tom-4.mp3 └── styles.css ├── Face-Detection-1 ├── face-api.min.js ├── index.html ├── models │ ├── face_expression_model-shard1 │ ├── face_expression_model-weights_manifest.json │ ├── face_landmark_68_model-shard1 │ ├── face_landmark_68_model-weights_manifest.json │ ├── face_landmark_68_tiny_model-shard1 │ ├── face_landmark_68_tiny_model-weights_manifest.json │ ├── face_recognition_model-shard1 │ ├── face_recognition_model-shard2 │ ├── face_recognition_model-weights_manifest.json │ ├── tiny_face_detector_model-shard1 │ └── tiny_face_detector_model-weights_manifest.json └── script.js ├── Face-Detection-2 ├── face-api.min.js ├── index.html ├── labeled_images │ ├── Black Widow │ │ ├── 1.jpg │ │ └── 2.jpg │ ├── Captain America │ │ ├── 1.jpg │ │ └── 2.jpg │ ├── Captain Marvel │ │ ├── 1.jpg │ │ └── 2.jpg │ ├── Hawkeye │ │ ├── 1.jpg │ │ └── 2.jpg │ ├── Jim Rhodes │ │ ├── 1.jpg │ │ └── 2.jpg │ ├── Thor │ │ ├── 1.jpg │ │ └── 2.jpg │ └── Tony Stark │ │ ├── 1.jpg │ │ └── 2.jpg ├── models │ ├── face_landmark_68_model-shard1 │ ├── face_landmark_68_model-weights_manifest.json │ ├── face_recognition_model-shard1 │ ├── face_recognition_model-shard2 │ ├── face_recognition_model-weights_manifest.json │ ├── mtcnn_model-shard1 │ ├── mtcnn_model-weights_manifest.json │ ├── ssd_mobilenetv1_model-shard1 │ ├── ssd_mobilenetv1_model-shard2 │ ├── ssd_mobilenetv1_model-weights_manifest.json │ ├── tiny_face_detector_model-shard1 │ └── tiny_face_detector_model-weights_manifest.json ├── script.js └── test_images │ ├── 1.png │ ├── 2.jpg │ ├── 3.jpg │ ├── Avengers-4-Rumor-Original-Team-Fate.jpg │ └── robert-downey-jr-iron-man.jpg ├── Form-Validator ├── index.html ├── script.js └── style.css ├── Hamburger Menu ├── app.js ├── images │ ├── banner-bg.jpeg │ ├── logo.png │ └── nav-bg.jpeg ├── index.html └── style.css ├── Invisible Card ├── images │ ├── bg.jpg │ └── john-doe.jpg ├── index.html └── style.css ├── Job Search ├── README.md ├── api │ ├── .gitignore │ ├── config.js │ ├── index.js │ ├── package-lock.json │ └── package.json └── frontend │ ├── .gitignore │ ├── app.js │ ├── img │ ├── 1.svg │ ├── 2.png │ └── humaaaans.jpg │ ├── index.html │ ├── jobSearch.js │ ├── package-lock.json │ ├── package.json │ ├── scss │ └── app.scss │ ├── templates.js │ └── utils.js ├── Lyrics Search Application ├── README.md ├── image.jpg ├── index.html ├── readmeimg.jpg ├── script.js └── style.css ├── Pomodoro Clock ├── README.md ├── index.html ├── script.js └── style.css ├── Profile Cards ├── app.js ├── images │ ├── bg.jpeg │ ├── img-top1.jpeg │ ├── img-top2.jpeg │ ├── img-top3.jpeg │ ├── img1.jpeg │ ├── img2.jpeg │ └── img3.jpeg ├── index.html └── style.css ├── README.md ├── Real-Time-Chat ├── .gitignore ├── index.html ├── package-lock.json ├── package.json ├── script.js └── server.js ├── Sign Up Form ├── app.js ├── images │ ├── bg1.jpeg │ └── bg2.jpeg ├── index.html └── style.css ├── Simon Game Challenge ├── game.js ├── index.html ├── sounds │ ├── blue.mp3 │ ├── green.mp3 │ ├── red.mp3 │ ├── wrong.mp3 │ └── yellow.mp3 └── styles.css ├── Slide Show ├── app.js ├── images │ ├── london.jpeg │ ├── new-york.jpeg │ ├── rome.jpg │ └── tokyo.jpg ├── index.html └── style.css ├── Text-Adventure ├── game.js ├── index.html └── style.css ├── Tic-Tac-Toe ├── README.md ├── index.html ├── minimax.js ├── script.js └── styles.css ├── TinDog ├── css │ ├── .DS_Store │ └── styles.css ├── images │ ├── .DS_Store │ ├── HTMAA-thumbnail.png │ ├── TechCrunch.png │ ├── angela.png │ ├── bizinsider.png │ ├── dog-img.jpg │ ├── iphone6.png │ ├── lady-img.jpg │ ├── mashable.png │ └── tnw.png └── index.html ├── index.html └── styles.css /Catch Me If You Can/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K-G-PRAJWAL/HTML-CSS-Projects/HEAD/Catch Me If You Can/index.html -------------------------------------------------------------------------------- /Catch Me If You Can/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K-G-PRAJWAL/HTML-CSS-Projects/HEAD/Catch Me If You Can/script.js -------------------------------------------------------------------------------- /Cube SlideShow/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K-G-PRAJWAL/HTML-CSS-Projects/HEAD/Cube SlideShow/app.js -------------------------------------------------------------------------------- /Cube SlideShow/images/bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K-G-PRAJWAL/HTML-CSS-Projects/HEAD/Cube SlideShow/images/bg.jpg -------------------------------------------------------------------------------- /Cube SlideShow/images/slide-img-1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K-G-PRAJWAL/HTML-CSS-Projects/HEAD/Cube SlideShow/images/slide-img-1.jpg -------------------------------------------------------------------------------- /Cube SlideShow/images/slide-img-2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K-G-PRAJWAL/HTML-CSS-Projects/HEAD/Cube SlideShow/images/slide-img-2.jpg -------------------------------------------------------------------------------- /Cube SlideShow/images/slide-img-3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K-G-PRAJWAL/HTML-CSS-Projects/HEAD/Cube SlideShow/images/slide-img-3.jpg -------------------------------------------------------------------------------- /Cube SlideShow/images/slide-img-4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K-G-PRAJWAL/HTML-CSS-Projects/HEAD/Cube SlideShow/images/slide-img-4.jpg -------------------------------------------------------------------------------- /Cube SlideShow/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K-G-PRAJWAL/HTML-CSS-Projects/HEAD/Cube SlideShow/index.html -------------------------------------------------------------------------------- /Cube SlideShow/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K-G-PRAJWAL/HTML-CSS-Projects/HEAD/Cube SlideShow/style.css -------------------------------------------------------------------------------- /Dicee Challenge/dicee.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K-G-PRAJWAL/HTML-CSS-Projects/HEAD/Dicee Challenge/dicee.html -------------------------------------------------------------------------------- /Dicee Challenge/images/dice1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K-G-PRAJWAL/HTML-CSS-Projects/HEAD/Dicee Challenge/images/dice1.png -------------------------------------------------------------------------------- /Dicee Challenge/images/dice2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K-G-PRAJWAL/HTML-CSS-Projects/HEAD/Dicee Challenge/images/dice2.png -------------------------------------------------------------------------------- /Dicee Challenge/images/dice3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K-G-PRAJWAL/HTML-CSS-Projects/HEAD/Dicee Challenge/images/dice3.png -------------------------------------------------------------------------------- /Dicee Challenge/images/dice4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K-G-PRAJWAL/HTML-CSS-Projects/HEAD/Dicee Challenge/images/dice4.png -------------------------------------------------------------------------------- /Dicee Challenge/images/dice5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K-G-PRAJWAL/HTML-CSS-Projects/HEAD/Dicee Challenge/images/dice5.png -------------------------------------------------------------------------------- /Dicee Challenge/images/dice6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K-G-PRAJWAL/HTML-CSS-Projects/HEAD/Dicee Challenge/images/dice6.png -------------------------------------------------------------------------------- /Dicee Challenge/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K-G-PRAJWAL/HTML-CSS-Projects/HEAD/Dicee Challenge/index.js -------------------------------------------------------------------------------- /Dicee Challenge/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K-G-PRAJWAL/HTML-CSS-Projects/HEAD/Dicee Challenge/styles.css -------------------------------------------------------------------------------- /Drum Kit/images/crash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K-G-PRAJWAL/HTML-CSS-Projects/HEAD/Drum Kit/images/crash.png -------------------------------------------------------------------------------- /Drum Kit/images/kick.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K-G-PRAJWAL/HTML-CSS-Projects/HEAD/Drum Kit/images/kick.png -------------------------------------------------------------------------------- /Drum Kit/images/snare.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K-G-PRAJWAL/HTML-CSS-Projects/HEAD/Drum Kit/images/snare.png -------------------------------------------------------------------------------- /Drum Kit/images/tom1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K-G-PRAJWAL/HTML-CSS-Projects/HEAD/Drum Kit/images/tom1.png -------------------------------------------------------------------------------- /Drum Kit/images/tom2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K-G-PRAJWAL/HTML-CSS-Projects/HEAD/Drum Kit/images/tom2.png -------------------------------------------------------------------------------- /Drum Kit/images/tom3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K-G-PRAJWAL/HTML-CSS-Projects/HEAD/Drum Kit/images/tom3.png -------------------------------------------------------------------------------- /Drum Kit/images/tom4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K-G-PRAJWAL/HTML-CSS-Projects/HEAD/Drum Kit/images/tom4.png -------------------------------------------------------------------------------- /Drum Kit/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K-G-PRAJWAL/HTML-CSS-Projects/HEAD/Drum Kit/index.html -------------------------------------------------------------------------------- /Drum Kit/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K-G-PRAJWAL/HTML-CSS-Projects/HEAD/Drum Kit/index.js -------------------------------------------------------------------------------- /Drum Kit/sounds/crash.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K-G-PRAJWAL/HTML-CSS-Projects/HEAD/Drum Kit/sounds/crash.mp3 -------------------------------------------------------------------------------- /Drum Kit/sounds/kick-bass.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K-G-PRAJWAL/HTML-CSS-Projects/HEAD/Drum Kit/sounds/kick-bass.mp3 -------------------------------------------------------------------------------- /Drum Kit/sounds/snare.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K-G-PRAJWAL/HTML-CSS-Projects/HEAD/Drum Kit/sounds/snare.mp3 -------------------------------------------------------------------------------- /Drum Kit/sounds/tom-1.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K-G-PRAJWAL/HTML-CSS-Projects/HEAD/Drum Kit/sounds/tom-1.mp3 -------------------------------------------------------------------------------- /Drum Kit/sounds/tom-2.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K-G-PRAJWAL/HTML-CSS-Projects/HEAD/Drum Kit/sounds/tom-2.mp3 -------------------------------------------------------------------------------- /Drum Kit/sounds/tom-3.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K-G-PRAJWAL/HTML-CSS-Projects/HEAD/Drum Kit/sounds/tom-3.mp3 -------------------------------------------------------------------------------- /Drum Kit/sounds/tom-4.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K-G-PRAJWAL/HTML-CSS-Projects/HEAD/Drum Kit/sounds/tom-4.mp3 -------------------------------------------------------------------------------- /Drum Kit/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K-G-PRAJWAL/HTML-CSS-Projects/HEAD/Drum Kit/styles.css -------------------------------------------------------------------------------- /Face-Detection-1/face-api.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K-G-PRAJWAL/HTML-CSS-Projects/HEAD/Face-Detection-1/face-api.min.js -------------------------------------------------------------------------------- /Face-Detection-1/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K-G-PRAJWAL/HTML-CSS-Projects/HEAD/Face-Detection-1/index.html -------------------------------------------------------------------------------- /Face-Detection-1/models/face_expression_model-shard1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K-G-PRAJWAL/HTML-CSS-Projects/HEAD/Face-Detection-1/models/face_expression_model-shard1 -------------------------------------------------------------------------------- /Face-Detection-1/models/face_expression_model-weights_manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K-G-PRAJWAL/HTML-CSS-Projects/HEAD/Face-Detection-1/models/face_expression_model-weights_manifest.json -------------------------------------------------------------------------------- /Face-Detection-1/models/face_landmark_68_model-shard1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K-G-PRAJWAL/HTML-CSS-Projects/HEAD/Face-Detection-1/models/face_landmark_68_model-shard1 -------------------------------------------------------------------------------- /Face-Detection-1/models/face_landmark_68_model-weights_manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K-G-PRAJWAL/HTML-CSS-Projects/HEAD/Face-Detection-1/models/face_landmark_68_model-weights_manifest.json -------------------------------------------------------------------------------- /Face-Detection-1/models/face_landmark_68_tiny_model-shard1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K-G-PRAJWAL/HTML-CSS-Projects/HEAD/Face-Detection-1/models/face_landmark_68_tiny_model-shard1 -------------------------------------------------------------------------------- /Face-Detection-1/models/face_landmark_68_tiny_model-weights_manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K-G-PRAJWAL/HTML-CSS-Projects/HEAD/Face-Detection-1/models/face_landmark_68_tiny_model-weights_manifest.json -------------------------------------------------------------------------------- /Face-Detection-1/models/face_recognition_model-shard1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K-G-PRAJWAL/HTML-CSS-Projects/HEAD/Face-Detection-1/models/face_recognition_model-shard1 -------------------------------------------------------------------------------- /Face-Detection-1/models/face_recognition_model-shard2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K-G-PRAJWAL/HTML-CSS-Projects/HEAD/Face-Detection-1/models/face_recognition_model-shard2 -------------------------------------------------------------------------------- /Face-Detection-1/models/face_recognition_model-weights_manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K-G-PRAJWAL/HTML-CSS-Projects/HEAD/Face-Detection-1/models/face_recognition_model-weights_manifest.json -------------------------------------------------------------------------------- /Face-Detection-1/models/tiny_face_detector_model-shard1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K-G-PRAJWAL/HTML-CSS-Projects/HEAD/Face-Detection-1/models/tiny_face_detector_model-shard1 -------------------------------------------------------------------------------- /Face-Detection-1/models/tiny_face_detector_model-weights_manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K-G-PRAJWAL/HTML-CSS-Projects/HEAD/Face-Detection-1/models/tiny_face_detector_model-weights_manifest.json -------------------------------------------------------------------------------- /Face-Detection-1/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K-G-PRAJWAL/HTML-CSS-Projects/HEAD/Face-Detection-1/script.js -------------------------------------------------------------------------------- /Face-Detection-2/face-api.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K-G-PRAJWAL/HTML-CSS-Projects/HEAD/Face-Detection-2/face-api.min.js -------------------------------------------------------------------------------- /Face-Detection-2/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K-G-PRAJWAL/HTML-CSS-Projects/HEAD/Face-Detection-2/index.html -------------------------------------------------------------------------------- /Face-Detection-2/labeled_images/Black Widow/1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K-G-PRAJWAL/HTML-CSS-Projects/HEAD/Face-Detection-2/labeled_images/Black Widow/1.jpg -------------------------------------------------------------------------------- /Face-Detection-2/labeled_images/Black Widow/2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K-G-PRAJWAL/HTML-CSS-Projects/HEAD/Face-Detection-2/labeled_images/Black Widow/2.jpg -------------------------------------------------------------------------------- /Face-Detection-2/labeled_images/Captain America/1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K-G-PRAJWAL/HTML-CSS-Projects/HEAD/Face-Detection-2/labeled_images/Captain America/1.jpg -------------------------------------------------------------------------------- /Face-Detection-2/labeled_images/Captain America/2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K-G-PRAJWAL/HTML-CSS-Projects/HEAD/Face-Detection-2/labeled_images/Captain America/2.jpg -------------------------------------------------------------------------------- /Face-Detection-2/labeled_images/Captain Marvel/1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K-G-PRAJWAL/HTML-CSS-Projects/HEAD/Face-Detection-2/labeled_images/Captain Marvel/1.jpg -------------------------------------------------------------------------------- /Face-Detection-2/labeled_images/Captain Marvel/2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K-G-PRAJWAL/HTML-CSS-Projects/HEAD/Face-Detection-2/labeled_images/Captain Marvel/2.jpg -------------------------------------------------------------------------------- /Face-Detection-2/labeled_images/Hawkeye/1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K-G-PRAJWAL/HTML-CSS-Projects/HEAD/Face-Detection-2/labeled_images/Hawkeye/1.jpg -------------------------------------------------------------------------------- /Face-Detection-2/labeled_images/Hawkeye/2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K-G-PRAJWAL/HTML-CSS-Projects/HEAD/Face-Detection-2/labeled_images/Hawkeye/2.jpg -------------------------------------------------------------------------------- /Face-Detection-2/labeled_images/Jim Rhodes/1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K-G-PRAJWAL/HTML-CSS-Projects/HEAD/Face-Detection-2/labeled_images/Jim Rhodes/1.jpg -------------------------------------------------------------------------------- /Face-Detection-2/labeled_images/Jim Rhodes/2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K-G-PRAJWAL/HTML-CSS-Projects/HEAD/Face-Detection-2/labeled_images/Jim Rhodes/2.jpg -------------------------------------------------------------------------------- /Face-Detection-2/labeled_images/Thor/1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K-G-PRAJWAL/HTML-CSS-Projects/HEAD/Face-Detection-2/labeled_images/Thor/1.jpg -------------------------------------------------------------------------------- /Face-Detection-2/labeled_images/Thor/2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K-G-PRAJWAL/HTML-CSS-Projects/HEAD/Face-Detection-2/labeled_images/Thor/2.jpg -------------------------------------------------------------------------------- /Face-Detection-2/labeled_images/Tony Stark/1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K-G-PRAJWAL/HTML-CSS-Projects/HEAD/Face-Detection-2/labeled_images/Tony Stark/1.jpg -------------------------------------------------------------------------------- /Face-Detection-2/labeled_images/Tony Stark/2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K-G-PRAJWAL/HTML-CSS-Projects/HEAD/Face-Detection-2/labeled_images/Tony Stark/2.jpg -------------------------------------------------------------------------------- /Face-Detection-2/models/face_landmark_68_model-shard1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K-G-PRAJWAL/HTML-CSS-Projects/HEAD/Face-Detection-2/models/face_landmark_68_model-shard1 -------------------------------------------------------------------------------- /Face-Detection-2/models/face_landmark_68_model-weights_manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K-G-PRAJWAL/HTML-CSS-Projects/HEAD/Face-Detection-2/models/face_landmark_68_model-weights_manifest.json -------------------------------------------------------------------------------- /Face-Detection-2/models/face_recognition_model-shard1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K-G-PRAJWAL/HTML-CSS-Projects/HEAD/Face-Detection-2/models/face_recognition_model-shard1 -------------------------------------------------------------------------------- /Face-Detection-2/models/face_recognition_model-shard2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K-G-PRAJWAL/HTML-CSS-Projects/HEAD/Face-Detection-2/models/face_recognition_model-shard2 -------------------------------------------------------------------------------- /Face-Detection-2/models/face_recognition_model-weights_manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K-G-PRAJWAL/HTML-CSS-Projects/HEAD/Face-Detection-2/models/face_recognition_model-weights_manifest.json -------------------------------------------------------------------------------- /Face-Detection-2/models/mtcnn_model-shard1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K-G-PRAJWAL/HTML-CSS-Projects/HEAD/Face-Detection-2/models/mtcnn_model-shard1 -------------------------------------------------------------------------------- /Face-Detection-2/models/mtcnn_model-weights_manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K-G-PRAJWAL/HTML-CSS-Projects/HEAD/Face-Detection-2/models/mtcnn_model-weights_manifest.json -------------------------------------------------------------------------------- /Face-Detection-2/models/ssd_mobilenetv1_model-shard1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K-G-PRAJWAL/HTML-CSS-Projects/HEAD/Face-Detection-2/models/ssd_mobilenetv1_model-shard1 -------------------------------------------------------------------------------- /Face-Detection-2/models/ssd_mobilenetv1_model-shard2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K-G-PRAJWAL/HTML-CSS-Projects/HEAD/Face-Detection-2/models/ssd_mobilenetv1_model-shard2 -------------------------------------------------------------------------------- /Face-Detection-2/models/ssd_mobilenetv1_model-weights_manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K-G-PRAJWAL/HTML-CSS-Projects/HEAD/Face-Detection-2/models/ssd_mobilenetv1_model-weights_manifest.json -------------------------------------------------------------------------------- /Face-Detection-2/models/tiny_face_detector_model-shard1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K-G-PRAJWAL/HTML-CSS-Projects/HEAD/Face-Detection-2/models/tiny_face_detector_model-shard1 -------------------------------------------------------------------------------- /Face-Detection-2/models/tiny_face_detector_model-weights_manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K-G-PRAJWAL/HTML-CSS-Projects/HEAD/Face-Detection-2/models/tiny_face_detector_model-weights_manifest.json -------------------------------------------------------------------------------- /Face-Detection-2/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K-G-PRAJWAL/HTML-CSS-Projects/HEAD/Face-Detection-2/script.js -------------------------------------------------------------------------------- /Face-Detection-2/test_images/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K-G-PRAJWAL/HTML-CSS-Projects/HEAD/Face-Detection-2/test_images/1.png -------------------------------------------------------------------------------- /Face-Detection-2/test_images/2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K-G-PRAJWAL/HTML-CSS-Projects/HEAD/Face-Detection-2/test_images/2.jpg -------------------------------------------------------------------------------- /Face-Detection-2/test_images/3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K-G-PRAJWAL/HTML-CSS-Projects/HEAD/Face-Detection-2/test_images/3.jpg -------------------------------------------------------------------------------- /Face-Detection-2/test_images/Avengers-4-Rumor-Original-Team-Fate.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K-G-PRAJWAL/HTML-CSS-Projects/HEAD/Face-Detection-2/test_images/Avengers-4-Rumor-Original-Team-Fate.jpg -------------------------------------------------------------------------------- /Face-Detection-2/test_images/robert-downey-jr-iron-man.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K-G-PRAJWAL/HTML-CSS-Projects/HEAD/Face-Detection-2/test_images/robert-downey-jr-iron-man.jpg -------------------------------------------------------------------------------- /Form-Validator/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K-G-PRAJWAL/HTML-CSS-Projects/HEAD/Form-Validator/index.html -------------------------------------------------------------------------------- /Form-Validator/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K-G-PRAJWAL/HTML-CSS-Projects/HEAD/Form-Validator/script.js -------------------------------------------------------------------------------- /Form-Validator/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K-G-PRAJWAL/HTML-CSS-Projects/HEAD/Form-Validator/style.css -------------------------------------------------------------------------------- /Hamburger Menu/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K-G-PRAJWAL/HTML-CSS-Projects/HEAD/Hamburger Menu/app.js -------------------------------------------------------------------------------- /Hamburger Menu/images/banner-bg.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K-G-PRAJWAL/HTML-CSS-Projects/HEAD/Hamburger Menu/images/banner-bg.jpeg -------------------------------------------------------------------------------- /Hamburger Menu/images/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K-G-PRAJWAL/HTML-CSS-Projects/HEAD/Hamburger Menu/images/logo.png -------------------------------------------------------------------------------- /Hamburger Menu/images/nav-bg.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K-G-PRAJWAL/HTML-CSS-Projects/HEAD/Hamburger Menu/images/nav-bg.jpeg -------------------------------------------------------------------------------- /Hamburger Menu/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K-G-PRAJWAL/HTML-CSS-Projects/HEAD/Hamburger Menu/index.html -------------------------------------------------------------------------------- /Hamburger Menu/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K-G-PRAJWAL/HTML-CSS-Projects/HEAD/Hamburger Menu/style.css -------------------------------------------------------------------------------- /Invisible Card/images/bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K-G-PRAJWAL/HTML-CSS-Projects/HEAD/Invisible Card/images/bg.jpg -------------------------------------------------------------------------------- /Invisible Card/images/john-doe.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K-G-PRAJWAL/HTML-CSS-Projects/HEAD/Invisible Card/images/john-doe.jpg -------------------------------------------------------------------------------- /Invisible Card/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K-G-PRAJWAL/HTML-CSS-Projects/HEAD/Invisible Card/index.html -------------------------------------------------------------------------------- /Invisible Card/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K-G-PRAJWAL/HTML-CSS-Projects/HEAD/Invisible Card/style.css -------------------------------------------------------------------------------- /Job Search/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K-G-PRAJWAL/HTML-CSS-Projects/HEAD/Job Search/README.md -------------------------------------------------------------------------------- /Job Search/api/.gitignore: -------------------------------------------------------------------------------- 1 | /node_modules 2 | keys.js -------------------------------------------------------------------------------- /Job Search/api/config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K-G-PRAJWAL/HTML-CSS-Projects/HEAD/Job Search/api/config.js -------------------------------------------------------------------------------- /Job Search/api/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K-G-PRAJWAL/HTML-CSS-Projects/HEAD/Job Search/api/index.js -------------------------------------------------------------------------------- /Job Search/api/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K-G-PRAJWAL/HTML-CSS-Projects/HEAD/Job Search/api/package-lock.json -------------------------------------------------------------------------------- /Job Search/api/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K-G-PRAJWAL/HTML-CSS-Projects/HEAD/Job Search/api/package.json -------------------------------------------------------------------------------- /Job Search/frontend/.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | .cache 3 | dist -------------------------------------------------------------------------------- /Job Search/frontend/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K-G-PRAJWAL/HTML-CSS-Projects/HEAD/Job Search/frontend/app.js -------------------------------------------------------------------------------- /Job Search/frontend/img/1.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K-G-PRAJWAL/HTML-CSS-Projects/HEAD/Job Search/frontend/img/1.svg -------------------------------------------------------------------------------- /Job Search/frontend/img/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K-G-PRAJWAL/HTML-CSS-Projects/HEAD/Job Search/frontend/img/2.png -------------------------------------------------------------------------------- /Job Search/frontend/img/humaaaans.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K-G-PRAJWAL/HTML-CSS-Projects/HEAD/Job Search/frontend/img/humaaaans.jpg -------------------------------------------------------------------------------- /Job Search/frontend/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K-G-PRAJWAL/HTML-CSS-Projects/HEAD/Job Search/frontend/index.html -------------------------------------------------------------------------------- /Job Search/frontend/jobSearch.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K-G-PRAJWAL/HTML-CSS-Projects/HEAD/Job Search/frontend/jobSearch.js -------------------------------------------------------------------------------- /Job Search/frontend/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K-G-PRAJWAL/HTML-CSS-Projects/HEAD/Job Search/frontend/package-lock.json -------------------------------------------------------------------------------- /Job Search/frontend/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K-G-PRAJWAL/HTML-CSS-Projects/HEAD/Job Search/frontend/package.json -------------------------------------------------------------------------------- /Job Search/frontend/scss/app.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K-G-PRAJWAL/HTML-CSS-Projects/HEAD/Job Search/frontend/scss/app.scss -------------------------------------------------------------------------------- /Job Search/frontend/templates.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K-G-PRAJWAL/HTML-CSS-Projects/HEAD/Job Search/frontend/templates.js -------------------------------------------------------------------------------- /Job Search/frontend/utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K-G-PRAJWAL/HTML-CSS-Projects/HEAD/Job Search/frontend/utils.js -------------------------------------------------------------------------------- /Lyrics Search Application/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K-G-PRAJWAL/HTML-CSS-Projects/HEAD/Lyrics Search Application/README.md -------------------------------------------------------------------------------- /Lyrics Search Application/image.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K-G-PRAJWAL/HTML-CSS-Projects/HEAD/Lyrics Search Application/image.jpg -------------------------------------------------------------------------------- /Lyrics Search Application/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K-G-PRAJWAL/HTML-CSS-Projects/HEAD/Lyrics Search Application/index.html -------------------------------------------------------------------------------- /Lyrics Search Application/readmeimg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K-G-PRAJWAL/HTML-CSS-Projects/HEAD/Lyrics Search Application/readmeimg.jpg -------------------------------------------------------------------------------- /Lyrics Search Application/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K-G-PRAJWAL/HTML-CSS-Projects/HEAD/Lyrics Search Application/script.js -------------------------------------------------------------------------------- /Lyrics Search Application/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K-G-PRAJWAL/HTML-CSS-Projects/HEAD/Lyrics Search Application/style.css -------------------------------------------------------------------------------- /Pomodoro Clock/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K-G-PRAJWAL/HTML-CSS-Projects/HEAD/Pomodoro Clock/README.md -------------------------------------------------------------------------------- /Pomodoro Clock/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K-G-PRAJWAL/HTML-CSS-Projects/HEAD/Pomodoro Clock/index.html -------------------------------------------------------------------------------- /Pomodoro Clock/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K-G-PRAJWAL/HTML-CSS-Projects/HEAD/Pomodoro Clock/script.js -------------------------------------------------------------------------------- /Pomodoro Clock/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K-G-PRAJWAL/HTML-CSS-Projects/HEAD/Pomodoro Clock/style.css -------------------------------------------------------------------------------- /Profile Cards/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K-G-PRAJWAL/HTML-CSS-Projects/HEAD/Profile Cards/app.js -------------------------------------------------------------------------------- /Profile Cards/images/bg.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K-G-PRAJWAL/HTML-CSS-Projects/HEAD/Profile Cards/images/bg.jpeg -------------------------------------------------------------------------------- /Profile Cards/images/img-top1.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K-G-PRAJWAL/HTML-CSS-Projects/HEAD/Profile Cards/images/img-top1.jpeg -------------------------------------------------------------------------------- /Profile Cards/images/img-top2.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K-G-PRAJWAL/HTML-CSS-Projects/HEAD/Profile Cards/images/img-top2.jpeg -------------------------------------------------------------------------------- /Profile Cards/images/img-top3.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K-G-PRAJWAL/HTML-CSS-Projects/HEAD/Profile Cards/images/img-top3.jpeg -------------------------------------------------------------------------------- /Profile Cards/images/img1.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K-G-PRAJWAL/HTML-CSS-Projects/HEAD/Profile Cards/images/img1.jpeg -------------------------------------------------------------------------------- /Profile Cards/images/img2.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K-G-PRAJWAL/HTML-CSS-Projects/HEAD/Profile Cards/images/img2.jpeg -------------------------------------------------------------------------------- /Profile Cards/images/img3.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K-G-PRAJWAL/HTML-CSS-Projects/HEAD/Profile Cards/images/img3.jpeg -------------------------------------------------------------------------------- /Profile Cards/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K-G-PRAJWAL/HTML-CSS-Projects/HEAD/Profile Cards/index.html -------------------------------------------------------------------------------- /Profile Cards/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K-G-PRAJWAL/HTML-CSS-Projects/HEAD/Profile Cards/style.css -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K-G-PRAJWAL/HTML-CSS-Projects/HEAD/README.md -------------------------------------------------------------------------------- /Real-Time-Chat/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K-G-PRAJWAL/HTML-CSS-Projects/HEAD/Real-Time-Chat/.gitignore -------------------------------------------------------------------------------- /Real-Time-Chat/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K-G-PRAJWAL/HTML-CSS-Projects/HEAD/Real-Time-Chat/index.html -------------------------------------------------------------------------------- /Real-Time-Chat/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K-G-PRAJWAL/HTML-CSS-Projects/HEAD/Real-Time-Chat/package-lock.json -------------------------------------------------------------------------------- /Real-Time-Chat/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K-G-PRAJWAL/HTML-CSS-Projects/HEAD/Real-Time-Chat/package.json -------------------------------------------------------------------------------- /Real-Time-Chat/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K-G-PRAJWAL/HTML-CSS-Projects/HEAD/Real-Time-Chat/script.js -------------------------------------------------------------------------------- /Real-Time-Chat/server.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K-G-PRAJWAL/HTML-CSS-Projects/HEAD/Real-Time-Chat/server.js -------------------------------------------------------------------------------- /Sign Up Form/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K-G-PRAJWAL/HTML-CSS-Projects/HEAD/Sign Up Form/app.js -------------------------------------------------------------------------------- /Sign Up Form/images/bg1.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K-G-PRAJWAL/HTML-CSS-Projects/HEAD/Sign Up Form/images/bg1.jpeg -------------------------------------------------------------------------------- /Sign Up Form/images/bg2.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K-G-PRAJWAL/HTML-CSS-Projects/HEAD/Sign Up Form/images/bg2.jpeg -------------------------------------------------------------------------------- /Sign Up Form/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K-G-PRAJWAL/HTML-CSS-Projects/HEAD/Sign Up Form/index.html -------------------------------------------------------------------------------- /Sign Up Form/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K-G-PRAJWAL/HTML-CSS-Projects/HEAD/Sign Up Form/style.css -------------------------------------------------------------------------------- /Simon Game Challenge/game.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K-G-PRAJWAL/HTML-CSS-Projects/HEAD/Simon Game Challenge/game.js -------------------------------------------------------------------------------- /Simon Game Challenge/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K-G-PRAJWAL/HTML-CSS-Projects/HEAD/Simon Game Challenge/index.html -------------------------------------------------------------------------------- /Simon Game Challenge/sounds/blue.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K-G-PRAJWAL/HTML-CSS-Projects/HEAD/Simon Game Challenge/sounds/blue.mp3 -------------------------------------------------------------------------------- /Simon Game Challenge/sounds/green.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K-G-PRAJWAL/HTML-CSS-Projects/HEAD/Simon Game Challenge/sounds/green.mp3 -------------------------------------------------------------------------------- /Simon Game Challenge/sounds/red.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K-G-PRAJWAL/HTML-CSS-Projects/HEAD/Simon Game Challenge/sounds/red.mp3 -------------------------------------------------------------------------------- /Simon Game Challenge/sounds/wrong.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K-G-PRAJWAL/HTML-CSS-Projects/HEAD/Simon Game Challenge/sounds/wrong.mp3 -------------------------------------------------------------------------------- /Simon Game Challenge/sounds/yellow.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K-G-PRAJWAL/HTML-CSS-Projects/HEAD/Simon Game Challenge/sounds/yellow.mp3 -------------------------------------------------------------------------------- /Simon Game Challenge/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K-G-PRAJWAL/HTML-CSS-Projects/HEAD/Simon Game Challenge/styles.css -------------------------------------------------------------------------------- /Slide Show/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K-G-PRAJWAL/HTML-CSS-Projects/HEAD/Slide Show/app.js -------------------------------------------------------------------------------- /Slide Show/images/london.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K-G-PRAJWAL/HTML-CSS-Projects/HEAD/Slide Show/images/london.jpeg -------------------------------------------------------------------------------- /Slide Show/images/new-york.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K-G-PRAJWAL/HTML-CSS-Projects/HEAD/Slide Show/images/new-york.jpeg -------------------------------------------------------------------------------- /Slide Show/images/rome.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K-G-PRAJWAL/HTML-CSS-Projects/HEAD/Slide Show/images/rome.jpg -------------------------------------------------------------------------------- /Slide Show/images/tokyo.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K-G-PRAJWAL/HTML-CSS-Projects/HEAD/Slide Show/images/tokyo.jpg -------------------------------------------------------------------------------- /Slide Show/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K-G-PRAJWAL/HTML-CSS-Projects/HEAD/Slide Show/index.html -------------------------------------------------------------------------------- /Slide Show/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K-G-PRAJWAL/HTML-CSS-Projects/HEAD/Slide Show/style.css -------------------------------------------------------------------------------- /Text-Adventure/game.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K-G-PRAJWAL/HTML-CSS-Projects/HEAD/Text-Adventure/game.js -------------------------------------------------------------------------------- /Text-Adventure/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K-G-PRAJWAL/HTML-CSS-Projects/HEAD/Text-Adventure/index.html -------------------------------------------------------------------------------- /Text-Adventure/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K-G-PRAJWAL/HTML-CSS-Projects/HEAD/Text-Adventure/style.css -------------------------------------------------------------------------------- /Tic-Tac-Toe/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K-G-PRAJWAL/HTML-CSS-Projects/HEAD/Tic-Tac-Toe/README.md -------------------------------------------------------------------------------- /Tic-Tac-Toe/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K-G-PRAJWAL/HTML-CSS-Projects/HEAD/Tic-Tac-Toe/index.html -------------------------------------------------------------------------------- /Tic-Tac-Toe/minimax.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K-G-PRAJWAL/HTML-CSS-Projects/HEAD/Tic-Tac-Toe/minimax.js -------------------------------------------------------------------------------- /Tic-Tac-Toe/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K-G-PRAJWAL/HTML-CSS-Projects/HEAD/Tic-Tac-Toe/script.js -------------------------------------------------------------------------------- /Tic-Tac-Toe/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K-G-PRAJWAL/HTML-CSS-Projects/HEAD/Tic-Tac-Toe/styles.css -------------------------------------------------------------------------------- /TinDog/css/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K-G-PRAJWAL/HTML-CSS-Projects/HEAD/TinDog/css/.DS_Store -------------------------------------------------------------------------------- /TinDog/css/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K-G-PRAJWAL/HTML-CSS-Projects/HEAD/TinDog/css/styles.css -------------------------------------------------------------------------------- /TinDog/images/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K-G-PRAJWAL/HTML-CSS-Projects/HEAD/TinDog/images/.DS_Store -------------------------------------------------------------------------------- /TinDog/images/HTMAA-thumbnail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K-G-PRAJWAL/HTML-CSS-Projects/HEAD/TinDog/images/HTMAA-thumbnail.png -------------------------------------------------------------------------------- /TinDog/images/TechCrunch.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K-G-PRAJWAL/HTML-CSS-Projects/HEAD/TinDog/images/TechCrunch.png -------------------------------------------------------------------------------- /TinDog/images/angela.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K-G-PRAJWAL/HTML-CSS-Projects/HEAD/TinDog/images/angela.png -------------------------------------------------------------------------------- /TinDog/images/bizinsider.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K-G-PRAJWAL/HTML-CSS-Projects/HEAD/TinDog/images/bizinsider.png -------------------------------------------------------------------------------- /TinDog/images/dog-img.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K-G-PRAJWAL/HTML-CSS-Projects/HEAD/TinDog/images/dog-img.jpg -------------------------------------------------------------------------------- /TinDog/images/iphone6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K-G-PRAJWAL/HTML-CSS-Projects/HEAD/TinDog/images/iphone6.png -------------------------------------------------------------------------------- /TinDog/images/lady-img.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K-G-PRAJWAL/HTML-CSS-Projects/HEAD/TinDog/images/lady-img.jpg -------------------------------------------------------------------------------- /TinDog/images/mashable.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K-G-PRAJWAL/HTML-CSS-Projects/HEAD/TinDog/images/mashable.png -------------------------------------------------------------------------------- /TinDog/images/tnw.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K-G-PRAJWAL/HTML-CSS-Projects/HEAD/TinDog/images/tnw.png -------------------------------------------------------------------------------- /TinDog/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K-G-PRAJWAL/HTML-CSS-Projects/HEAD/TinDog/index.html -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K-G-PRAJWAL/HTML-CSS-Projects/HEAD/index.html -------------------------------------------------------------------------------- /styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K-G-PRAJWAL/HTML-CSS-Projects/HEAD/styles.css --------------------------------------------------------------------------------