├── Home.css ├── Login.css ├── Login.js ├── README.md ├── ScreenShots ├── is1.JPG ├── is2.JPG ├── is3.JPG ├── is4.JPG └── is5.JPG ├── home.php ├── jagran_logo1.jpg ├── login.php ├── practice.css ├── practice.php └── usertable.sql /Home.css: -------------------------------------------------------------------------------- 1 | body 2 | { 3 | background-image: url("https://www.tokkoro.com/picsup/3029533-coffee_color_cup-of-coffee_drink_fabric_notebook_notepad_office_paper_pattern_pen_placemat_table_textile_texture_work_workplace.jpg"); 4 | background-repeat: no-repeat; 5 | background-size: cover; 6 | } 7 | 8 | .background 9 | { 10 | max-width:700px; 11 | padding: 20px; 12 | position: relative; 13 | margin: 20px auto; 14 | background: rgba(255,255,255,0.8); 15 | font-family: Quicksand; 16 | } 17 | 18 | #center 19 | { 20 | text-align: center; 21 | } 22 | 23 | .ip 24 | { 25 | width: 400px; 26 | border:2px solid #19bf7d; 27 | outline:none; 28 | background:none; 29 | border-radius: 50px; 30 | padding: 3px 7px; 31 | font-size: 20px; 32 | height:40px; 33 | max-width: 90%; 34 | position: relative; 35 | margin:auto; 36 | } 37 | 38 | .button 39 | { 40 | border:none; 41 | outline:none; 42 | background: #19bf7d; 43 | font-size: 20px; 44 | font-aline:center; 45 | color:white; 46 | width: 40%; 47 | height: 50px; 48 | text-shadow: 2px 2px #000000; 49 | border-radius: 50px; 50 | } 51 | 52 | ::-webkit-scrollbar { 53 | display: none; 54 | } 55 | -------------------------------------------------------------------------------- /Login.css: -------------------------------------------------------------------------------- 1 | body 2 | { 3 | background-image: url("https://www.tokkoro.com/picsup/3029533-coffee_color_cup-of-coffee_drink_fabric_notebook_notepad_office_paper_pattern_pen_placemat_table_textile_texture_work_workplace.jpg"); 4 | background-size: cover; 5 | background-repeat: no-repeat; 6 | } 7 | .form 8 | { 9 | line-height: 4; 10 | text-align: center; 11 | /*float: left; 12 | width: 50%; 13 | height:500px;*/ 14 | font-family: Quicksand; 15 | font-size: 20px; 16 | margin-top: 50px; 17 | } 18 | .form h3 19 | { 20 | margin: 0; 21 | height: 75px; 22 | } 23 | .input 24 | { 25 | border:2px solid #19bf7d; 26 | outline:none; 27 | background:none; 28 | border-radius: 50px; 29 | padding: 3px 7px; 30 | font-size: 20px; 31 | height:40px; 32 | width: 280px; 33 | max-width: 90%; 34 | } 35 | .button 36 | { 37 | border:none; 38 | outline:none; 39 | background: #19bf7d; 40 | font-size: 20px; 41 | font-aline:center; 42 | color:white; 43 | width: 40%; 44 | height: 50px; 45 | text-shadow: 2px 2px #000000; 46 | border-radius: 50px; 47 | } 48 | .box 49 | { 50 | background: rgba(255,255,255,0.8); 51 | width: 30%; 52 | position: relative; 53 | margin: auto; 54 | border-radius: 13%; 55 | } 56 | .social-container a 57 | { 58 | border:1px solid black; 59 | border-radius: 50%; 60 | justify-content: center; 61 | display: inline-flex; 62 | margin: 0 7px; 63 | height: 40px; 64 | width: 40px; 65 | align-items: center; 66 | } 67 | 68 | a:link,a:visited 69 | { 70 | color: black; 71 | text-decoration:none; 72 | } 73 | 74 | .reg 75 | { 76 | display: none; 77 | } -------------------------------------------------------------------------------- /Login.js: -------------------------------------------------------------------------------- 1 | $(document).ready(function(){ 2 | $('#oksignup').click(function(){ 3 | $('#login').addClass("reg"); 4 | $('#signup').removeClass("reg"); 5 | }); 6 | $('#oklogin').click(function(){ 7 | $('#signup').addClass("reg"); 8 | $('#login').removeClass("reg"); 9 | }); 10 | }); -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # Web-Development-Project 2 | The project is a college prediction system with a login page and predictor system. The project works on HTML, CSS, JavaScript, PHP, MySQL on Apache server using XAMPP. 3 | -------------------------------------------------------------------------------- /ScreenShots/is1.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rishim9816/Web-Development-Project/878caacac4a48fd4b991c77715537523bcda8069/ScreenShots/is1.JPG -------------------------------------------------------------------------------- /ScreenShots/is2.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rishim9816/Web-Development-Project/878caacac4a48fd4b991c77715537523bcda8069/ScreenShots/is2.JPG -------------------------------------------------------------------------------- /ScreenShots/is3.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rishim9816/Web-Development-Project/878caacac4a48fd4b991c77715537523bcda8069/ScreenShots/is3.JPG -------------------------------------------------------------------------------- /ScreenShots/is4.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rishim9816/Web-Development-Project/878caacac4a48fd4b991c77715537523bcda8069/ScreenShots/is4.JPG -------------------------------------------------------------------------------- /ScreenShots/is5.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rishim9816/Web-Development-Project/878caacac4a48fd4b991c77715537523bcda8069/ScreenShots/is5.JPG -------------------------------------------------------------------------------- /home.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 |
5 | 6 | 7 | 8 | 9 | 10 |Research shows that there is only half as much variation in student achievement between schools as there is among classrooms in the same school. If you want your child to get the best education possible, it is actually more important to get him assigned to a great teacher than to a great school.
38 |