├── .vscode └── settings.json ├── 3d-text-shadow ├── dist │ ├── index.html │ └── style.css └── src │ ├── index.html │ └── style.css ├── Assets ├── Hfest-Logo-2-Color-Manga.png └── Hfest-Logo-2-Color-Void.png ├── Bulb Switch Game ├── Images │ ├── Off.jpg │ └── On.jpg ├── README.md ├── index.html ├── script.js └── style.css ├── CORUNNA ├── ch.gif ├── corona.png ├── corona1.png ├── game1.jpg ├── gameover.mp3 ├── index.html ├── script.js ├── smash.mp3 └── style.css ├── Calculator └── calculator.html ├── Countdown └── countdown.html ├── Digital-Clock ├── index.css ├── index.html └── index.js ├── Image Styling ├── favicon.jpg ├── index.html └── style.css ├── JS Form Validation ├── form.css ├── form.js └── form_validation.html ├── README.md ├── Simple Feedback-form ├── index.html └── style.css ├── Weight_Converter └── index.html ├── a-configurable-bouncing-google-logo ├── dist │ ├── index.html │ └── style.css └── src │ ├── index.pug │ └── style.scss ├── a-dynamic-website-university-finder └── University-Finder │ ├── README.md │ ├── db.sqlite3 │ ├── manage.py │ ├── static │ ├── css │ │ ├── login_style.css │ │ ├── main.css │ │ ├── regis_style.css │ │ └── styles.css │ ├── images │ │ ├── ad1.png │ │ ├── ad2.png │ │ ├── ad3.png │ │ ├── contact.png │ │ ├── design.png │ │ ├── logo.jpg │ │ ├── mgmt.png │ │ ├── pic.jpg │ │ ├── team.png │ │ └── tech.png │ ├── js │ │ └── login.js │ └── videos │ │ ├── ad.mp4 │ │ └── vidad2.mp4 │ ├── students │ ├── __init__.py │ ├── __pycache__ │ │ ├── __init__.cpython-38.pyc │ │ ├── admin.cpython-38.pyc │ │ ├── apps.cpython-38.pyc │ │ ├── decorators.cpython-38.pyc │ │ ├── filter.cpython-38.pyc │ │ ├── forms.cpython-38.pyc │ │ ├── models.cpython-38.pyc │ │ ├── urls.cpython-38.pyc │ │ └── views.cpython-38.pyc │ ├── admin.py │ ├── apps.py │ ├── decorators.py │ ├── filter.py │ ├── forms.py │ ├── migrations │ │ ├── 0001_initial.py │ │ ├── 0002_courses_suggestion_topics_univdegree_university.py │ │ ├── 0003_auto_20201020_1843.py │ │ ├── 0004_auto_20201021_0705.py │ │ ├── 0005_auto_20201021_0712.py │ │ ├── 0006_auto_20201021_1159.py │ │ ├── 0007_auto_20201021_1326.py │ │ ├── 0008_auto_20201021_1404.py │ │ ├── 0009_auto_20201107_1807.py │ │ ├── 0010_auto_20201107_1821.py │ │ ├── 0011_auto_20210428_1538.py │ │ ├── 0012_university_info.py │ │ ├── 0013_auto_20210429_1036.py │ │ ├── 0014_auto_20210429_1038.py │ │ ├── 0015_donationinfo.py │ │ ├── __init__.py │ │ └── __pycache__ │ │ │ ├── 0001_initial.cpython-38.pyc │ │ │ ├── 0002_courses_suggestion_topics_univdegree_university.cpython-38.pyc │ │ │ ├── 0003_auto_20201020_1843.cpython-38.pyc │ │ │ ├── 0004_auto_20201021_0705.cpython-38.pyc │ │ │ ├── 0005_auto_20201021_0712.cpython-38.pyc │ │ │ ├── 0006_auto_20201021_1159.cpython-38.pyc │ │ │ ├── 0007_auto_20201021_1326.cpython-38.pyc │ │ │ ├── 0008_auto_20201021_1404.cpython-38.pyc │ │ │ ├── 0009_auto_20201107_1807.cpython-38.pyc │ │ │ ├── 0010_auto_20201107_1821.cpython-38.pyc │ │ │ ├── 0011_auto_20210428_1538.cpython-38.pyc │ │ │ ├── 0012_university_info.cpython-38.pyc │ │ │ ├── 0013_auto_20210429_1036.cpython-38.pyc │ │ │ ├── 0014_auto_20210429_1038.cpython-38.pyc │ │ │ ├── 0015_donationinfo.cpython-38.pyc │ │ │ └── __init__.cpython-38.pyc │ ├── models.py │ ├── templates │ │ └── students │ │ │ ├── del_acc.html │ │ │ ├── donate-pay.html │ │ │ ├── donate.html │ │ │ ├── finder.html │ │ │ ├── home.html │ │ │ ├── index.html │ │ │ ├── login.html │ │ │ ├── logout_page.html │ │ │ ├── main.html │ │ │ ├── navbar.html │ │ │ ├── register.html │ │ │ ├── status.html │ │ │ ├── univ_info.html │ │ │ └── user-detail.html │ ├── tests.py │ ├── urls.py │ └── views.py │ └── u_finder │ ├── __init__.py │ ├── __pycache__ │ ├── __init__.cpython-38.pyc │ ├── settings.cpython-38.pyc │ ├── urls.cpython-38.pyc │ └── wsgi.cpython-38.pyc │ ├── asgi.py │ ├── settings.py │ ├── urls.py │ └── wsgi.py ├── animated-login-form ├── dist │ ├── index.html │ └── style.css └── src │ ├── index.html │ └── style.css ├── animated-tab-bar ├── dist │ ├── index.html │ ├── script.js │ └── style.css └── src │ ├── index.html │ ├── script.js │ └── style.css ├── basic.html ├── beutiful-js-stopwatch-app ├── README.md ├── index.html ├── src │ └── timer.js └── styles │ └── style.css ├── bookcase-with-DOM ├── .vscode │ └── settings.json ├── assets │ ├── book.png │ ├── bookbg.jpg │ ├── check-outline.svg │ ├── check-solid.svg │ ├── searchimg.png │ ├── trash-fill.svg │ ├── trash-outline.svg │ └── undo-ouline.svg ├── css │ └── style.css ├── index.html └── js │ ├── data.js │ ├── dom.js │ └── script.js ├── card-hover-interactions ├── dist │ ├── index.html │ └── style.css └── src │ ├── index.pug │ └── style.scss ├── cool-spotlight-shadows ├── dist │ ├── index.html │ └── style.css └── src │ ├── index.pug │ └── style.css ├── countdown-timer ├── README.md ├── assets │ └── tones │ │ └── Alarm05.wav ├── index.html ├── scripts │ └── main.js └── styles │ └── style.css ├── css-curveline-animation ├── index.html └── style.css ├── css-goey-footer ├── dist │ ├── index.html │ └── style.css └── src │ ├── index.pug │ └── style.scss ├── css-workdesk ├── dist │ ├── index.html │ ├── script.js │ └── style.css └── src │ ├── index.html │ ├── script.js │ └── style.scss ├── currency-converter ├── index.html ├── script.js └── style.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 ├── empty ├── prabhugithub1.html ├── prabhugithub2.html ├── prabhugithub3.html ├── prabhugithub4.html └── prabhugithub5.html ├── flip-for-gsap ├── dist │ ├── index.html │ ├── script.js │ └── style.css └── src │ ├── index.html │ ├── script.js │ └── style.css ├── flying-letters ├── dist │ ├── index.html │ ├── script.js │ └── style.css └── src │ ├── index.html │ ├── script.js │ └── style.css ├── guess-the-number-by-voicee ├── app │ ├── initLang.js │ ├── sortNumber.js │ ├── validation.js │ └── voiceRecognition.js ├── index.html └── styles.css ├── hello-world └── src │ └── index.html ├── image-slider-with-multiple-controls-and-mobile-swipe-control-javascript ├── dist │ ├── index.html │ ├── script.js │ └── style.css └── src │ ├── index.html │ ├── script.js │ └── style.scss ├── loginpage ├── .gitignore ├── README.md ├── package-lock.json ├── package.json ├── public │ ├── favicon.ico │ ├── index.html │ ├── logo192.png │ ├── logo512.png │ ├── manifest.json │ └── robots.txt └── src │ ├── App.css │ ├── App.js │ ├── App.test.js │ ├── index.css │ ├── index.js │ ├── logo.svg │ ├── reportWebVitals.js │ └── setupTests.js ├── navigation-bar ├── aboutus.html ├── contactus.html ├── index.html └── style.css ├── neon ├── dist │ ├── index.html │ ├── script.js │ └── style.css └── src │ ├── index.html │ ├── script.js │ └── style.css ├── nice-web-landing-page └── index.html ├── password-error-animation ├── dist │ ├── index.html │ ├── script.js │ └── style.css └── src │ ├── index.html │ ├── script.js │ └── style.css ├── random-image-generator ├── index.html ├── index.js └── style.css ├── rotating-text ├── dist │ ├── index.html │ ├── script.js │ └── style.css └── src │ ├── index.html │ ├── script.typescript │ └── style.scss ├── runner ├── README.md ├── index.html └── main.js ├── sidebar ├── index.html └── style.css ├── simple-css-waves-mobile-full-width ├── dist │ ├── index.html │ └── style.css └── src │ ├── index.html │ └── style.css ├── simple-todo └── index.html ├── text-morph ├── dist │ ├── index.html │ ├── script.js │ └── style.css └── src │ ├── index.html │ ├── script.babel │ └── style.css ├── text-slider-with-typing-animation-in-pure-css ├── dist │ ├── index.html │ └── style.css └── src │ ├── index.html │ └── style.scss ├── text-utilities ├── .gitignore ├── README.md ├── package-lock.json ├── package.json ├── public │ ├── index.html │ ├── manifest.json │ └── robots.txt └── src │ ├── App.css │ ├── App.js │ ├── App.test.js │ ├── components │ ├── Navbar.js │ └── TextForm.js │ ├── index.css │ ├── index.js │ ├── logo.svg │ ├── reportWebVitals.js │ └── setupTests.js ├── typography-animation ├── dist │ ├── index.html │ ├── script.js │ └── style.css └── src │ ├── index.html │ ├── script.js │ └── style.css ├── weather-app-design ├── README.md ├── index.html └── style.css └── windows-98-design ├── dist ├── index.html └── style.css └── src ├── index.html └── style.css /.vscode/settings.json: -------------------------------------------------------------------------------- 1 | { 2 | "liveServer.settings.port": 5501 3 | } -------------------------------------------------------------------------------- /3d-text-shadow/dist/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prabhurohiths/Web-Projects/HEAD/3d-text-shadow/dist/index.html -------------------------------------------------------------------------------- /3d-text-shadow/dist/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prabhurohiths/Web-Projects/HEAD/3d-text-shadow/dist/style.css -------------------------------------------------------------------------------- /3d-text-shadow/src/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prabhurohiths/Web-Projects/HEAD/3d-text-shadow/src/index.html -------------------------------------------------------------------------------- /3d-text-shadow/src/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prabhurohiths/Web-Projects/HEAD/3d-text-shadow/src/style.css -------------------------------------------------------------------------------- /Assets/Hfest-Logo-2-Color-Manga.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prabhurohiths/Web-Projects/HEAD/Assets/Hfest-Logo-2-Color-Manga.png -------------------------------------------------------------------------------- /Assets/Hfest-Logo-2-Color-Void.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prabhurohiths/Web-Projects/HEAD/Assets/Hfest-Logo-2-Color-Void.png -------------------------------------------------------------------------------- /Bulb Switch Game/Images/Off.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prabhurohiths/Web-Projects/HEAD/Bulb Switch Game/Images/Off.jpg -------------------------------------------------------------------------------- /Bulb Switch Game/Images/On.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prabhurohiths/Web-Projects/HEAD/Bulb Switch Game/Images/On.jpg -------------------------------------------------------------------------------- /Bulb Switch Game/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prabhurohiths/Web-Projects/HEAD/Bulb Switch Game/README.md -------------------------------------------------------------------------------- /Bulb Switch Game/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prabhurohiths/Web-Projects/HEAD/Bulb Switch Game/index.html -------------------------------------------------------------------------------- /Bulb Switch Game/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prabhurohiths/Web-Projects/HEAD/Bulb Switch Game/script.js -------------------------------------------------------------------------------- /Bulb Switch Game/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prabhurohiths/Web-Projects/HEAD/Bulb Switch Game/style.css -------------------------------------------------------------------------------- /CORUNNA/ch.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prabhurohiths/Web-Projects/HEAD/CORUNNA/ch.gif -------------------------------------------------------------------------------- /CORUNNA/corona.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prabhurohiths/Web-Projects/HEAD/CORUNNA/corona.png -------------------------------------------------------------------------------- /CORUNNA/corona1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prabhurohiths/Web-Projects/HEAD/CORUNNA/corona1.png -------------------------------------------------------------------------------- /CORUNNA/game1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prabhurohiths/Web-Projects/HEAD/CORUNNA/game1.jpg -------------------------------------------------------------------------------- /CORUNNA/gameover.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prabhurohiths/Web-Projects/HEAD/CORUNNA/gameover.mp3 -------------------------------------------------------------------------------- /CORUNNA/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prabhurohiths/Web-Projects/HEAD/CORUNNA/index.html -------------------------------------------------------------------------------- /CORUNNA/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prabhurohiths/Web-Projects/HEAD/CORUNNA/script.js -------------------------------------------------------------------------------- /CORUNNA/smash.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prabhurohiths/Web-Projects/HEAD/CORUNNA/smash.mp3 -------------------------------------------------------------------------------- /CORUNNA/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prabhurohiths/Web-Projects/HEAD/CORUNNA/style.css -------------------------------------------------------------------------------- /Calculator/calculator.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prabhurohiths/Web-Projects/HEAD/Calculator/calculator.html -------------------------------------------------------------------------------- /Countdown/countdown.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prabhurohiths/Web-Projects/HEAD/Countdown/countdown.html -------------------------------------------------------------------------------- /Digital-Clock/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prabhurohiths/Web-Projects/HEAD/Digital-Clock/index.css -------------------------------------------------------------------------------- /Digital-Clock/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prabhurohiths/Web-Projects/HEAD/Digital-Clock/index.html -------------------------------------------------------------------------------- /Digital-Clock/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prabhurohiths/Web-Projects/HEAD/Digital-Clock/index.js -------------------------------------------------------------------------------- /Image Styling/favicon.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prabhurohiths/Web-Projects/HEAD/Image Styling/favicon.jpg -------------------------------------------------------------------------------- /Image Styling/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prabhurohiths/Web-Projects/HEAD/Image Styling/index.html -------------------------------------------------------------------------------- /Image Styling/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prabhurohiths/Web-Projects/HEAD/Image Styling/style.css -------------------------------------------------------------------------------- /JS Form Validation/form.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prabhurohiths/Web-Projects/HEAD/JS Form Validation/form.css -------------------------------------------------------------------------------- /JS Form Validation/form.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prabhurohiths/Web-Projects/HEAD/JS Form Validation/form.js -------------------------------------------------------------------------------- /JS Form Validation/form_validation.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prabhurohiths/Web-Projects/HEAD/JS Form Validation/form_validation.html -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prabhurohiths/Web-Projects/HEAD/README.md -------------------------------------------------------------------------------- /Simple Feedback-form/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prabhurohiths/Web-Projects/HEAD/Simple Feedback-form/index.html -------------------------------------------------------------------------------- /Simple Feedback-form/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prabhurohiths/Web-Projects/HEAD/Simple Feedback-form/style.css -------------------------------------------------------------------------------- /Weight_Converter/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prabhurohiths/Web-Projects/HEAD/Weight_Converter/index.html -------------------------------------------------------------------------------- /a-configurable-bouncing-google-logo/dist/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prabhurohiths/Web-Projects/HEAD/a-configurable-bouncing-google-logo/dist/index.html -------------------------------------------------------------------------------- /a-configurable-bouncing-google-logo/dist/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prabhurohiths/Web-Projects/HEAD/a-configurable-bouncing-google-logo/dist/style.css -------------------------------------------------------------------------------- /a-configurable-bouncing-google-logo/src/index.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prabhurohiths/Web-Projects/HEAD/a-configurable-bouncing-google-logo/src/index.pug -------------------------------------------------------------------------------- /a-configurable-bouncing-google-logo/src/style.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prabhurohiths/Web-Projects/HEAD/a-configurable-bouncing-google-logo/src/style.scss -------------------------------------------------------------------------------- /a-dynamic-website-university-finder/University-Finder/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prabhurohiths/Web-Projects/HEAD/a-dynamic-website-university-finder/University-Finder/README.md -------------------------------------------------------------------------------- /a-dynamic-website-university-finder/University-Finder/db.sqlite3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prabhurohiths/Web-Projects/HEAD/a-dynamic-website-university-finder/University-Finder/db.sqlite3 -------------------------------------------------------------------------------- /a-dynamic-website-university-finder/University-Finder/manage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prabhurohiths/Web-Projects/HEAD/a-dynamic-website-university-finder/University-Finder/manage.py -------------------------------------------------------------------------------- /a-dynamic-website-university-finder/University-Finder/static/css/login_style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prabhurohiths/Web-Projects/HEAD/a-dynamic-website-university-finder/University-Finder/static/css/login_style.css -------------------------------------------------------------------------------- /a-dynamic-website-university-finder/University-Finder/static/css/main.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prabhurohiths/Web-Projects/HEAD/a-dynamic-website-university-finder/University-Finder/static/css/main.css -------------------------------------------------------------------------------- /a-dynamic-website-university-finder/University-Finder/static/css/regis_style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prabhurohiths/Web-Projects/HEAD/a-dynamic-website-university-finder/University-Finder/static/css/regis_style.css -------------------------------------------------------------------------------- /a-dynamic-website-university-finder/University-Finder/static/css/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prabhurohiths/Web-Projects/HEAD/a-dynamic-website-university-finder/University-Finder/static/css/styles.css -------------------------------------------------------------------------------- /a-dynamic-website-university-finder/University-Finder/static/images/ad1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prabhurohiths/Web-Projects/HEAD/a-dynamic-website-university-finder/University-Finder/static/images/ad1.png -------------------------------------------------------------------------------- /a-dynamic-website-university-finder/University-Finder/static/images/ad2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prabhurohiths/Web-Projects/HEAD/a-dynamic-website-university-finder/University-Finder/static/images/ad2.png -------------------------------------------------------------------------------- /a-dynamic-website-university-finder/University-Finder/static/images/ad3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prabhurohiths/Web-Projects/HEAD/a-dynamic-website-university-finder/University-Finder/static/images/ad3.png -------------------------------------------------------------------------------- /a-dynamic-website-university-finder/University-Finder/static/images/contact.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prabhurohiths/Web-Projects/HEAD/a-dynamic-website-university-finder/University-Finder/static/images/contact.png -------------------------------------------------------------------------------- /a-dynamic-website-university-finder/University-Finder/static/images/design.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prabhurohiths/Web-Projects/HEAD/a-dynamic-website-university-finder/University-Finder/static/images/design.png -------------------------------------------------------------------------------- /a-dynamic-website-university-finder/University-Finder/static/images/logo.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prabhurohiths/Web-Projects/HEAD/a-dynamic-website-university-finder/University-Finder/static/images/logo.jpg -------------------------------------------------------------------------------- /a-dynamic-website-university-finder/University-Finder/static/images/mgmt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prabhurohiths/Web-Projects/HEAD/a-dynamic-website-university-finder/University-Finder/static/images/mgmt.png -------------------------------------------------------------------------------- /a-dynamic-website-university-finder/University-Finder/static/images/pic.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prabhurohiths/Web-Projects/HEAD/a-dynamic-website-university-finder/University-Finder/static/images/pic.jpg -------------------------------------------------------------------------------- /a-dynamic-website-university-finder/University-Finder/static/images/team.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prabhurohiths/Web-Projects/HEAD/a-dynamic-website-university-finder/University-Finder/static/images/team.png -------------------------------------------------------------------------------- /a-dynamic-website-university-finder/University-Finder/static/images/tech.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prabhurohiths/Web-Projects/HEAD/a-dynamic-website-university-finder/University-Finder/static/images/tech.png -------------------------------------------------------------------------------- /a-dynamic-website-university-finder/University-Finder/static/js/login.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prabhurohiths/Web-Projects/HEAD/a-dynamic-website-university-finder/University-Finder/static/js/login.js -------------------------------------------------------------------------------- /a-dynamic-website-university-finder/University-Finder/static/videos/ad.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prabhurohiths/Web-Projects/HEAD/a-dynamic-website-university-finder/University-Finder/static/videos/ad.mp4 -------------------------------------------------------------------------------- /a-dynamic-website-university-finder/University-Finder/static/videos/vidad2.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prabhurohiths/Web-Projects/HEAD/a-dynamic-website-university-finder/University-Finder/static/videos/vidad2.mp4 -------------------------------------------------------------------------------- /a-dynamic-website-university-finder/University-Finder/students/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /a-dynamic-website-university-finder/University-Finder/students/__pycache__/__init__.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prabhurohiths/Web-Projects/HEAD/a-dynamic-website-university-finder/University-Finder/students/__pycache__/__init__.cpython-38.pyc -------------------------------------------------------------------------------- /a-dynamic-website-university-finder/University-Finder/students/__pycache__/admin.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prabhurohiths/Web-Projects/HEAD/a-dynamic-website-university-finder/University-Finder/students/__pycache__/admin.cpython-38.pyc -------------------------------------------------------------------------------- /a-dynamic-website-university-finder/University-Finder/students/__pycache__/apps.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prabhurohiths/Web-Projects/HEAD/a-dynamic-website-university-finder/University-Finder/students/__pycache__/apps.cpython-38.pyc -------------------------------------------------------------------------------- /a-dynamic-website-university-finder/University-Finder/students/__pycache__/decorators.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prabhurohiths/Web-Projects/HEAD/a-dynamic-website-university-finder/University-Finder/students/__pycache__/decorators.cpython-38.pyc -------------------------------------------------------------------------------- /a-dynamic-website-university-finder/University-Finder/students/__pycache__/filter.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prabhurohiths/Web-Projects/HEAD/a-dynamic-website-university-finder/University-Finder/students/__pycache__/filter.cpython-38.pyc -------------------------------------------------------------------------------- /a-dynamic-website-university-finder/University-Finder/students/__pycache__/forms.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prabhurohiths/Web-Projects/HEAD/a-dynamic-website-university-finder/University-Finder/students/__pycache__/forms.cpython-38.pyc -------------------------------------------------------------------------------- /a-dynamic-website-university-finder/University-Finder/students/__pycache__/models.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prabhurohiths/Web-Projects/HEAD/a-dynamic-website-university-finder/University-Finder/students/__pycache__/models.cpython-38.pyc -------------------------------------------------------------------------------- /a-dynamic-website-university-finder/University-Finder/students/__pycache__/urls.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prabhurohiths/Web-Projects/HEAD/a-dynamic-website-university-finder/University-Finder/students/__pycache__/urls.cpython-38.pyc -------------------------------------------------------------------------------- /a-dynamic-website-university-finder/University-Finder/students/__pycache__/views.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prabhurohiths/Web-Projects/HEAD/a-dynamic-website-university-finder/University-Finder/students/__pycache__/views.cpython-38.pyc -------------------------------------------------------------------------------- /a-dynamic-website-university-finder/University-Finder/students/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prabhurohiths/Web-Projects/HEAD/a-dynamic-website-university-finder/University-Finder/students/admin.py -------------------------------------------------------------------------------- /a-dynamic-website-university-finder/University-Finder/students/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prabhurohiths/Web-Projects/HEAD/a-dynamic-website-university-finder/University-Finder/students/apps.py -------------------------------------------------------------------------------- /a-dynamic-website-university-finder/University-Finder/students/decorators.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prabhurohiths/Web-Projects/HEAD/a-dynamic-website-university-finder/University-Finder/students/decorators.py -------------------------------------------------------------------------------- /a-dynamic-website-university-finder/University-Finder/students/filter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prabhurohiths/Web-Projects/HEAD/a-dynamic-website-university-finder/University-Finder/students/filter.py -------------------------------------------------------------------------------- /a-dynamic-website-university-finder/University-Finder/students/forms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prabhurohiths/Web-Projects/HEAD/a-dynamic-website-university-finder/University-Finder/students/forms.py -------------------------------------------------------------------------------- /a-dynamic-website-university-finder/University-Finder/students/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prabhurohiths/Web-Projects/HEAD/a-dynamic-website-university-finder/University-Finder/students/migrations/0001_initial.py -------------------------------------------------------------------------------- /a-dynamic-website-university-finder/University-Finder/students/migrations/0002_courses_suggestion_topics_univdegree_university.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prabhurohiths/Web-Projects/HEAD/a-dynamic-website-university-finder/University-Finder/students/migrations/0002_courses_suggestion_topics_univdegree_university.py -------------------------------------------------------------------------------- /a-dynamic-website-university-finder/University-Finder/students/migrations/0003_auto_20201020_1843.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prabhurohiths/Web-Projects/HEAD/a-dynamic-website-university-finder/University-Finder/students/migrations/0003_auto_20201020_1843.py -------------------------------------------------------------------------------- /a-dynamic-website-university-finder/University-Finder/students/migrations/0004_auto_20201021_0705.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prabhurohiths/Web-Projects/HEAD/a-dynamic-website-university-finder/University-Finder/students/migrations/0004_auto_20201021_0705.py -------------------------------------------------------------------------------- /a-dynamic-website-university-finder/University-Finder/students/migrations/0005_auto_20201021_0712.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prabhurohiths/Web-Projects/HEAD/a-dynamic-website-university-finder/University-Finder/students/migrations/0005_auto_20201021_0712.py -------------------------------------------------------------------------------- /a-dynamic-website-university-finder/University-Finder/students/migrations/0006_auto_20201021_1159.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prabhurohiths/Web-Projects/HEAD/a-dynamic-website-university-finder/University-Finder/students/migrations/0006_auto_20201021_1159.py -------------------------------------------------------------------------------- /a-dynamic-website-university-finder/University-Finder/students/migrations/0007_auto_20201021_1326.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prabhurohiths/Web-Projects/HEAD/a-dynamic-website-university-finder/University-Finder/students/migrations/0007_auto_20201021_1326.py -------------------------------------------------------------------------------- /a-dynamic-website-university-finder/University-Finder/students/migrations/0008_auto_20201021_1404.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prabhurohiths/Web-Projects/HEAD/a-dynamic-website-university-finder/University-Finder/students/migrations/0008_auto_20201021_1404.py -------------------------------------------------------------------------------- /a-dynamic-website-university-finder/University-Finder/students/migrations/0009_auto_20201107_1807.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prabhurohiths/Web-Projects/HEAD/a-dynamic-website-university-finder/University-Finder/students/migrations/0009_auto_20201107_1807.py -------------------------------------------------------------------------------- /a-dynamic-website-university-finder/University-Finder/students/migrations/0010_auto_20201107_1821.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prabhurohiths/Web-Projects/HEAD/a-dynamic-website-university-finder/University-Finder/students/migrations/0010_auto_20201107_1821.py -------------------------------------------------------------------------------- /a-dynamic-website-university-finder/University-Finder/students/migrations/0011_auto_20210428_1538.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prabhurohiths/Web-Projects/HEAD/a-dynamic-website-university-finder/University-Finder/students/migrations/0011_auto_20210428_1538.py -------------------------------------------------------------------------------- /a-dynamic-website-university-finder/University-Finder/students/migrations/0012_university_info.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prabhurohiths/Web-Projects/HEAD/a-dynamic-website-university-finder/University-Finder/students/migrations/0012_university_info.py -------------------------------------------------------------------------------- /a-dynamic-website-university-finder/University-Finder/students/migrations/0013_auto_20210429_1036.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prabhurohiths/Web-Projects/HEAD/a-dynamic-website-university-finder/University-Finder/students/migrations/0013_auto_20210429_1036.py -------------------------------------------------------------------------------- /a-dynamic-website-university-finder/University-Finder/students/migrations/0014_auto_20210429_1038.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prabhurohiths/Web-Projects/HEAD/a-dynamic-website-university-finder/University-Finder/students/migrations/0014_auto_20210429_1038.py -------------------------------------------------------------------------------- /a-dynamic-website-university-finder/University-Finder/students/migrations/0015_donationinfo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prabhurohiths/Web-Projects/HEAD/a-dynamic-website-university-finder/University-Finder/students/migrations/0015_donationinfo.py -------------------------------------------------------------------------------- /a-dynamic-website-university-finder/University-Finder/students/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /a-dynamic-website-university-finder/University-Finder/students/migrations/__pycache__/0001_initial.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prabhurohiths/Web-Projects/HEAD/a-dynamic-website-university-finder/University-Finder/students/migrations/__pycache__/0001_initial.cpython-38.pyc -------------------------------------------------------------------------------- /a-dynamic-website-university-finder/University-Finder/students/migrations/__pycache__/0002_courses_suggestion_topics_univdegree_university.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prabhurohiths/Web-Projects/HEAD/a-dynamic-website-university-finder/University-Finder/students/migrations/__pycache__/0002_courses_suggestion_topics_univdegree_university.cpython-38.pyc -------------------------------------------------------------------------------- /a-dynamic-website-university-finder/University-Finder/students/migrations/__pycache__/0003_auto_20201020_1843.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prabhurohiths/Web-Projects/HEAD/a-dynamic-website-university-finder/University-Finder/students/migrations/__pycache__/0003_auto_20201020_1843.cpython-38.pyc -------------------------------------------------------------------------------- /a-dynamic-website-university-finder/University-Finder/students/migrations/__pycache__/0004_auto_20201021_0705.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prabhurohiths/Web-Projects/HEAD/a-dynamic-website-university-finder/University-Finder/students/migrations/__pycache__/0004_auto_20201021_0705.cpython-38.pyc -------------------------------------------------------------------------------- /a-dynamic-website-university-finder/University-Finder/students/migrations/__pycache__/0005_auto_20201021_0712.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prabhurohiths/Web-Projects/HEAD/a-dynamic-website-university-finder/University-Finder/students/migrations/__pycache__/0005_auto_20201021_0712.cpython-38.pyc -------------------------------------------------------------------------------- /a-dynamic-website-university-finder/University-Finder/students/migrations/__pycache__/0006_auto_20201021_1159.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prabhurohiths/Web-Projects/HEAD/a-dynamic-website-university-finder/University-Finder/students/migrations/__pycache__/0006_auto_20201021_1159.cpython-38.pyc -------------------------------------------------------------------------------- /a-dynamic-website-university-finder/University-Finder/students/migrations/__pycache__/0007_auto_20201021_1326.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prabhurohiths/Web-Projects/HEAD/a-dynamic-website-university-finder/University-Finder/students/migrations/__pycache__/0007_auto_20201021_1326.cpython-38.pyc -------------------------------------------------------------------------------- /a-dynamic-website-university-finder/University-Finder/students/migrations/__pycache__/0008_auto_20201021_1404.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prabhurohiths/Web-Projects/HEAD/a-dynamic-website-university-finder/University-Finder/students/migrations/__pycache__/0008_auto_20201021_1404.cpython-38.pyc -------------------------------------------------------------------------------- /a-dynamic-website-university-finder/University-Finder/students/migrations/__pycache__/0009_auto_20201107_1807.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prabhurohiths/Web-Projects/HEAD/a-dynamic-website-university-finder/University-Finder/students/migrations/__pycache__/0009_auto_20201107_1807.cpython-38.pyc -------------------------------------------------------------------------------- /a-dynamic-website-university-finder/University-Finder/students/migrations/__pycache__/0010_auto_20201107_1821.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prabhurohiths/Web-Projects/HEAD/a-dynamic-website-university-finder/University-Finder/students/migrations/__pycache__/0010_auto_20201107_1821.cpython-38.pyc -------------------------------------------------------------------------------- /a-dynamic-website-university-finder/University-Finder/students/migrations/__pycache__/0011_auto_20210428_1538.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prabhurohiths/Web-Projects/HEAD/a-dynamic-website-university-finder/University-Finder/students/migrations/__pycache__/0011_auto_20210428_1538.cpython-38.pyc -------------------------------------------------------------------------------- /a-dynamic-website-university-finder/University-Finder/students/migrations/__pycache__/0012_university_info.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prabhurohiths/Web-Projects/HEAD/a-dynamic-website-university-finder/University-Finder/students/migrations/__pycache__/0012_university_info.cpython-38.pyc -------------------------------------------------------------------------------- /a-dynamic-website-university-finder/University-Finder/students/migrations/__pycache__/0013_auto_20210429_1036.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prabhurohiths/Web-Projects/HEAD/a-dynamic-website-university-finder/University-Finder/students/migrations/__pycache__/0013_auto_20210429_1036.cpython-38.pyc -------------------------------------------------------------------------------- /a-dynamic-website-university-finder/University-Finder/students/migrations/__pycache__/0014_auto_20210429_1038.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prabhurohiths/Web-Projects/HEAD/a-dynamic-website-university-finder/University-Finder/students/migrations/__pycache__/0014_auto_20210429_1038.cpython-38.pyc -------------------------------------------------------------------------------- /a-dynamic-website-university-finder/University-Finder/students/migrations/__pycache__/0015_donationinfo.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prabhurohiths/Web-Projects/HEAD/a-dynamic-website-university-finder/University-Finder/students/migrations/__pycache__/0015_donationinfo.cpython-38.pyc -------------------------------------------------------------------------------- /a-dynamic-website-university-finder/University-Finder/students/migrations/__pycache__/__init__.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prabhurohiths/Web-Projects/HEAD/a-dynamic-website-university-finder/University-Finder/students/migrations/__pycache__/__init__.cpython-38.pyc -------------------------------------------------------------------------------- /a-dynamic-website-university-finder/University-Finder/students/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prabhurohiths/Web-Projects/HEAD/a-dynamic-website-university-finder/University-Finder/students/models.py -------------------------------------------------------------------------------- /a-dynamic-website-university-finder/University-Finder/students/templates/students/del_acc.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prabhurohiths/Web-Projects/HEAD/a-dynamic-website-university-finder/University-Finder/students/templates/students/del_acc.html -------------------------------------------------------------------------------- /a-dynamic-website-university-finder/University-Finder/students/templates/students/donate-pay.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prabhurohiths/Web-Projects/HEAD/a-dynamic-website-university-finder/University-Finder/students/templates/students/donate-pay.html -------------------------------------------------------------------------------- /a-dynamic-website-university-finder/University-Finder/students/templates/students/donate.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prabhurohiths/Web-Projects/HEAD/a-dynamic-website-university-finder/University-Finder/students/templates/students/donate.html -------------------------------------------------------------------------------- /a-dynamic-website-university-finder/University-Finder/students/templates/students/finder.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prabhurohiths/Web-Projects/HEAD/a-dynamic-website-university-finder/University-Finder/students/templates/students/finder.html -------------------------------------------------------------------------------- /a-dynamic-website-university-finder/University-Finder/students/templates/students/home.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prabhurohiths/Web-Projects/HEAD/a-dynamic-website-university-finder/University-Finder/students/templates/students/home.html -------------------------------------------------------------------------------- /a-dynamic-website-university-finder/University-Finder/students/templates/students/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prabhurohiths/Web-Projects/HEAD/a-dynamic-website-university-finder/University-Finder/students/templates/students/index.html -------------------------------------------------------------------------------- /a-dynamic-website-university-finder/University-Finder/students/templates/students/login.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prabhurohiths/Web-Projects/HEAD/a-dynamic-website-university-finder/University-Finder/students/templates/students/login.html -------------------------------------------------------------------------------- /a-dynamic-website-university-finder/University-Finder/students/templates/students/logout_page.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prabhurohiths/Web-Projects/HEAD/a-dynamic-website-university-finder/University-Finder/students/templates/students/logout_page.html -------------------------------------------------------------------------------- /a-dynamic-website-university-finder/University-Finder/students/templates/students/main.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prabhurohiths/Web-Projects/HEAD/a-dynamic-website-university-finder/University-Finder/students/templates/students/main.html -------------------------------------------------------------------------------- /a-dynamic-website-university-finder/University-Finder/students/templates/students/navbar.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prabhurohiths/Web-Projects/HEAD/a-dynamic-website-university-finder/University-Finder/students/templates/students/navbar.html -------------------------------------------------------------------------------- /a-dynamic-website-university-finder/University-Finder/students/templates/students/register.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prabhurohiths/Web-Projects/HEAD/a-dynamic-website-university-finder/University-Finder/students/templates/students/register.html -------------------------------------------------------------------------------- /a-dynamic-website-university-finder/University-Finder/students/templates/students/status.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prabhurohiths/Web-Projects/HEAD/a-dynamic-website-university-finder/University-Finder/students/templates/students/status.html -------------------------------------------------------------------------------- /a-dynamic-website-university-finder/University-Finder/students/templates/students/univ_info.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prabhurohiths/Web-Projects/HEAD/a-dynamic-website-university-finder/University-Finder/students/templates/students/univ_info.html -------------------------------------------------------------------------------- /a-dynamic-website-university-finder/University-Finder/students/templates/students/user-detail.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prabhurohiths/Web-Projects/HEAD/a-dynamic-website-university-finder/University-Finder/students/templates/students/user-detail.html -------------------------------------------------------------------------------- /a-dynamic-website-university-finder/University-Finder/students/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prabhurohiths/Web-Projects/HEAD/a-dynamic-website-university-finder/University-Finder/students/tests.py -------------------------------------------------------------------------------- /a-dynamic-website-university-finder/University-Finder/students/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prabhurohiths/Web-Projects/HEAD/a-dynamic-website-university-finder/University-Finder/students/urls.py -------------------------------------------------------------------------------- /a-dynamic-website-university-finder/University-Finder/students/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prabhurohiths/Web-Projects/HEAD/a-dynamic-website-university-finder/University-Finder/students/views.py -------------------------------------------------------------------------------- /a-dynamic-website-university-finder/University-Finder/u_finder/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /a-dynamic-website-university-finder/University-Finder/u_finder/__pycache__/__init__.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prabhurohiths/Web-Projects/HEAD/a-dynamic-website-university-finder/University-Finder/u_finder/__pycache__/__init__.cpython-38.pyc -------------------------------------------------------------------------------- /a-dynamic-website-university-finder/University-Finder/u_finder/__pycache__/settings.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prabhurohiths/Web-Projects/HEAD/a-dynamic-website-university-finder/University-Finder/u_finder/__pycache__/settings.cpython-38.pyc -------------------------------------------------------------------------------- /a-dynamic-website-university-finder/University-Finder/u_finder/__pycache__/urls.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prabhurohiths/Web-Projects/HEAD/a-dynamic-website-university-finder/University-Finder/u_finder/__pycache__/urls.cpython-38.pyc -------------------------------------------------------------------------------- /a-dynamic-website-university-finder/University-Finder/u_finder/__pycache__/wsgi.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prabhurohiths/Web-Projects/HEAD/a-dynamic-website-university-finder/University-Finder/u_finder/__pycache__/wsgi.cpython-38.pyc -------------------------------------------------------------------------------- /a-dynamic-website-university-finder/University-Finder/u_finder/asgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prabhurohiths/Web-Projects/HEAD/a-dynamic-website-university-finder/University-Finder/u_finder/asgi.py -------------------------------------------------------------------------------- /a-dynamic-website-university-finder/University-Finder/u_finder/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prabhurohiths/Web-Projects/HEAD/a-dynamic-website-university-finder/University-Finder/u_finder/settings.py -------------------------------------------------------------------------------- /a-dynamic-website-university-finder/University-Finder/u_finder/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prabhurohiths/Web-Projects/HEAD/a-dynamic-website-university-finder/University-Finder/u_finder/urls.py -------------------------------------------------------------------------------- /a-dynamic-website-university-finder/University-Finder/u_finder/wsgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prabhurohiths/Web-Projects/HEAD/a-dynamic-website-university-finder/University-Finder/u_finder/wsgi.py -------------------------------------------------------------------------------- /animated-login-form/dist/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prabhurohiths/Web-Projects/HEAD/animated-login-form/dist/index.html -------------------------------------------------------------------------------- /animated-login-form/dist/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prabhurohiths/Web-Projects/HEAD/animated-login-form/dist/style.css -------------------------------------------------------------------------------- /animated-login-form/src/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prabhurohiths/Web-Projects/HEAD/animated-login-form/src/index.html -------------------------------------------------------------------------------- /animated-login-form/src/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prabhurohiths/Web-Projects/HEAD/animated-login-form/src/style.css -------------------------------------------------------------------------------- /animated-tab-bar/dist/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prabhurohiths/Web-Projects/HEAD/animated-tab-bar/dist/index.html -------------------------------------------------------------------------------- /animated-tab-bar/dist/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prabhurohiths/Web-Projects/HEAD/animated-tab-bar/dist/script.js -------------------------------------------------------------------------------- /animated-tab-bar/dist/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prabhurohiths/Web-Projects/HEAD/animated-tab-bar/dist/style.css -------------------------------------------------------------------------------- /animated-tab-bar/src/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prabhurohiths/Web-Projects/HEAD/animated-tab-bar/src/index.html -------------------------------------------------------------------------------- /animated-tab-bar/src/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prabhurohiths/Web-Projects/HEAD/animated-tab-bar/src/script.js -------------------------------------------------------------------------------- /animated-tab-bar/src/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prabhurohiths/Web-Projects/HEAD/animated-tab-bar/src/style.css -------------------------------------------------------------------------------- /basic.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prabhurohiths/Web-Projects/HEAD/basic.html -------------------------------------------------------------------------------- /beutiful-js-stopwatch-app/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prabhurohiths/Web-Projects/HEAD/beutiful-js-stopwatch-app/README.md -------------------------------------------------------------------------------- /beutiful-js-stopwatch-app/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prabhurohiths/Web-Projects/HEAD/beutiful-js-stopwatch-app/index.html -------------------------------------------------------------------------------- /beutiful-js-stopwatch-app/src/timer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prabhurohiths/Web-Projects/HEAD/beutiful-js-stopwatch-app/src/timer.js -------------------------------------------------------------------------------- /beutiful-js-stopwatch-app/styles/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prabhurohiths/Web-Projects/HEAD/beutiful-js-stopwatch-app/styles/style.css -------------------------------------------------------------------------------- /bookcase-with-DOM/.vscode/settings.json: -------------------------------------------------------------------------------- 1 | { 2 | "liveServer.settings.port": 5501 3 | } -------------------------------------------------------------------------------- /bookcase-with-DOM/assets/book.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prabhurohiths/Web-Projects/HEAD/bookcase-with-DOM/assets/book.png -------------------------------------------------------------------------------- /bookcase-with-DOM/assets/bookbg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prabhurohiths/Web-Projects/HEAD/bookcase-with-DOM/assets/bookbg.jpg -------------------------------------------------------------------------------- /bookcase-with-DOM/assets/check-outline.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prabhurohiths/Web-Projects/HEAD/bookcase-with-DOM/assets/check-outline.svg -------------------------------------------------------------------------------- /bookcase-with-DOM/assets/check-solid.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prabhurohiths/Web-Projects/HEAD/bookcase-with-DOM/assets/check-solid.svg -------------------------------------------------------------------------------- /bookcase-with-DOM/assets/searchimg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prabhurohiths/Web-Projects/HEAD/bookcase-with-DOM/assets/searchimg.png -------------------------------------------------------------------------------- /bookcase-with-DOM/assets/trash-fill.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prabhurohiths/Web-Projects/HEAD/bookcase-with-DOM/assets/trash-fill.svg -------------------------------------------------------------------------------- /bookcase-with-DOM/assets/trash-outline.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prabhurohiths/Web-Projects/HEAD/bookcase-with-DOM/assets/trash-outline.svg -------------------------------------------------------------------------------- /bookcase-with-DOM/assets/undo-ouline.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prabhurohiths/Web-Projects/HEAD/bookcase-with-DOM/assets/undo-ouline.svg -------------------------------------------------------------------------------- /bookcase-with-DOM/css/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prabhurohiths/Web-Projects/HEAD/bookcase-with-DOM/css/style.css -------------------------------------------------------------------------------- /bookcase-with-DOM/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prabhurohiths/Web-Projects/HEAD/bookcase-with-DOM/index.html -------------------------------------------------------------------------------- /bookcase-with-DOM/js/data.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prabhurohiths/Web-Projects/HEAD/bookcase-with-DOM/js/data.js -------------------------------------------------------------------------------- /bookcase-with-DOM/js/dom.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prabhurohiths/Web-Projects/HEAD/bookcase-with-DOM/js/dom.js -------------------------------------------------------------------------------- /bookcase-with-DOM/js/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prabhurohiths/Web-Projects/HEAD/bookcase-with-DOM/js/script.js -------------------------------------------------------------------------------- /card-hover-interactions/dist/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prabhurohiths/Web-Projects/HEAD/card-hover-interactions/dist/index.html -------------------------------------------------------------------------------- /card-hover-interactions/dist/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prabhurohiths/Web-Projects/HEAD/card-hover-interactions/dist/style.css -------------------------------------------------------------------------------- /card-hover-interactions/src/index.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prabhurohiths/Web-Projects/HEAD/card-hover-interactions/src/index.pug -------------------------------------------------------------------------------- /card-hover-interactions/src/style.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prabhurohiths/Web-Projects/HEAD/card-hover-interactions/src/style.scss -------------------------------------------------------------------------------- /cool-spotlight-shadows/dist/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prabhurohiths/Web-Projects/HEAD/cool-spotlight-shadows/dist/index.html -------------------------------------------------------------------------------- /cool-spotlight-shadows/dist/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prabhurohiths/Web-Projects/HEAD/cool-spotlight-shadows/dist/style.css -------------------------------------------------------------------------------- /cool-spotlight-shadows/src/index.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prabhurohiths/Web-Projects/HEAD/cool-spotlight-shadows/src/index.pug -------------------------------------------------------------------------------- /cool-spotlight-shadows/src/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prabhurohiths/Web-Projects/HEAD/cool-spotlight-shadows/src/style.css -------------------------------------------------------------------------------- /countdown-timer/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prabhurohiths/Web-Projects/HEAD/countdown-timer/README.md -------------------------------------------------------------------------------- /countdown-timer/assets/tones/Alarm05.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prabhurohiths/Web-Projects/HEAD/countdown-timer/assets/tones/Alarm05.wav -------------------------------------------------------------------------------- /countdown-timer/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prabhurohiths/Web-Projects/HEAD/countdown-timer/index.html -------------------------------------------------------------------------------- /countdown-timer/scripts/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prabhurohiths/Web-Projects/HEAD/countdown-timer/scripts/main.js -------------------------------------------------------------------------------- /countdown-timer/styles/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prabhurohiths/Web-Projects/HEAD/countdown-timer/styles/style.css -------------------------------------------------------------------------------- /css-curveline-animation/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prabhurohiths/Web-Projects/HEAD/css-curveline-animation/index.html -------------------------------------------------------------------------------- /css-curveline-animation/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prabhurohiths/Web-Projects/HEAD/css-curveline-animation/style.css -------------------------------------------------------------------------------- /css-goey-footer/dist/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prabhurohiths/Web-Projects/HEAD/css-goey-footer/dist/index.html -------------------------------------------------------------------------------- /css-goey-footer/dist/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prabhurohiths/Web-Projects/HEAD/css-goey-footer/dist/style.css -------------------------------------------------------------------------------- /css-goey-footer/src/index.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prabhurohiths/Web-Projects/HEAD/css-goey-footer/src/index.pug -------------------------------------------------------------------------------- /css-goey-footer/src/style.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prabhurohiths/Web-Projects/HEAD/css-goey-footer/src/style.scss -------------------------------------------------------------------------------- /css-workdesk/dist/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prabhurohiths/Web-Projects/HEAD/css-workdesk/dist/index.html -------------------------------------------------------------------------------- /css-workdesk/dist/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prabhurohiths/Web-Projects/HEAD/css-workdesk/dist/script.js -------------------------------------------------------------------------------- /css-workdesk/dist/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prabhurohiths/Web-Projects/HEAD/css-workdesk/dist/style.css -------------------------------------------------------------------------------- /css-workdesk/src/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prabhurohiths/Web-Projects/HEAD/css-workdesk/src/index.html -------------------------------------------------------------------------------- /css-workdesk/src/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prabhurohiths/Web-Projects/HEAD/css-workdesk/src/script.js -------------------------------------------------------------------------------- /css-workdesk/src/style.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prabhurohiths/Web-Projects/HEAD/css-workdesk/src/style.scss -------------------------------------------------------------------------------- /currency-converter/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prabhurohiths/Web-Projects/HEAD/currency-converter/index.html -------------------------------------------------------------------------------- /currency-converter/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prabhurohiths/Web-Projects/HEAD/currency-converter/script.js -------------------------------------------------------------------------------- /currency-converter/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prabhurohiths/Web-Projects/HEAD/currency-converter/style.css -------------------------------------------------------------------------------- /drum-kit/images/crash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prabhurohiths/Web-Projects/HEAD/drum-kit/images/crash.png -------------------------------------------------------------------------------- /drum-kit/images/kick.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prabhurohiths/Web-Projects/HEAD/drum-kit/images/kick.png -------------------------------------------------------------------------------- /drum-kit/images/snare.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prabhurohiths/Web-Projects/HEAD/drum-kit/images/snare.png -------------------------------------------------------------------------------- /drum-kit/images/tom1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prabhurohiths/Web-Projects/HEAD/drum-kit/images/tom1.png -------------------------------------------------------------------------------- /drum-kit/images/tom2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prabhurohiths/Web-Projects/HEAD/drum-kit/images/tom2.png -------------------------------------------------------------------------------- /drum-kit/images/tom3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prabhurohiths/Web-Projects/HEAD/drum-kit/images/tom3.png -------------------------------------------------------------------------------- /drum-kit/images/tom4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prabhurohiths/Web-Projects/HEAD/drum-kit/images/tom4.png -------------------------------------------------------------------------------- /drum-kit/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prabhurohiths/Web-Projects/HEAD/drum-kit/index.html -------------------------------------------------------------------------------- /drum-kit/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prabhurohiths/Web-Projects/HEAD/drum-kit/index.js -------------------------------------------------------------------------------- /drum-kit/sounds/crash.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prabhurohiths/Web-Projects/HEAD/drum-kit/sounds/crash.mp3 -------------------------------------------------------------------------------- /drum-kit/sounds/kick-bass.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prabhurohiths/Web-Projects/HEAD/drum-kit/sounds/kick-bass.mp3 -------------------------------------------------------------------------------- /drum-kit/sounds/snare.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prabhurohiths/Web-Projects/HEAD/drum-kit/sounds/snare.mp3 -------------------------------------------------------------------------------- /drum-kit/sounds/tom-1.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prabhurohiths/Web-Projects/HEAD/drum-kit/sounds/tom-1.mp3 -------------------------------------------------------------------------------- /drum-kit/sounds/tom-2.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prabhurohiths/Web-Projects/HEAD/drum-kit/sounds/tom-2.mp3 -------------------------------------------------------------------------------- /drum-kit/sounds/tom-3.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prabhurohiths/Web-Projects/HEAD/drum-kit/sounds/tom-3.mp3 -------------------------------------------------------------------------------- /drum-kit/sounds/tom-4.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prabhurohiths/Web-Projects/HEAD/drum-kit/sounds/tom-4.mp3 -------------------------------------------------------------------------------- /drum-kit/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prabhurohiths/Web-Projects/HEAD/drum-kit/styles.css -------------------------------------------------------------------------------- /empty/prabhugithub1.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prabhurohiths/Web-Projects/HEAD/empty/prabhugithub1.html -------------------------------------------------------------------------------- /empty/prabhugithub2.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prabhurohiths/Web-Projects/HEAD/empty/prabhugithub2.html -------------------------------------------------------------------------------- /empty/prabhugithub3.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prabhurohiths/Web-Projects/HEAD/empty/prabhugithub3.html -------------------------------------------------------------------------------- /empty/prabhugithub4.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prabhurohiths/Web-Projects/HEAD/empty/prabhugithub4.html -------------------------------------------------------------------------------- /empty/prabhugithub5.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prabhurohiths/Web-Projects/HEAD/empty/prabhugithub5.html -------------------------------------------------------------------------------- /flip-for-gsap/dist/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prabhurohiths/Web-Projects/HEAD/flip-for-gsap/dist/index.html -------------------------------------------------------------------------------- /flip-for-gsap/dist/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prabhurohiths/Web-Projects/HEAD/flip-for-gsap/dist/script.js -------------------------------------------------------------------------------- /flip-for-gsap/dist/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prabhurohiths/Web-Projects/HEAD/flip-for-gsap/dist/style.css -------------------------------------------------------------------------------- /flip-for-gsap/src/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prabhurohiths/Web-Projects/HEAD/flip-for-gsap/src/index.html -------------------------------------------------------------------------------- /flip-for-gsap/src/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prabhurohiths/Web-Projects/HEAD/flip-for-gsap/src/script.js -------------------------------------------------------------------------------- /flip-for-gsap/src/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prabhurohiths/Web-Projects/HEAD/flip-for-gsap/src/style.css -------------------------------------------------------------------------------- /flying-letters/dist/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prabhurohiths/Web-Projects/HEAD/flying-letters/dist/index.html -------------------------------------------------------------------------------- /flying-letters/dist/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prabhurohiths/Web-Projects/HEAD/flying-letters/dist/script.js -------------------------------------------------------------------------------- /flying-letters/dist/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prabhurohiths/Web-Projects/HEAD/flying-letters/dist/style.css -------------------------------------------------------------------------------- /flying-letters/src/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prabhurohiths/Web-Projects/HEAD/flying-letters/src/index.html -------------------------------------------------------------------------------- /flying-letters/src/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prabhurohiths/Web-Projects/HEAD/flying-letters/src/script.js -------------------------------------------------------------------------------- /flying-letters/src/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prabhurohiths/Web-Projects/HEAD/flying-letters/src/style.css -------------------------------------------------------------------------------- /guess-the-number-by-voicee/app/initLang.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prabhurohiths/Web-Projects/HEAD/guess-the-number-by-voicee/app/initLang.js -------------------------------------------------------------------------------- /guess-the-number-by-voicee/app/sortNumber.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prabhurohiths/Web-Projects/HEAD/guess-the-number-by-voicee/app/sortNumber.js -------------------------------------------------------------------------------- /guess-the-number-by-voicee/app/validation.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prabhurohiths/Web-Projects/HEAD/guess-the-number-by-voicee/app/validation.js -------------------------------------------------------------------------------- /guess-the-number-by-voicee/app/voiceRecognition.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prabhurohiths/Web-Projects/HEAD/guess-the-number-by-voicee/app/voiceRecognition.js -------------------------------------------------------------------------------- /guess-the-number-by-voicee/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prabhurohiths/Web-Projects/HEAD/guess-the-number-by-voicee/index.html -------------------------------------------------------------------------------- /guess-the-number-by-voicee/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prabhurohiths/Web-Projects/HEAD/guess-the-number-by-voicee/styles.css -------------------------------------------------------------------------------- /hello-world/src/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prabhurohiths/Web-Projects/HEAD/hello-world/src/index.html -------------------------------------------------------------------------------- /image-slider-with-multiple-controls-and-mobile-swipe-control-javascript/dist/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prabhurohiths/Web-Projects/HEAD/image-slider-with-multiple-controls-and-mobile-swipe-control-javascript/dist/index.html -------------------------------------------------------------------------------- /image-slider-with-multiple-controls-and-mobile-swipe-control-javascript/dist/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prabhurohiths/Web-Projects/HEAD/image-slider-with-multiple-controls-and-mobile-swipe-control-javascript/dist/script.js -------------------------------------------------------------------------------- /image-slider-with-multiple-controls-and-mobile-swipe-control-javascript/dist/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prabhurohiths/Web-Projects/HEAD/image-slider-with-multiple-controls-and-mobile-swipe-control-javascript/dist/style.css -------------------------------------------------------------------------------- /image-slider-with-multiple-controls-and-mobile-swipe-control-javascript/src/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prabhurohiths/Web-Projects/HEAD/image-slider-with-multiple-controls-and-mobile-swipe-control-javascript/src/index.html -------------------------------------------------------------------------------- /image-slider-with-multiple-controls-and-mobile-swipe-control-javascript/src/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prabhurohiths/Web-Projects/HEAD/image-slider-with-multiple-controls-and-mobile-swipe-control-javascript/src/script.js -------------------------------------------------------------------------------- /image-slider-with-multiple-controls-and-mobile-swipe-control-javascript/src/style.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prabhurohiths/Web-Projects/HEAD/image-slider-with-multiple-controls-and-mobile-swipe-control-javascript/src/style.scss -------------------------------------------------------------------------------- /loginpage/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prabhurohiths/Web-Projects/HEAD/loginpage/.gitignore -------------------------------------------------------------------------------- /loginpage/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prabhurohiths/Web-Projects/HEAD/loginpage/README.md -------------------------------------------------------------------------------- /loginpage/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prabhurohiths/Web-Projects/HEAD/loginpage/package-lock.json -------------------------------------------------------------------------------- /loginpage/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prabhurohiths/Web-Projects/HEAD/loginpage/package.json -------------------------------------------------------------------------------- /loginpage/public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prabhurohiths/Web-Projects/HEAD/loginpage/public/favicon.ico -------------------------------------------------------------------------------- /loginpage/public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prabhurohiths/Web-Projects/HEAD/loginpage/public/index.html -------------------------------------------------------------------------------- /loginpage/public/logo192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prabhurohiths/Web-Projects/HEAD/loginpage/public/logo192.png -------------------------------------------------------------------------------- /loginpage/public/logo512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prabhurohiths/Web-Projects/HEAD/loginpage/public/logo512.png -------------------------------------------------------------------------------- /loginpage/public/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prabhurohiths/Web-Projects/HEAD/loginpage/public/manifest.json -------------------------------------------------------------------------------- /loginpage/public/robots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prabhurohiths/Web-Projects/HEAD/loginpage/public/robots.txt -------------------------------------------------------------------------------- /loginpage/src/App.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prabhurohiths/Web-Projects/HEAD/loginpage/src/App.css -------------------------------------------------------------------------------- /loginpage/src/App.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prabhurohiths/Web-Projects/HEAD/loginpage/src/App.js -------------------------------------------------------------------------------- /loginpage/src/App.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prabhurohiths/Web-Projects/HEAD/loginpage/src/App.test.js -------------------------------------------------------------------------------- /loginpage/src/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prabhurohiths/Web-Projects/HEAD/loginpage/src/index.css -------------------------------------------------------------------------------- /loginpage/src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prabhurohiths/Web-Projects/HEAD/loginpage/src/index.js -------------------------------------------------------------------------------- /loginpage/src/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prabhurohiths/Web-Projects/HEAD/loginpage/src/logo.svg -------------------------------------------------------------------------------- /loginpage/src/reportWebVitals.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prabhurohiths/Web-Projects/HEAD/loginpage/src/reportWebVitals.js -------------------------------------------------------------------------------- /loginpage/src/setupTests.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prabhurohiths/Web-Projects/HEAD/loginpage/src/setupTests.js -------------------------------------------------------------------------------- /navigation-bar/aboutus.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prabhurohiths/Web-Projects/HEAD/navigation-bar/aboutus.html -------------------------------------------------------------------------------- /navigation-bar/contactus.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prabhurohiths/Web-Projects/HEAD/navigation-bar/contactus.html -------------------------------------------------------------------------------- /navigation-bar/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prabhurohiths/Web-Projects/HEAD/navigation-bar/index.html -------------------------------------------------------------------------------- /navigation-bar/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prabhurohiths/Web-Projects/HEAD/navigation-bar/style.css -------------------------------------------------------------------------------- /neon/dist/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prabhurohiths/Web-Projects/HEAD/neon/dist/index.html -------------------------------------------------------------------------------- /neon/dist/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prabhurohiths/Web-Projects/HEAD/neon/dist/script.js -------------------------------------------------------------------------------- /neon/dist/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prabhurohiths/Web-Projects/HEAD/neon/dist/style.css -------------------------------------------------------------------------------- /neon/src/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prabhurohiths/Web-Projects/HEAD/neon/src/index.html -------------------------------------------------------------------------------- /neon/src/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prabhurohiths/Web-Projects/HEAD/neon/src/script.js -------------------------------------------------------------------------------- /neon/src/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prabhurohiths/Web-Projects/HEAD/neon/src/style.css -------------------------------------------------------------------------------- /nice-web-landing-page/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prabhurohiths/Web-Projects/HEAD/nice-web-landing-page/index.html -------------------------------------------------------------------------------- /password-error-animation/dist/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prabhurohiths/Web-Projects/HEAD/password-error-animation/dist/index.html -------------------------------------------------------------------------------- /password-error-animation/dist/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prabhurohiths/Web-Projects/HEAD/password-error-animation/dist/script.js -------------------------------------------------------------------------------- /password-error-animation/dist/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prabhurohiths/Web-Projects/HEAD/password-error-animation/dist/style.css -------------------------------------------------------------------------------- /password-error-animation/src/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prabhurohiths/Web-Projects/HEAD/password-error-animation/src/index.html -------------------------------------------------------------------------------- /password-error-animation/src/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prabhurohiths/Web-Projects/HEAD/password-error-animation/src/script.js -------------------------------------------------------------------------------- /password-error-animation/src/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prabhurohiths/Web-Projects/HEAD/password-error-animation/src/style.css -------------------------------------------------------------------------------- /random-image-generator/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prabhurohiths/Web-Projects/HEAD/random-image-generator/index.html -------------------------------------------------------------------------------- /random-image-generator/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prabhurohiths/Web-Projects/HEAD/random-image-generator/index.js -------------------------------------------------------------------------------- /random-image-generator/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prabhurohiths/Web-Projects/HEAD/random-image-generator/style.css -------------------------------------------------------------------------------- /rotating-text/dist/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prabhurohiths/Web-Projects/HEAD/rotating-text/dist/index.html -------------------------------------------------------------------------------- /rotating-text/dist/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prabhurohiths/Web-Projects/HEAD/rotating-text/dist/script.js -------------------------------------------------------------------------------- /rotating-text/dist/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prabhurohiths/Web-Projects/HEAD/rotating-text/dist/style.css -------------------------------------------------------------------------------- /rotating-text/src/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prabhurohiths/Web-Projects/HEAD/rotating-text/src/index.html -------------------------------------------------------------------------------- /rotating-text/src/script.typescript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prabhurohiths/Web-Projects/HEAD/rotating-text/src/script.typescript -------------------------------------------------------------------------------- /rotating-text/src/style.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prabhurohiths/Web-Projects/HEAD/rotating-text/src/style.scss -------------------------------------------------------------------------------- /runner/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prabhurohiths/Web-Projects/HEAD/runner/README.md -------------------------------------------------------------------------------- /runner/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prabhurohiths/Web-Projects/HEAD/runner/index.html -------------------------------------------------------------------------------- /runner/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prabhurohiths/Web-Projects/HEAD/runner/main.js -------------------------------------------------------------------------------- /sidebar/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prabhurohiths/Web-Projects/HEAD/sidebar/index.html -------------------------------------------------------------------------------- /sidebar/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prabhurohiths/Web-Projects/HEAD/sidebar/style.css -------------------------------------------------------------------------------- /simple-css-waves-mobile-full-width/dist/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prabhurohiths/Web-Projects/HEAD/simple-css-waves-mobile-full-width/dist/index.html -------------------------------------------------------------------------------- /simple-css-waves-mobile-full-width/dist/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prabhurohiths/Web-Projects/HEAD/simple-css-waves-mobile-full-width/dist/style.css -------------------------------------------------------------------------------- /simple-css-waves-mobile-full-width/src/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prabhurohiths/Web-Projects/HEAD/simple-css-waves-mobile-full-width/src/index.html -------------------------------------------------------------------------------- /simple-css-waves-mobile-full-width/src/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prabhurohiths/Web-Projects/HEAD/simple-css-waves-mobile-full-width/src/style.css -------------------------------------------------------------------------------- /simple-todo/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prabhurohiths/Web-Projects/HEAD/simple-todo/index.html -------------------------------------------------------------------------------- /text-morph/dist/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prabhurohiths/Web-Projects/HEAD/text-morph/dist/index.html -------------------------------------------------------------------------------- /text-morph/dist/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prabhurohiths/Web-Projects/HEAD/text-morph/dist/script.js -------------------------------------------------------------------------------- /text-morph/dist/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prabhurohiths/Web-Projects/HEAD/text-morph/dist/style.css -------------------------------------------------------------------------------- /text-morph/src/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prabhurohiths/Web-Projects/HEAD/text-morph/src/index.html -------------------------------------------------------------------------------- /text-morph/src/script.babel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prabhurohiths/Web-Projects/HEAD/text-morph/src/script.babel -------------------------------------------------------------------------------- /text-morph/src/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prabhurohiths/Web-Projects/HEAD/text-morph/src/style.css -------------------------------------------------------------------------------- /text-slider-with-typing-animation-in-pure-css/dist/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prabhurohiths/Web-Projects/HEAD/text-slider-with-typing-animation-in-pure-css/dist/index.html -------------------------------------------------------------------------------- /text-slider-with-typing-animation-in-pure-css/dist/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prabhurohiths/Web-Projects/HEAD/text-slider-with-typing-animation-in-pure-css/dist/style.css -------------------------------------------------------------------------------- /text-slider-with-typing-animation-in-pure-css/src/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prabhurohiths/Web-Projects/HEAD/text-slider-with-typing-animation-in-pure-css/src/index.html -------------------------------------------------------------------------------- /text-slider-with-typing-animation-in-pure-css/src/style.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prabhurohiths/Web-Projects/HEAD/text-slider-with-typing-animation-in-pure-css/src/style.scss -------------------------------------------------------------------------------- /text-utilities/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prabhurohiths/Web-Projects/HEAD/text-utilities/.gitignore -------------------------------------------------------------------------------- /text-utilities/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prabhurohiths/Web-Projects/HEAD/text-utilities/README.md -------------------------------------------------------------------------------- /text-utilities/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prabhurohiths/Web-Projects/HEAD/text-utilities/package-lock.json -------------------------------------------------------------------------------- /text-utilities/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prabhurohiths/Web-Projects/HEAD/text-utilities/package.json -------------------------------------------------------------------------------- /text-utilities/public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prabhurohiths/Web-Projects/HEAD/text-utilities/public/index.html -------------------------------------------------------------------------------- /text-utilities/public/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prabhurohiths/Web-Projects/HEAD/text-utilities/public/manifest.json -------------------------------------------------------------------------------- /text-utilities/public/robots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prabhurohiths/Web-Projects/HEAD/text-utilities/public/robots.txt -------------------------------------------------------------------------------- /text-utilities/src/App.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prabhurohiths/Web-Projects/HEAD/text-utilities/src/App.css -------------------------------------------------------------------------------- /text-utilities/src/App.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prabhurohiths/Web-Projects/HEAD/text-utilities/src/App.js -------------------------------------------------------------------------------- /text-utilities/src/App.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prabhurohiths/Web-Projects/HEAD/text-utilities/src/App.test.js -------------------------------------------------------------------------------- /text-utilities/src/components/Navbar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prabhurohiths/Web-Projects/HEAD/text-utilities/src/components/Navbar.js -------------------------------------------------------------------------------- /text-utilities/src/components/TextForm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prabhurohiths/Web-Projects/HEAD/text-utilities/src/components/TextForm.js -------------------------------------------------------------------------------- /text-utilities/src/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prabhurohiths/Web-Projects/HEAD/text-utilities/src/index.css -------------------------------------------------------------------------------- /text-utilities/src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prabhurohiths/Web-Projects/HEAD/text-utilities/src/index.js -------------------------------------------------------------------------------- /text-utilities/src/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prabhurohiths/Web-Projects/HEAD/text-utilities/src/logo.svg -------------------------------------------------------------------------------- /text-utilities/src/reportWebVitals.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prabhurohiths/Web-Projects/HEAD/text-utilities/src/reportWebVitals.js -------------------------------------------------------------------------------- /text-utilities/src/setupTests.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prabhurohiths/Web-Projects/HEAD/text-utilities/src/setupTests.js -------------------------------------------------------------------------------- /typography-animation/dist/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prabhurohiths/Web-Projects/HEAD/typography-animation/dist/index.html -------------------------------------------------------------------------------- /typography-animation/dist/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prabhurohiths/Web-Projects/HEAD/typography-animation/dist/script.js -------------------------------------------------------------------------------- /typography-animation/dist/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prabhurohiths/Web-Projects/HEAD/typography-animation/dist/style.css -------------------------------------------------------------------------------- /typography-animation/src/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prabhurohiths/Web-Projects/HEAD/typography-animation/src/index.html -------------------------------------------------------------------------------- /typography-animation/src/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prabhurohiths/Web-Projects/HEAD/typography-animation/src/script.js -------------------------------------------------------------------------------- /typography-animation/src/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prabhurohiths/Web-Projects/HEAD/typography-animation/src/style.css -------------------------------------------------------------------------------- /weather-app-design/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prabhurohiths/Web-Projects/HEAD/weather-app-design/README.md -------------------------------------------------------------------------------- /weather-app-design/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prabhurohiths/Web-Projects/HEAD/weather-app-design/index.html -------------------------------------------------------------------------------- /weather-app-design/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prabhurohiths/Web-Projects/HEAD/weather-app-design/style.css -------------------------------------------------------------------------------- /windows-98-design/dist/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prabhurohiths/Web-Projects/HEAD/windows-98-design/dist/index.html -------------------------------------------------------------------------------- /windows-98-design/dist/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prabhurohiths/Web-Projects/HEAD/windows-98-design/dist/style.css -------------------------------------------------------------------------------- /windows-98-design/src/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prabhurohiths/Web-Projects/HEAD/windows-98-design/src/index.html -------------------------------------------------------------------------------- /windows-98-design/src/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prabhurohiths/Web-Projects/HEAD/windows-98-design/src/style.css --------------------------------------------------------------------------------