├── 3d-boxes-background ├── index.html ├── script.js └── style.css ├── animated-countdown ├── index.html ├── script.js └── style.css ├── animated-navigation ├── index.html ├── script.js └── style.css ├── auto-text-effect ├── index.html ├── script.js └── style.css ├── background-slider ├── index.html ├── script.js └── style.css ├── blurry-loading ├── index.html ├── script.js └── style.css ├── content-placeholder ├── index.html ├── script.js └── style.css ├── custom-range-slider ├── index.html ├── script.js └── style.css ├── dad-jokes ├── index.html ├── script.js └── style.css ├── double-click-heart ├── index.html ├── script.js └── style.css ├── double-vertical-slider ├── index.html ├── script.js └── style.css ├── drag-n-drop ├── index.html ├── script.js └── style.css ├── drawing-app ├── index.html ├── script.js └── style.css ├── drink-water ├── index.html ├── script.js └── style.css ├── event-keycodes ├── index.html ├── script.js └── style.css ├── expanding-cards ├── index.html └── style.css ├── faq-collapse ├── index.html ├── script.js ├── style.css └── v2 │ ├── index.html │ ├── script.js │ └── style.css ├── feedback-ui-design ├── index.html ├── script.js └── style.css ├── fixed-navbar ├── index.html ├── script.js └── style.css ├── form-input-wave ├── index.html ├── script.js └── style.css ├── github-profile ├── index.html ├── script.js └── style.css ├── good-cheap-fast ├── index.html ├── script.js ├── style.css └── v1 │ ├── index.html │ ├── script.js │ └── style.css ├── hidden-search ├── index.html ├── script.js └── style.css ├── hoverboard ├── index.html ├── script.js └── style.css ├── image-carousel ├── v1 │ ├── index.html │ ├── script.js │ └── style.css └── v2 │ ├── index.html │ ├── script.js │ └── style.css ├── incrementing-counter ├── index.html ├── script.js └── style.css ├── insect-catch-game ├── index.html ├── script.js └── style.css ├── kinetic-loader ├── index.html ├── script.js └── style.css ├── live-user-filter ├── index.html ├── script.js └── style.css ├── mobile-tab-navigation ├── index.html ├── script.js └── style.css ├── movie-app ├── index.html ├── script.js └── style.css ├── netflix-navigation ├── index.html ├── script.js └── style.css ├── note-app ├── index.html ├── script.js └── style.css ├── password-generator ├── index.html ├── script.js └── style.css ├── password-strength-background ├── index.html ├── script.js └── style.css ├── pokedex ├── index.html ├── script.js └── style.css ├── progress-steps ├── index.html ├── script.js └── style.css ├── quiz-app ├── index.html ├── script.js └── style.css ├── random-choice-picker ├── index.html ├── script.js └── style.css ├── random-image-feed ├── index.html ├── script.js └── style.css ├── readme.md ├── ripple-effect ├── index.html ├── script.js └── style.css ├── rotating-nav-animation ├── index.html ├── script.js └── style.css ├── scroll-animation ├── index.html ├── script.js └── style.css ├── sound-board ├── applause.mp3 ├── boo.mp3 ├── gasp.mp3 ├── index.html ├── script.js ├── style.css ├── tada.mp3 ├── victory.mp3 └── wrong.mp3 ├── split-landing-page ├── index.html ├── ps.jpg ├── script.js ├── style.css └── xbox.jpg ├── testimonial-box-switcher ├── index.html ├── script.js └── style.css ├── theme-clock ├── index.html ├── script.js └── style.css ├── to-do-list ├── index.html ├── script.js └── style.css ├── toast-notification ├── index.html ├── script.js └── style.css └── verify-account-ui ├── index.html ├── script.js └── style.css /3d-boxes-background/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 |
4 | 5 | 6 | 7 | 8 | 9 | 10 |Select how many glasses of water that you have drank
27 | 28 |Press any key to get the Continue
19 | 20 |Key
${e.key}`; 9 | keycode.innerHTML = `Key Code
${e.keyCode}`; 10 | eventcode.innerHTML = `Event Code
${e.code}`;; 11 | hello.style.display = "none"; 12 | key.style.display = "block"; 13 | keycode.style.display = "block"; 14 | eventcode.style.display = "block"; 15 | 16 | }); 17 | -------------------------------------------------------------------------------- /event-keycodes/style.css: -------------------------------------------------------------------------------- 1 | body{ 2 | background-color: rgb(235, 228, 228); 3 | } 4 | #app{ 5 | position: absolute; 6 | top: 50%; 7 | left: 50%; 8 | transform: translate(-50%, -50%); 9 | } 10 | .header{ 11 | text-align: center; 12 | } 13 | #output{ 14 | display: flex; 15 | flex-direction: row; 16 | } 17 | #key, #keycode, #eventcode{ 18 | background-color: whitesmoke; 19 | box-shadow: 0 2px 4px rgba(0, 0, 0, .1), 0 8px 16px rgba(0, 0, 0, .1); 20 | margin: 2vh; 21 | padding: 2vh; 22 | display: none; 23 | width: 25vh; 24 | text-align: center; 25 | font-size: 6vh; 26 | font-family: Verdana, Geneva, Tahoma, sans-serif; 27 | } 28 | 29 | p{ 30 | font-size: 6vh; 31 | } 32 | -------------------------------------------------------------------------------- /expanding-cards/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 |We'll use your feedback to improve our customer support
32 | ` 33 | }) 34 | -------------------------------------------------------------------------------- /feedback-ui-design/style.css: -------------------------------------------------------------------------------- 1 | @import url('https://fonts.googleapis.com/css?family=Montserrat&display=swap'); 2 | 3 | * { 4 | box-sizing: border-box; 5 | } 6 | 7 | body { 8 | background-color: rgb(14, 14, 31); 9 | font-family: 'Montserrat', sans-serif; 10 | display: flex; 11 | align-items: center; 12 | justify-content: center; 13 | height: 100vh; 14 | overflow: hidden; 15 | margin: 0; 16 | } 17 | 18 | .panel-container { 19 | background-color: #fff; 20 | box-shadow: 0 0 10px rgba(0, 0, 0, 0.3); 21 | border-radius: 4px; 22 | font-size: 90%; 23 | display: flex; 24 | flex-direction: column; 25 | justify-content: center; 26 | align-items: center; 27 | text-align: center; 28 | padding: 30px; 29 | max-width: 400px; 30 | } 31 | 32 | .panel-container strong { 33 | line-height: 20px; 34 | } 35 | 36 | .ratings-container { 37 | display: flex; 38 | margin: 20px 0; 39 | } 40 | 41 | .rating { 42 | flex: 1; 43 | cursor: pointer; 44 | padding: 20px; 45 | margin: 10px 5px; 46 | } 47 | 48 | .rating:hover, 49 | .rating.active { 50 | border-radius: 4px; 51 | box-shadow: 0 0 10px rgba(0, 0, 0, 0.1); 52 | } 53 | 54 | .rating img { 55 | width: 40px; 56 | } 57 | 58 | .rating small { 59 | color: #555; 60 | display: inline-block; 61 | margin: 10px 0 0; 62 | } 63 | 64 | .rating:hover small, 65 | .rating.active small { 66 | color: #111; 67 | } 68 | 69 | .btn { 70 | background-color: #302d2b; 71 | color: #fff; 72 | border: 0; 73 | border-radius: 4px; 74 | padding: 12px 30px; 75 | cursor: pointer; 76 | } 77 | 78 | .btn:focus { 79 | outline: 0; 80 | } 81 | 82 | .btn:active { 83 | transform: scale(0.98); 84 | } 85 | 86 | .fa-heart { 87 | color: red; 88 | font-size: 30px; 89 | margin-bottom: 10px; 90 | } 91 | -------------------------------------------------------------------------------- /fixed-navbar/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 |
38 | Nature is the best remedy for all problems over the word. Nature is an inspirational figure for various writers, novelists. We often heard that spending time in nature can freshen up our mind and body. Nature is the reason for living entities are surviving on earth. Nature is beneficial in all ways.
39 |
40 | The green forests, mountains, glaciers, are the striking scenic beauties of nature. On vacations, people move to a hilly, beach or desert place. Because being with nature freshen up minds from the chaos of the world.
41 |
42 | Nature has also emotions. But humans don’t understand it. With the burden of a growing population, nature is degrading its quality. Population means more and more numbers of concrete buildings and it results in cutting down forests
43 |
47 | Nature is boon to humankind. Nature consists of various natural resources i.e. Sunrays, air, water, soil, etc. which are necessary for humankind. There are various biotic and abiotic factors that together called nature. Biotic factors consist of forests and animals and abiotic factors are physical elements.
48 |
49 | All those elements which are naturally found on earth and which are untouched by human activities are classified as natural resources. Fossils, Metals, Natural crude oil, etc. which are helpful for the world are also part of natural resources.
50 |
51 | Nature is essential for the survival of humankind. Bio-diversity is an integral part of the natural system. Nature feeds several terrestrial and aquatic creatures. Preservation of natural resources is crucial for all humans.
52 |
53 | Forest, sunrays, mountains all are important. Every element is carrying a special geological fact. What if there were no stones and pebbles? Then the fire was not invented. Yes, it is true natural elements are the root cause for developing a civilization
54 |
Don't have an account? Register
29 |22 | | 23 | |
27 | | 28 | |
32 | | 33 | |
Lorem ipsum dolor sit amet consectetur adipisicing elit. Accusantium quia in ratione dolores cupiditate, maxime aliquid impedit dolorem nam dolor omnis atque fuga labore modi veritatis porro laborum minus, illo, maiores recusandae cumque ipsa quos. Tenetur, consequuntur mollitia labore pariatur sunt quia harum aut. Eum maxime dolorem provident natus veritatis molestiae cumque quod voluptates ab non, tempore cupiditate? Voluptatem, molestias culpa. Corrupti, laudantium iure aliquam rerum sint nam quas dolor dignissimos in error placeat quae temporibus minus optio eum soluta cupiditate! Cupiditate saepe voluptates laudantium. Ducimus consequuntur perferendis consequatur nobis exercitationem molestias fugiat commodi omnis. Asperiores quia tenetur nemo ipsa.
27 | 28 |Lorem, ipsum dolor sit amet consectetur adipisicing elit. Sit libero deleniti rerum quo, incidunt vel consequatur culpa ullam. Magnam facere earum unde harum. Ea culpa veritatis magnam at aliquid. Perferendis totam placeat molestias illo laudantium? Minus id minima doloribus dolorum fugit deserunt qui vero voluptas, ut quia cum amet temporibus veniam ad ea ab perspiciatis, enim accusamus asperiores explicabo provident. Voluptates sint, neque fuga cum illum, tempore autem maxime similique laborum odio, magnam esse. Aperiam?
31 |