├── Account Create ├── Account.css └── Account.html ├── Button ├── Button │ ├── index.html │ └── style.css ├── index.html └── style.css ├── Calendar └── calendar.html ├── Car Game ├── Login_Form │ ├── form.css │ └── form.html └── cargame.html ├── Facebook Login Page ├── page.css └── page.html ├── Full page navigation ├── index.html └── style.css ├── Hospital Registration Form └── hospital _registration_form.html ├── Loading ├── index.html ├── index.js └── style.css ├── Login Page (with Header) ├── index.html └── style.css ├── Login Page Logo ├── index.html ├── index.js └── style.css ├── Login Page Max ├── index.html └── style.css ├── Login Page New ├── index.html └── style.css ├── Login Page like ├── index.html └── style.css ├── Login page Basic ├── index.html └── style.css ├── Login page home ├── inex.html └── style.css ├── Login page ├── index.html └── style.css ├── Loginform └── index.html ├── Magic Sidebar Menu ├── index.html └── style.css ├── Modern Login ├── index.html ├── script.js └── style.css ├── Profile Stack ├── index.html ├── index.js ├── style.css └── xyz.ico ├── Quiz game ├── Quiz.css └── Quiz.html ├── Registrtion form ├── Login_Design │ ├── design.css │ └── design.html ├── Registration Form │ ├── index.css │ └── index.html └── form.html ├── Responsive Cake Website ├── about-img.jpeg ├── banner-1.jpeg ├── banner-2.jpeg ├── banner-3.jpeg ├── blog-1.jpeg ├── blog-2.jpeg ├── blog-3.jpeg ├── blog-4.jpeg ├── blog-5.jpeg ├── blog-6.jpeg ├── cat-1.jpeg ├── cat-2.jpeg ├── cat-3.jpeg ├── cat-4.jpeg ├── cat-5.jpeg ├── front-view-chocolate-cake-stand.jpeg ├── gallery-img-1.jpeg ├── gallery-img-2.jpeg ├── gallery-img-3.jpeg ├── gallery-img-4.jpeg ├── gallery-img-5.jpeg ├── gallery-img-6.jpeg ├── h1.png ├── h2.png ├── h3.png ├── heading-bg.jpeg ├── home-bg1.jpeg ├── home-img-1.png ├── home-img-2.png ├── home-img-3.png ├── home12.png ├── home22.png ├── icons-1.png ├── icons-2.png ├── icons-3.png ├── index.html ├── main.js ├── payment.png ├── pic-1.png ├── pic-2.png ├── pic-3.png ├── pic-4.png ├── pic-5.png ├── pic-6.png ├── product-1.jpeg ├── product-2.jpeg ├── product-3.jpeg ├── product-4.jpeg ├── product-5.jpeg ├── product-6.jpeg ├── product-7.jpeg ├── product-8.jpeg └── style.css ├── Responsive Pizza Website ├── Chrome page │ └── chrome_page.html ├── about-img.png ├── dish-1.png ├── dish-2.png ├── dish-3.png ├── dish-4.png ├── dish-5.png ├── dish-6.png ├── h1.png ├── home-img-2.png ├── home-img-3.png ├── index.html ├── loader.gif ├── main.js ├── menu-1.jpeg ├── menu-2.jpeg ├── menu-3.jpeg ├── menu-4.jpeg ├── menu-5.jpeg ├── menu-6.jpeg ├── menu-7.jpeg ├── menu-8.jpeg ├── menu-9.jpeg ├── pic-1.png ├── pic-2 (1).png ├── pic-2.png ├── pic-3.png ├── pic-4.png └── style.css ├── Restaurant Landing page ├── index.css └── index.html ├── RgBa color picker └── index.html ├── Rock Paper Scissor ├── paper.css └── paper.html ├── Sign Up Page ├── index.html └── style.css ├── SmartWatch ├── Watch.css ├── Watch.html └── Watch.js ├── UI Responsive Nav Bar ├── index.html ├── index.js └── style.css ├── Webside ├── index.html └── style.css ├── Website ├── index.css └── index.html ├── html ├── Practice │ ├── bootstrap-resume.html │ └── xyz.ico ├── const.js ├── edit.html ├── hg.css ├── hg.html ├── hg.js ├── index.html ├── index.js ├── pdf.css ├── pdf.html └── pdf.js └── login form ├── index.html └── style.css /Account Create/Account.css: -------------------------------------------------------------------------------- 1 | body { 2 | 3 | background:DarkSlateGrey; 4 | } 5 | .item1{ 6 | height: 100vh; 7 | display: flex; 8 | justify-content: center; 9 | align-items: center; 10 | font-family:"Times New Roman",serif; 11 | 12 | } 13 | .login-form { 14 | background-color:white; 15 | height: 550px; 16 | width: 320px; 17 | box-shadow: 2px 2px 10px; 18 | border-radius: 20px; 19 | text-align: center; 20 | 21 | 22 | 23 | } 24 | .login-form h{ 25 | background: rgb(11,11,138); 26 | background: linear-gradient(90deg, rgba(1,1,1,10) 0%, rgba(23,0,130,30) 100%); 27 | height: 50px; 28 | border-top-left-radius: 20px; 29 | border-top-right-radius: 20px; 30 | display: flex; 31 | justify-content: center; 32 | align-items: center; 33 | color: white; 34 | font-weight: 650; 35 | margin-top:-1px; 36 | } 37 | .email { 38 | margin-top:50px; 39 | } 40 | .common { 41 | margin-top:-50px; 42 | border-radius:20px; 43 | height: 40px; 44 | width: 240px; 45 | border-radius: 20px; 46 | outline: none; 47 | border: 1px solid rgb(216, 212, 212); 48 | padding-left: 18px; 49 | margin-bottom: 17px; 50 | background-color: white; 51 | input[type="text"], input[type="email"] 52 | 53 | } 54 | #profile{ 55 | margin-top:-1px; 56 | margin-left:-35px; 57 | } 58 | #day{ 59 | height:20px; 60 | width:30px; 61 | margin-left:-100px; 62 | } 63 | #date{ 64 | margin-left:100px; 65 | width:110px; 66 | } 67 | #send{ 68 | color:black; 69 | background:#fff; 70 | border-radius:5px; 71 | height:30px; 72 | height:; 73 | } -------------------------------------------------------------------------------- /Account Create/Account.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Page Title 5 | 6 | 7 | 8 | 9 |
10 |
11 |

12 |