description
stringlengths
122
209
code
stringlengths
266
660
A black button with large Verdana text, using none layout, aligned to the left, with 4px 4px 10px rgba(0, 0, 0, 0.5), fade-in, and a :hover { box-shadow: 0 0 10px rgba(0, 0, 0, 0.5); }.
<button style='background-color: cyan; font-size: 30px; font-family: Georgia; display: grid; text-align: justify; box-shadow: none; animation: fade-in 2s; transition: transform 0.2s ease-in-out; :hover { box-shadow: 0 0 10px rgba(0, 0, 0, 0.5); }'>Click Me</button> @keyframes fade-in { from { opacity: 0; } to { opacity...
A large div with pink text, Times New Roman font, 0 4px 8px rgba(0, 0, 0, 0.2), and bounce, displayed as block with center, responsive with media queries.
<input style='color: black; font-size: 12px; font-family: Times New Roman; box-shadow: 4px 4px 10px rgba(0, 0, 0, 0.5); display: none; justify-content: space-between; animation: slide-up 2s; transition: all 0.3s ease;'>Login</input> @keyframes fade-in { from { opacity: 0; } to { opacity: 1; } } @media (min-width: 600px...
A footer containing a blue button with linear-gradient(to bottom, blue, green) background that says 'Search', followed by a large text description, with spin.
<p><button style='background-color: radial-gradient(circle, pink, purple); font-size: 18px; animation: bounce 2s;'>Hello World</button><p style='font-size: 18px;'>login</p></p> @keyframes bounce { 0%, 20%, 50%, 80%, 100% { transform: translateY(0); } 40% { transform: translateY(-30px); } 60% { transform: translateY(-15...
A h1 containing a blue button with linear-gradient(to bottom, blue, green) background that says 'Enter Your Name', followed by a large text description, with slide-up.
<header><button style='background-color: linear-gradient(to right, red, yellow); font-size: 24px; animation: fade-in 2s;'>Hello World</button><p style='font-size: 24px;'>contact us</p></header> @keyframes slide-up { from { transform: translateY(100%); } to { transform: translateY(0); } } transition: background-color 0....
A green button with large Tahoma text, using block layout, aligned to the left, with 4px 4px 10px rgba(0, 0, 0, 0.5), fade-in, and a :hover { background-color: #555; color: white; }.
<button style='background-color: green; font-size: 14px; font-family: Courier New; display: flex; text-align: center; box-shadow: 4px 4px 10px rgba(0, 0, 0, 0.5); animation: spin 2s; transition: all 0.3s ease; :hover { transform: scale(1.1); }'>Enter Your Name</button> @keyframes spin { from { transform: rotate(0deg); ...
A yellow box with double border, radial-gradient(circle, pink, purple) background, large text centered inside, using none layout, with :hover { background-color: #555; color: white; } and spin.
<div style='background: radial-gradient(circle, pink, purple); border: 2px ridge purple; font-size: 18px; text-align: center; display: grid; justify-content: space-between; align-items: center; animation: bounce 2s; transition: transform 0.2s ease-in-out; :hover { transform: scale(1.1); }'>Search</div> @keyframes spin ...
A input containing a list of options with red text, each inside a dashed box, with none, spin, and @media (min-width: 1200px) { font-size: 18px; }.
<input><ul style='box-shadow: none; animation: slide-up 1.5s;'><li style='color: white; border: 1px double pink;'>Submit</li><li style='color: red; border: 1px groove cyan;'>Contact Us</li><li style='color: blue; border: 1px dotted blue;'>Choose Option</li><li style='color: green; border: 1px double pink;'>Contact Us</...
A green box with double border, linear-gradient(to bottom, blue, green) background, medium text centered inside, using none layout, with :hover { box-shadow: 0 0 10px rgba(0, 0, 0, 0.5); } and bounce.
<div style='background: linear-gradient(to right, red, yellow); border: 2px solid purple; font-size: 22px; text-align: center; display: flex; justify-content: center; align-items: center; animation: bounce 2s; transition: background-color 0.4s ease; :hover { background-color: #555; color: white; }'>Enter Your Name</div...
A medium h2 with gray text, Tahoma font, 4px 4px 10px rgba(0, 0, 0, 0.5), and spin, displayed as flex with center, responsive with media queries.
<span style='color: green; font-size: 18px; font-family: Georgia; box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); display: block; justify-content: flex-end; animation: bounce 2s; transition: background-color 0.4s ease;'>Login</span> @keyframes bounce { 0%, 20%, 50%, 80%, 100% { transform: translateY(0); } 40% { transform: tr...
A small h2 with cyan text, Georgia font, 0 4px 8px rgba(0, 0, 0, 0.2), and slide-up, displayed as grid with flex-end, responsive with media queries.
<p style='color: red; font-size: 12px; font-family: Tahoma; box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.3); display: flex; justify-content: flex-end; animation: bounce 2s; transition: all 0.3s ease;'>Login</p> @keyframes slide-up { from { transform: translateY(100%); } to { transform: translateY(0); } } @media (min-width: ...
A pink box with ridge border, linear-gradient(to bottom, blue, green) background, small text centered inside, using flex layout, with :hover { background-color: #555; color: white; } and spin.
<div style='background: linear-gradient(to right, red, yellow); border: 2px groove black; font-size: 16px; text-align: center; display: grid; justify-content: flex-end; align-items: center; animation: spin 2s; transition: background-color 0.4s ease; :hover { background-color: #555; color: white; }'>Sign Up</div> @keyfr...
A medium p with pink text, Verdana font, 4px 4px 10px rgba(0, 0, 0, 0.5), and bounce, displayed as flex with space-between, responsive with media queries.
<div style='color: gray; font-size: 28px; font-family: Verdana; box-shadow: none; display: flex; justify-content: space-between; animation: spin 2s; transition: background-color 0.4s ease;'>Click Me</div> @keyframes slide-up { from { transform: translateY(100%); } to { transform: translateY(0); } } @media (max-width: 6...
A h2 containing a list of options with black text, each inside a ridge box, with none, spin, and @media (max-width: 600px) { font-size: 14px; }.
<p><ul style='box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); animation: fade-in 1.5s;'><li style='color: blue; border: 1px dotted blue;'>Click Me</li><li style='color: pink; border: 1px double green;'>Choose Option</li><li style='color: green; border: 1px solid green;'>Submit</li><li style='color: green; border: 1px double ...
A large textarea with pink text, Tahoma font, 0 4px 8px rgba(0, 0, 0, 0.2), and spin, displayed as none with flex-end, responsive with media queries.
<h1 style='color: pink; font-size: 14px; font-family: Georgia; box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.3); display: flex; justify-content: flex-end; animation: slide-up 2s; transition: transform 0.2s ease-in-out;'>Click Me</h1> @keyframes fade-in { from { opacity: 0; } to { opacity: 1; } } @media (min-width: 600px) and...
A button containing a white button with linear-gradient(to bottom, blue, green) background that says 'Submit', followed by a medium text description, with fade-in.
<p><button style='background-color: linear-gradient(to right, red, yellow); font-size: 12px; animation: bounce 2s;'>Click Me</button><p style='font-size: 12px;'>sign up</p></p> @keyframes spin { from { transform: rotate(0deg); } to { transform: rotate(360deg); } } transition: all 0.3s ease;
A select containing a pink button with radial-gradient(circle, pink, purple) background that says 'Search', followed by a medium text description, with fade-in.
<header><button style='background-color: linear-gradient(to bottom, blue, green); font-size: 24px; animation: fade-in 2s;'>Click Me</button><p style='font-size: 24px;'>login</p></header> @keyframes bounce { 0%, 20%, 50%, 80%, 100% { transform: translateY(0); } 40% { transform: translateY(-30px); } 60% { transform: tran...
A responsive select with a grid layout using template 'repeat(3, 1fr)', containing items with medium text and :hover { transform: scale(1.1); }.
<nav style='display: grid; grid-template-columns: 1fr 2fr; gap: 10px; :hover { transform: scale(1.1); }'><li style='color: gray; border: 1px dotted pink;'>Login</li><li style='color: purple; border: 1px groove yellow;'>Submit</li><li style='color: green; border: 1px dashed yellow;'>Enter Your Name</li><li style='color:...
A h2 containing a purple button with linear-gradient(to right, red, yellow) background that says 'Enter Your Name', followed by a large text description, with fade-in.
<h3><button style='background-color: linear-gradient(to right, red, yellow); font-size: 18px; animation: fade-in 2s;'>Enter Your Name</button><p style='font-size: 18px;'>hello world</p></h3> @keyframes spin { from { transform: rotate(0deg); } to { transform: rotate(360deg); } } transition: background-color 0.4s ease;
A responsive h3 with a grid layout using template '1fr 2fr', containing items with large text and :hover { transform: scale(1.1); }.
<nav style='display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; :hover { background-color: #555; color: white; }'><li style='color: pink; border: 1px solid green;'>Sign Up</li><li style='color: blue; border: 1px dotted gray;'>Hello World</li><li style='color: orange; border: 1px groove gray;'>Search</li><l...
A footer containing a list of options with gray text, each inside a solid box, with 0 4px 8px rgba(0, 0, 0, 0.2), slide-up, and @media (min-width: 600px) and (max-width: 1200px) { font-size: 16px; }.
<span><ul style='box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); animation: slide-up 1.5s;'><li style='color: black; border: 1px dotted orange;'>Contact Us</li><li style='color: purple; border: 1px groove blue;'>Submit</li><li style='color: green; border: 1px groove pink;'>Enter Your Name</li><li style='color: gray; border: ...
A small header with pink text, Georgia font, 2px 2px 5px rgba(0, 0, 0, 0.3), and fade-in, displayed as block with flex-end, responsive with media queries.
<input style='color: green; font-size: 16px; font-family: Georgia; box-shadow: 4px 4px 10px rgba(0, 0, 0, 0.5); display: inline-block; justify-content: space-around; animation: bounce 2s; transition: all 0.3s ease;'>Search</input> @keyframes bounce { 0%, 20%, 50%, 80%, 100% { transform: translateY(0); } 40% { transform...
A small h2 with green text, Helvetica font, none, and bounce, displayed as none with flex-start, responsive with media queries.
<div style='color: black; font-size: 26px; font-family: Verdana; box-shadow: 4px 4px 10px rgba(0, 0, 0, 0.5); display: flex; justify-content: flex-end; animation: spin 2s; transition: transform 0.2s ease-in-out;'>Hello World</div> @keyframes fade-in { from { opacity: 0; } to { opacity: 1; } } @media (max-width: 600px) ...
A nav containing a list of options with white text, each inside a dotted box, with 4px 4px 10px rgba(0, 0, 0, 0.5), fade-in, and @media (min-width: 1200px) { font-size: 18px; }.
<div><ul style='box-shadow: none; animation: slide-up 1.5s;'><li style='color: black; border: 1px dotted purple;'>Enter Your Name</li><li style='color: cyan; border: 1px double blue;'>Search</li><li style='color: red; border: 1px ridge cyan;'>Submit</li><li style='color: cyan; border: 1px double black;'>Hello World</li...
A header containing a white button with linear-gradient(to right, red, yellow) background that says 'Contact Us', followed by a large text description, with fade-in.
<header><button style='background-color: linear-gradient(to right, red, yellow); font-size: 22px; animation: bounce 2s;'>Submit</button><p style='font-size: 22px;'>choose option</p></header> @keyframes slide-up { from { transform: translateY(100%); } to { transform: translateY(0); } } transition: all 0.3s ease;
A green box with dashed border, linear-gradient(to right, red, yellow) background, medium text centered inside, using inline-block layout, with :hover { box-shadow: 0 0 10px rgba(0, 0, 0, 0.5); } and fade-in.
<div style='background: radial-gradient(circle, pink, purple); border: 2px dashed yellow; font-size: 24px; text-align: center; display: block; justify-content: center; align-items: center; animation: spin 2s; transition: background-color 0.4s ease; :hover { transform: scale(1.1); }'>Sign Up</div> @keyframes fade-in { f...
A yellow button with medium Courier New text, using inline-block layout, aligned to the justify, with 0 4px 8px rgba(0, 0, 0, 0.2), fade-in, and a :hover { transform: scale(1.1); }.
<button style='background-color: yellow; font-size: 20px; font-family: Times New Roman; display: inline-block; text-align: center; box-shadow: 4px 4px 10px rgba(0, 0, 0, 0.5); animation: bounce 2s; transition: transform 0.2s ease-in-out; :hover { background-color: #555; color: white; }'>Sign Up</button> @keyframes fade...
A responsive input with a grid layout using template 'repeat(3, 1fr)', containing items with small text and :hover { background-color: #555; color: white; }.
<p style='display: grid; grid-template-columns: 1fr 2fr; gap: 10px; :hover { background-color: #555; color: white; }'><li style='color: purple; border: 1px groove green;'>Contact Us</li><li style='color: cyan; border: 1px ridge yellow;'>Login</li><li style='color: white; border: 1px groove red;'>Hello World</li><li sty...
A footer containing a purple button with radial-gradient(circle, pink, purple) background that says 'Login', followed by a medium text description, with spin.
<button><button style='background-color: radial-gradient(circle, pink, purple); font-size: 12px; animation: fade-in 2s;'>Sign Up</button><p style='font-size: 12px;'>hello world</p></button> @keyframes spin { from { transform: rotate(0deg); } to { transform: rotate(360deg); } } transition: all 0.3s ease;
A white box with ridge border, radial-gradient(circle, pink, purple) background, medium text centered inside, using inline-block layout, with :hover { background-color: #555; color: white; } and fade-in.
<div style='background: linear-gradient(to bottom, blue, green); border: 2px dotted yellow; font-size: 14px; text-align: center; display: inline-block; justify-content: center; align-items: center; animation: bounce 2s; transition: transform 0.2s ease-in-out; :hover { box-shadow: 0 0 10px rgba(0, 0, 0, 0.5); }'>Choose ...
A green box with double border, radial-gradient(circle, pink, purple) background, medium text centered inside, using block layout, with :hover { background-color: #555; color: white; } and bounce.
<div style='background: linear-gradient(to bottom, blue, green); border: 2px solid purple; font-size: 22px; text-align: center; display: block; justify-content: space-around; align-items: center; animation: spin 2s; transition: all 0.3s ease; :hover { box-shadow: 0 0 10px rgba(0, 0, 0, 0.5); }'>Login</div> @keyframes s...
A header containing a list of options with gray text, each inside a dotted box, with 4px 4px 10px rgba(0, 0, 0, 0.5), spin, and @media (min-width: 1200px) { font-size: 18px; }.
<button><ul style='box-shadow: none; animation: slide-up 1.5s;'><li style='color: red; border: 1px groove purple;'>Search</li><li style='color: green; border: 1px dotted blue;'>Click Me</li><li style='color: yellow; border: 1px solid green;'>Search</li><li style='color: black; border: 1px dashed black;'>Choose Option</...
A footer containing a list of options with cyan text, each inside a dotted box, with none, spin, and @media (max-width: 600px) { font-size: 14px; }.
<h2><ul style='box-shadow: 4px 4px 10px rgba(0, 0, 0, 0.5); animation: slide-up 1.5s;'><li style='color: cyan; border: 1px dotted purple;'>Search</li><li style='color: orange; border: 1px dotted gray;'>Contact Us</li><li style='color: cyan; border: 1px groove pink;'>Sign Up</li><li style='color: white; border: 1px doub...
A h2 containing a cyan button with radial-gradient(circle, pink, purple) background that says 'Enter Your Name', followed by a small text description, with fade-in.
<h3><button style='background-color: radial-gradient(circle, pink, purple); font-size: 16px; animation: bounce 2s;'>Enter Your Name</button><p style='font-size: 16px;'>contact us</p></h3> @keyframes spin { from { transform: rotate(0deg); } to { transform: rotate(360deg); } } transition: background-color 0.4s ease;
A green button with medium Georgia text, using none layout, aligned to the justify, with 4px 4px 10px rgba(0, 0, 0, 0.5), fade-in, and a :hover { transform: scale(1.1); }.
<button style='background-color: gray; font-size: 28px; font-family: Georgia; display: block; text-align: center; box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.3); animation: slide-up 2s; transition: all 0.3s ease; :hover { background-color: #555; color: white; }'>Enter Your Name</button> @keyframes spin { from { transform: ...
A green button with large Georgia text, using flex layout, aligned to the left, with 2px 2px 5px rgba(0, 0, 0, 0.3), fade-in, and a :hover { box-shadow: 0 0 10px rgba(0, 0, 0, 0.5); }.
<button style='background-color: pink; font-size: 24px; font-family: Verdana; display: block; text-align: right; box-shadow: none; animation: slide-up 2s; transition: background-color 0.4s ease; :hover { box-shadow: 0 0 10px rgba(0, 0, 0, 0.5); }'>Submit</button> @keyframes spin { from { transform: rotate(0deg); } to {...
A blue box with double border, linear-gradient(to bottom, blue, green) background, large text centered inside, using none layout, with :hover { box-shadow: 0 0 10px rgba(0, 0, 0, 0.5); } and fade-in.
<div style='background: linear-gradient(to bottom, blue, green); border: 2px dotted green; font-size: 26px; text-align: center; display: block; justify-content: flex-end; align-items: center; animation: bounce 2s; transition: background-color 0.4s ease; :hover { transform: scale(1.1); }'>Login</div> @keyframes bounce {...
A large nav with gray text, Arial font, 4px 4px 10px rgba(0, 0, 0, 0.5), and spin, displayed as grid with flex-end, responsive with media queries.
<h3 style='color: red; font-size: 14px; font-family: Arial; box-shadow: none; display: none; justify-content: flex-end; animation: bounce 2s; transition: all 0.3s ease;'>Login</h3> @keyframes bounce { 0%, 20%, 50%, 80%, 100% { transform: translateY(0); } 40% { transform: translateY(-30px); } 60% { transform: translateY...
A medium textarea with pink text, Tahoma font, 4px 4px 10px rgba(0, 0, 0, 0.5), and fade-in, displayed as block with space-between, responsive with media queries.
<input style='color: purple; font-size: 24px; font-family: Tahoma; box-shadow: none; display: block; justify-content: center; animation: bounce 2s; transition: transform 0.2s ease-in-out;'>Contact Us</input> @keyframes slide-up { from { transform: translateY(100%); } to { transform: translateY(0); } } @media (max-width...
A cyan button with small Helvetica text, using inline-block layout, aligned to the justify, with 4px 4px 10px rgba(0, 0, 0, 0.5), spin, and a :hover { box-shadow: 0 0 10px rgba(0, 0, 0, 0.5); }.
<button style='background-color: black; font-size: 12px; font-family: Helvetica; display: grid; text-align: left; box-shadow: none; animation: spin 2s; transition: background-color 0.4s ease; :hover { transform: scale(1.1); }'>Login</button> @keyframes bounce { 0%, 20%, 50%, 80%, 100% { transform: translateY(0); } 40% ...
A large p with pink text, Verdana font, 0 4px 8px rgba(0, 0, 0, 0.2), and bounce, displayed as flex with space-around, responsive with media queries.
<h2 style='color: black; font-size: 28px; font-family: Arial; box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); display: flex; justify-content: center; animation: slide-up 2s; transition: transform 0.2s ease-in-out;'>Search</h2> @keyframes slide-up { from { transform: translateY(100%); } to { transform: translateY(0); } } @med...
A button containing a purple button with radial-gradient(circle, pink, purple) background that says 'Click Me', followed by a medium text description, with spin.
<span><button style='background-color: radial-gradient(circle, pink, purple); font-size: 14px; animation: slide-up 2s;'>Search</button><p style='font-size: 14px;'>search</p></span> @keyframes bounce { 0%, 20%, 50%, 80%, 100% { transform: translateY(0); } 40% { transform: translateY(-30px); } 60% { transform: translateY...
A nav containing a list of options with red text, each inside a double box, with 0 4px 8px rgba(0, 0, 0, 0.2), bounce, and @media (min-width: 600px) and (max-width: 1200px) { font-size: 16px; }.
<select><ul style='box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.3); animation: fade-in 1.5s;'><li style='color: red; border: 1px dotted white;'>Submit</li><li style='color: blue; border: 1px double blue;'>Search</li><li style='color: red; border: 1px ridge pink;'>Submit</li><li style='color: blue; border: 1px groove white;'...
A small textarea with purple text, Arial font, 2px 2px 5px rgba(0, 0, 0, 0.3), and spin, displayed as none with flex-end, responsive with media queries.
<h2 style='color: white; font-size: 14px; font-family: Courier New; box-shadow: 4px 4px 10px rgba(0, 0, 0, 0.5); display: flex; justify-content: space-between; animation: spin 2s; transition: background-color 0.4s ease;'>Choose Option</h2> @keyframes spin { from { transform: rotate(0deg); } to { transform: rotate(360de...
A select containing a list of options with yellow text, each inside a groove box, with 2px 2px 5px rgba(0, 0, 0, 0.3), spin, and @media (max-width: 600px) { font-size: 14px; }.
<h1><ul style='box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); animation: spin 1.5s;'><li style='color: gray; border: 1px groove green;'>Hello World</li><li style='color: cyan; border: 1px dotted blue;'>Enter Your Name</li><li style='color: purple; border: 1px dashed pink;'>Contact Us</li><li style='color: black; border: 1px...
A footer containing a cyan button with linear-gradient(to right, red, yellow) background that says 'Search', followed by a small text description, with slide-up.
<input><button style='background-color: linear-gradient(to right, red, yellow); font-size: 28px; animation: slide-up 2s;'>Click Me</button><p style='font-size: 28px;'>contact us</p></input> @keyframes spin { from { transform: rotate(0deg); } to { transform: rotate(360deg); } } transition: all 0.3s ease;
A span containing a blue button with linear-gradient(to right, red, yellow) background that says 'Search', followed by a small text description, with fade-in.
<select><button style='background-color: linear-gradient(to bottom, blue, green); font-size: 22px; animation: fade-in 2s;'>Enter Your Name</button><p style='font-size: 22px;'>click me</p></select> @keyframes spin { from { transform: rotate(0deg); } to { transform: rotate(360deg); } } transition: background-color 0.4s e...
A responsive p with a grid layout using template 'repeat(2, 1fr)', containing items with medium text and :hover { box-shadow: 0 0 10px rgba(0, 0, 0, 0.5); }.
<input style='display: grid; grid-template-columns: 100px 1fr; gap: 10px; :hover { box-shadow: 0 0 10px rgba(0, 0, 0, 0.5); }'><li style='color: cyan; border: 1px double purple;'>Submit</li><li style='color: yellow; border: 1px groove pink;'>Choose Option</li><li style='color: orange; border: 1px dotted blue;'>Choose O...
A p containing a list of options with gray text, each inside a solid box, with 2px 2px 5px rgba(0, 0, 0, 0.3), slide-up, and @media (min-width: 1200px) { font-size: 18px; }.
<h2><ul style='box-shadow: none; animation: bounce 1.5s;'><li style='color: black; border: 1px solid yellow;'>Submit</li><li style='color: green; border: 1px double yellow;'>Login</li><li style='color: white; border: 1px dotted orange;'>Sign Up</li><li style='color: purple; border: 1px ridge green;'>Contact Us</li><li ...
A input containing a gray button with linear-gradient(to right, red, yellow) background that says 'Click Me', followed by a medium text description, with spin.
<input><button style='background-color: linear-gradient(to right, red, yellow); font-size: 28px; animation: bounce 2s;'>Choose Option</button><p style='font-size: 28px;'>sign up</p></input> @keyframes spin { from { transform: rotate(0deg); } to { transform: rotate(360deg); } } transition: background-color 0.4s ease;
A small button with green text, Times New Roman font, none, and slide-up, displayed as none with space-around, responsive with media queries.
<header style='color: white; font-size: 24px; font-family: Tahoma; box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.3); display: grid; justify-content: space-between; animation: slide-up 2s; transition: transform 0.2s ease-in-out;'>Contact Us</header> @keyframes fade-in { from { opacity: 0; } to { opacity: 1; } } @media (min-wi...
A responsive header with a grid layout using template '100px 1fr', containing items with large text and :hover { transform: scale(1.1); }.
<div style='display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; :hover { box-shadow: 0 0 10px rgba(0, 0, 0, 0.5); }'><li style='color: cyan; border: 1px ridge yellow;'>Search</li><li style='color: green; border: 1px double red;'>Search</li><li style='color: red; border: 1px dashed orange;'>Choose Option</l...
A p containing a list of options with purple text, each inside a groove box, with none, bounce, and @media (min-width: 600px) and (max-width: 1200px) { font-size: 16px; }.
<div><ul style='box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); animation: bounce 1.5s;'><li style='color: white; border: 1px solid green;'>Login</li><li style='color: blue; border: 1px groove cyan;'>Login</li><li style='color: green; border: 1px dotted green;'>Submit</li><li style='color: purple; border: 1px dashed green;'>...
A h2 containing a list of options with blue text, each inside a double box, with 4px 4px 10px rgba(0, 0, 0, 0.5), spin, and @media (min-width: 1200px) { font-size: 18px; }.
<header><ul style='box-shadow: 4px 4px 10px rgba(0, 0, 0, 0.5); animation: slide-up 1.5s;'><li style='color: pink; border: 1px groove blue;'>Hello World</li><li style='color: blue; border: 1px double red;'>Click Me</li><li style='color: cyan; border: 1px dotted pink;'>Contact Us</li><li style='color: red; border: 1px s...
A responsive div with a grid layout using template '1fr 2fr', containing items with large text and :hover { transform: scale(1.1); }.
<footer style='display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; :hover { background-color: #555; color: white; }'><li style='color: orange; border: 1px double white;'>Submit</li><li style='color: yellow; border: 1px solid cyan;'>Click Me</li><li style='color: blue; border: 1px groove green;'>Click Me</l...
A h2 containing a list of options with orange text, each inside a groove box, with 4px 4px 10px rgba(0, 0, 0, 0.5), spin, and @media (min-width: 600px) and (max-width: 1200px) { font-size: 16px; }.
<p><ul style='box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.3); animation: spin 1.5s;'><li style='color: red; border: 1px solid white;'>Choose Option</li><li style='color: white; border: 1px solid green;'>Choose Option</li><li style='color: purple; border: 1px groove cyan;'>Sign Up</li><li style='color: white; border: 1px do...
A responsive input with a grid layout using template 'repeat(2, 1fr)', containing items with large text and :hover { box-shadow: 0 0 10px rgba(0, 0, 0, 0.5); }.
<input style='display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; :hover { box-shadow: 0 0 10px rgba(0, 0, 0, 0.5); }'><li style='color: cyan; border: 1px groove yellow;'>Choose Option</li><li style='color: blue; border: 1px ridge orange;'>Search</li><li style='color: green; border: 1px double yellow;'>Sig...
A footer containing a list of options with red text, each inside a dashed box, with 0 4px 8px rgba(0, 0, 0, 0.2), slide-up, and @media (min-width: 1200px) { font-size: 18px; }.
<p><ul style='box-shadow: 4px 4px 10px rgba(0, 0, 0, 0.5); animation: fade-in 1.5s;'><li style='color: orange; border: 1px solid red;'>Submit</li><li style='color: purple; border: 1px dashed cyan;'>Login</li><li style='color: white; border: 1px ridge green;'>Choose Option</li><li style='color: black; border: 1px groove...
A nav containing a black button with linear-gradient(to bottom, blue, green) background that says 'Enter Your Name', followed by a large text description, with slide-up.
<p><button style='background-color: linear-gradient(to bottom, blue, green); font-size: 14px; animation: spin 2s;'>Login</button><p style='font-size: 14px;'>choose option</p></p> @keyframes slide-up { from { transform: translateY(100%); } to { transform: translateY(0); } } transition: transform 0.2s ease-in-out;
A h2 containing a list of options with green text, each inside a dotted box, with 0 4px 8px rgba(0, 0, 0, 0.2), fade-in, and @media (max-width: 600px) { font-size: 14px; }.
<h1><ul style='box-shadow: 4px 4px 10px rgba(0, 0, 0, 0.5); animation: spin 1.5s;'><li style='color: green; border: 1px groove black;'>Enter Your Name</li><li style='color: pink; border: 1px dashed gray;'>Submit</li><li style='color: yellow; border: 1px solid pink;'>Search</li><li style='color: white; border: 1px groov...
A green box with solid border, radial-gradient(circle, pink, purple) background, small text centered inside, using none layout, with :hover { box-shadow: 0 0 10px rgba(0, 0, 0, 0.5); } and slide-up.
<div style='background: linear-gradient(to right, red, yellow); border: 2px groove pink; font-size: 20px; text-align: center; display: none; justify-content: space-around; align-items: center; animation: slide-up 2s; transition: transform 0.2s ease-in-out; :hover { background-color: #555; color: white; }'>Contact Us</d...
A select containing a list of options with gray text, each inside a solid box, with 2px 2px 5px rgba(0, 0, 0, 0.3), spin, and @media (min-width: 1200px) { font-size: 18px; }.
<footer><ul style='box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.3); animation: bounce 1.5s;'><li style='color: purple; border: 1px double cyan;'>Hello World</li><li style='color: white; border: 1px double pink;'>Login</li><li style='color: white; border: 1px solid purple;'>Submit</li><li style='color: black; border: 1px dot...
A select containing a list of options with cyan text, each inside a double box, with 4px 4px 10px rgba(0, 0, 0, 0.5), spin, and @media (min-width: 1200px) { font-size: 18px; }.
<span><ul style='box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); animation: fade-in 1.5s;'><li style='color: green; border: 1px ridge gray;'>Search</li><li style='color: gray; border: 1px dashed blue;'>Submit</li><li style='color: black; border: 1px dashed green;'>Search</li><li style='color: pink; border: 1px double black;'...
A purple button with small Courier New text, using none layout, aligned to the right, with 4px 4px 10px rgba(0, 0, 0, 0.5), spin, and a :hover { background-color: #555; color: white; }.
<button style='background-color: red; font-size: 14px; font-family: Courier New; display: grid; text-align: justify; box-shadow: none; animation: bounce 2s; transition: transform 0.2s ease-in-out; :hover { transform: scale(1.1); }'>Login</button> @keyframes slide-up { from { transform: translateY(100%); } to { transfor...
A gray box with solid border, linear-gradient(to bottom, blue, green) background, small text centered inside, using none layout, with :hover { transform: scale(1.1); } and spin.
<div style='background: linear-gradient(to bottom, blue, green); border: 2px solid orange; font-size: 20px; text-align: center; display: block; justify-content: center; align-items: center; animation: spin 2s; transition: all 0.3s ease; :hover { background-color: #555; color: white; }'>Enter Your Name</div> @keyframes ...
A black box with groove border, linear-gradient(to bottom, blue, green) background, large text centered inside, using inline-block layout, with :hover { transform: scale(1.1); } and spin.
<div style='background: linear-gradient(to right, red, yellow); border: 2px solid red; font-size: 26px; text-align: center; display: none; justify-content: center; align-items: center; animation: fade-in 2s; transition: background-color 0.4s ease; :hover { transform: scale(1.1); }'>Choose Option</div> @keyframes slide-...
A p containing a list of options with purple text, each inside a double box, with none, bounce, and @media (min-width: 600px) and (max-width: 1200px) { font-size: 16px; }.
<textarea><ul style='box-shadow: none; animation: spin 1.5s;'><li style='color: black; border: 1px dotted black;'>Click Me</li><li style='color: purple; border: 1px groove gray;'>Hello World</li><li style='color: gray; border: 1px double gray;'>Enter Your Name</li><li style='color: purple; border: 1px dashed pink;'>Con...
A orange box with solid border, radial-gradient(circle, pink, purple) background, small text centered inside, using grid layout, with :hover { background-color: #555; color: white; } and spin.
<div style='background: linear-gradient(to right, red, yellow); border: 2px groove blue; font-size: 24px; text-align: center; display: inline-block; justify-content: flex-end; align-items: center; animation: slide-up 2s; transition: all 0.3s ease; :hover { transform: scale(1.1); }'>Login</div> @keyframes bounce { 0%, 2...
A blue box with dashed border, linear-gradient(to bottom, blue, green) background, medium text centered inside, using inline-block layout, with :hover { background-color: #555; color: white; } and fade-in.
<div style='background: linear-gradient(to bottom, blue, green); border: 2px double orange; font-size: 20px; text-align: center; display: none; justify-content: center; align-items: center; animation: bounce 2s; transition: all 0.3s ease; :hover { background-color: #555; color: white; }'>Click Me</div> @keyframes bounc...
A small button with green text, Tahoma font, 2px 2px 5px rgba(0, 0, 0, 0.3), and bounce, displayed as inline-block with center, responsive with media queries.
<header style='color: black; font-size: 18px; font-family: Arial; box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.3); display: inline-block; justify-content: space-around; animation: slide-up 2s; transition: background-color 0.4s ease;'>Login</header> @keyframes bounce { 0%, 20%, 50%, 80%, 100% { transform: translateY(0); } 40...
A large select with black text, Courier New font, 4px 4px 10px rgba(0, 0, 0, 0.5), and spin, displayed as none with space-between, responsive with media queries.
<h1 style='color: yellow; font-size: 22px; font-family: Tahoma; box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); display: inline-block; justify-content: space-around; animation: slide-up 2s; transition: transform 0.2s ease-in-out;'>Contact Us</h1> @keyframes slide-up { from { transform: translateY(100%); } to { transform: tra...
A responsive button with a grid layout using template '1fr 2fr', containing items with medium text and :hover { box-shadow: 0 0 10px rgba(0, 0, 0, 0.5); }.
<h1 style='display: grid; grid-template-columns: 1fr 2fr; gap: 10px; :hover { box-shadow: 0 0 10px rgba(0, 0, 0, 0.5); }'><li style='color: cyan; border: 1px double blue;'>Sign Up</li><li style='color: purple; border: 1px dashed red;'>Search</li><li style='color: blue; border: 1px dashed gray;'>Click Me</li><li style='...
A button containing a white button with linear-gradient(to right, red, yellow) background that says 'Choose Option', followed by a medium text description, with slide-up.
<input><button style='background-color: linear-gradient(to right, red, yellow); font-size: 22px; animation: bounce 2s;'>Choose Option</button><p style='font-size: 22px;'>hello world</p></input> @keyframes spin { from { transform: rotate(0deg); } to { transform: rotate(360deg); } } transition: transform 0.2s ease-in-out...
A select containing a red button with radial-gradient(circle, pink, purple) background that says 'Search', followed by a small text description, with fade-in.
<h2><button style='background-color: radial-gradient(circle, pink, purple); font-size: 14px; animation: slide-up 2s;'>Contact Us</button><p style='font-size: 14px;'>hello world</p></h2> @keyframes fade-in { from { opacity: 0; } to { opacity: 1; } } transition: transform 0.2s ease-in-out;
A large select with cyan text, Tahoma font, 0 4px 8px rgba(0, 0, 0, 0.2), and slide-up, displayed as none with flex-end, responsive with media queries.
<select style='color: yellow; font-size: 20px; font-family: Verdana; box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); display: block; justify-content: flex-start; animation: spin 2s; transition: background-color 0.4s ease;'>Choose Option</select> @keyframes slide-up { from { transform: translateY(100%); } to { transform: tran...
A responsive nav with a grid layout using template '100px 1fr', containing items with medium text and :hover { background-color: #555; color: white; }.
<textarea style='display: grid; grid-template-columns: 1fr 2fr; gap: 10px; :hover { box-shadow: 0 0 10px rgba(0, 0, 0, 0.5); }'><li style='color: blue; border: 1px ridge red;'>Click Me</li><li style='color: blue; border: 1px dotted cyan;'>Click Me</li><li style='color: pink; border: 1px dashed gray;'>Enter Your Name</l...
A cyan button with medium Georgia text, using block layout, aligned to the right, with none, bounce, and a :hover { box-shadow: 0 0 10px rgba(0, 0, 0, 0.5); }.
<button style='background-color: green; font-size: 28px; font-family: Georgia; display: grid; text-align: center; box-shadow: none; animation: spin 2s; transition: background-color 0.4s ease; :hover { transform: scale(1.1); }'>Submit</button> @keyframes slide-up { from { transform: translateY(100%); } to { transform: t...
A pink box with dotted border, radial-gradient(circle, pink, purple) background, medium text centered inside, using grid layout, with :hover { background-color: #555; color: white; } and slide-up.
<div style='background: radial-gradient(circle, pink, purple); border: 2px double cyan; font-size: 28px; text-align: center; display: inline-block; justify-content: flex-start; align-items: center; animation: spin 2s; transition: background-color 0.4s ease; :hover { background-color: #555; color: white; }'>Enter Your N...
A header containing a list of options with pink text, each inside a dotted box, with 2px 2px 5px rgba(0, 0, 0, 0.3), slide-up, and @media (min-width: 1200px) { font-size: 18px; }.
<button><ul style='box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); animation: bounce 1.5s;'><li style='color: blue; border: 1px dashed orange;'>Choose Option</li><li style='color: black; border: 1px solid yellow;'>Enter Your Name</li><li style='color: orange; border: 1px groove purple;'>Sign Up</li><li style='color: purple; ...
A small select with red text, Verdana font, 2px 2px 5px rgba(0, 0, 0, 0.3), and fade-in, displayed as none with flex-end, responsive with media queries.
<span style='color: red; font-size: 12px; font-family: Helvetica; box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.3); display: flex; justify-content: center; animation: fade-in 2s; transition: all 0.3s ease;'>Click Me</span> @keyframes spin { from { transform: rotate(0deg); } to { transform: rotate(360deg); } } @media (min-wid...
A purple box with double border, radial-gradient(circle, pink, purple) background, small text centered inside, using block layout, with :hover { transform: scale(1.1); } and fade-in.
<div style='background: linear-gradient(to right, red, yellow); border: 2px ridge pink; font-size: 18px; text-align: center; display: grid; justify-content: flex-start; align-items: center; animation: fade-in 2s; transition: transform 0.2s ease-in-out; :hover { box-shadow: 0 0 10px rgba(0, 0, 0, 0.5); }'>Search</div> @...
A purple button with medium Verdana text, using grid layout, aligned to the left, with none, slide-up, and a :hover { background-color: #555; color: white; }.
<button style='background-color: white; font-size: 14px; font-family: Arial; display: flex; text-align: left; box-shadow: 4px 4px 10px rgba(0, 0, 0, 0.5); animation: slide-up 2s; transition: all 0.3s ease; :hover { transform: scale(1.1); }'>Contact Us</button> @keyframes bounce { 0%, 20%, 50%, 80%, 100% { transform: tr...
A div containing a yellow button with radial-gradient(circle, pink, purple) background that says 'Enter Your Name', followed by a small text description, with slide-up.
<h1><button style='background-color: linear-gradient(to bottom, blue, green); font-size: 26px; animation: spin 2s;'>Sign Up</button><p style='font-size: 26px;'>login</p></h1> @keyframes slide-up { from { transform: translateY(100%); } to { transform: translateY(0); } } transition: transform 0.2s ease-in-out;
A white box with groove border, linear-gradient(to right, red, yellow) background, medium text centered inside, using grid layout, with :hover { transform: scale(1.1); } and spin.
<div style='background: radial-gradient(circle, pink, purple); border: 2px dashed purple; font-size: 24px; text-align: center; display: grid; justify-content: flex-end; align-items: center; animation: slide-up 2s; transition: background-color 0.4s ease; :hover { background-color: #555; color: white; }'>Contact Us</div>...
A button containing a list of options with pink text, each inside a solid box, with 0 4px 8px rgba(0, 0, 0, 0.2), slide-up, and @media (max-width: 600px) { font-size: 14px; }.
<textarea><ul style='box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.3); animation: bounce 1.5s;'><li style='color: orange; border: 1px dotted purple;'>Click Me</li><li style='color: cyan; border: 1px ridge white;'>Hello World</li><li style='color: orange; border: 1px dotted purple;'>Sign Up</li><li style='color: purple; borde...
A textarea containing a list of options with pink text, each inside a dashed box, with 2px 2px 5px rgba(0, 0, 0, 0.3), slide-up, and @media (min-width: 600px) and (max-width: 1200px) { font-size: 16px; }.
<input><ul style='box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.3); animation: spin 1.5s;'><li style='color: orange; border: 1px dotted gray;'>Search</li><li style='color: gray; border: 1px dotted cyan;'>Enter Your Name</li><li style='color: blue; border: 1px ridge pink;'>Click Me</li><li style='color: red; border: 1px ridge...
A cyan button with large Arial text, using block layout, aligned to the right, with none, slide-up, and a :hover { box-shadow: 0 0 10px rgba(0, 0, 0, 0.5); }.
<button style='background-color: black; font-size: 22px; font-family: Arial; display: grid; text-align: justify; box-shadow: 4px 4px 10px rgba(0, 0, 0, 0.5); animation: bounce 2s; transition: transform 0.2s ease-in-out; :hover { box-shadow: 0 0 10px rgba(0, 0, 0, 0.5); }'>Enter Your Name</button> @keyframes fade-in { f...
A yellow button with large Georgia text, using inline-block layout, aligned to the right, with 0 4px 8px rgba(0, 0, 0, 0.2), bounce, and a :hover { transform: scale(1.1); }.
<button style='background-color: purple; font-size: 20px; font-family: Arial; display: inline-block; text-align: center; box-shadow: none; animation: slide-up 2s; transition: all 0.3s ease; :hover { transform: scale(1.1); }'>Submit</button> @keyframes fade-in { from { opacity: 0; } to { opacity: 1; } }
A p containing a cyan button with linear-gradient(to bottom, blue, green) background that says 'Login', followed by a large text description, with spin.
<input><button style='background-color: linear-gradient(to bottom, blue, green); font-size: 18px; animation: spin 2s;'>Choose Option</button><p style='font-size: 18px;'>submit</p></input> @keyframes bounce { 0%, 20%, 50%, 80%, 100% { transform: translateY(0); } 40% { transform: translateY(-30px); } 60% { transform: tra...
A responsive input with a grid layout using template '1fr 2fr', containing items with small text and :hover { background-color: #555; color: white; }.
<h1 style='display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; :hover { background-color: #555; color: white; }'><li style='color: orange; border: 1px ridge orange;'>Search</li><li style='color: black; border: 1px groove red;'>Enter Your Name</li><li style='color: purple; border: 1px solid gray;'>Sign Up</...
A input containing a list of options with gray text, each inside a ridge box, with 2px 2px 5px rgba(0, 0, 0, 0.3), slide-up, and @media (min-width: 1200px) { font-size: 18px; }.
<p><ul style='box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.3); animation: bounce 1.5s;'><li style='color: white; border: 1px dashed cyan;'>Login</li><li style='color: white; border: 1px dotted green;'>Search</li><li style='color: black; border: 1px double pink;'>Search</li><li style='color: blue; border: 1px groove black;'>...
A div containing a list of options with yellow text, each inside a double box, with 4px 4px 10px rgba(0, 0, 0, 0.5), slide-up, and @media (min-width: 600px) and (max-width: 1200px) { font-size: 16px; }.
<nav><ul style='box-shadow: 4px 4px 10px rgba(0, 0, 0, 0.5); animation: spin 1.5s;'><li style='color: orange; border: 1px dashed orange;'>Choose Option</li><li style='color: purple; border: 1px dotted purple;'>Hello World</li><li style='color: orange; border: 1px solid cyan;'>Click Me</li><li style='color: cyan; border...
A p containing a green button with linear-gradient(to bottom, blue, green) background that says 'Sign Up', followed by a small text description, with spin.
<header><button style='background-color: linear-gradient(to bottom, blue, green); font-size: 14px; animation: fade-in 2s;'>Contact Us</button><p style='font-size: 14px;'>login</p></header> @keyframes fade-in { from { opacity: 0; } to { opacity: 1; } } transition: all 0.3s ease;
A footer containing a list of options with yellow text, each inside a double box, with 2px 2px 5px rgba(0, 0, 0, 0.3), spin, and @media (min-width: 600px) and (max-width: 1200px) { font-size: 16px; }.
<h1><ul style='box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.3); animation: fade-in 1.5s;'><li style='color: purple; border: 1px dashed blue;'>Sign Up</li><li style='color: red; border: 1px dashed black;'>Sign Up</li><li style='color: gray; border: 1px groove purple;'>Login</li><li style='color: green; border: 1px double pur...
A responsive p with a grid layout using template 'repeat(2, 1fr)', containing items with small text and :hover { box-shadow: 0 0 10px rgba(0, 0, 0, 0.5); }.
<textarea style='display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; :hover { background-color: #555; color: white; }'><li style='color: gray; border: 1px dashed blue;'>Login</li><li style='color: green; border: 1px dotted yellow;'>Login</li><li style='color: green; border: 1px double cyan;'>Search</li><li...
A responsive h2 with a grid layout using template 'repeat(2, 1fr)', containing items with small text and :hover { background-color: #555; color: white; }.
<h3 style='display: grid; grid-template-columns: 100px 1fr; gap: 10px; :hover { transform: scale(1.1); }'><li style='color: pink; border: 1px ridge yellow;'>Hello World</li><li style='color: yellow; border: 1px groove white;'>Click Me</li><li style='color: white; border: 1px solid green;'>Enter Your Name</li><li style=...
A pink button with medium Helvetica text, using none layout, aligned to the right, with 2px 2px 5px rgba(0, 0, 0, 0.3), slide-up, and a :hover { background-color: #555; color: white; }.
<button style='background-color: pink; font-size: 22px; font-family: Courier New; display: grid; text-align: left; box-shadow: none; animation: bounce 2s; transition: transform 0.2s ease-in-out; :hover { background-color: #555; color: white; }'>Click Me</button> @keyframes slide-up { from { transform: translateY(100%);...
A yellow box with ridge border, linear-gradient(to bottom, blue, green) background, large text centered inside, using grid layout, with :hover { box-shadow: 0 0 10px rgba(0, 0, 0, 0.5); } and bounce.
<div style='background: linear-gradient(to right, red, yellow); border: 2px groove red; font-size: 22px; text-align: center; display: block; justify-content: flex-end; align-items: center; animation: fade-in 2s; transition: all 0.3s ease; :hover { background-color: #555; color: white; }'>Click Me</div> @keyframes slide...
A cyan box with groove border, linear-gradient(to bottom, blue, green) background, large text centered inside, using none layout, with :hover { box-shadow: 0 0 10px rgba(0, 0, 0, 0.5); } and fade-in.
<div style='background: linear-gradient(to right, red, yellow); border: 2px dotted pink; font-size: 18px; text-align: center; display: none; justify-content: center; align-items: center; animation: bounce 2s; transition: all 0.3s ease; :hover { box-shadow: 0 0 10px rgba(0, 0, 0, 0.5); }'>Sign Up</div> @keyframes bounce...
A button containing a list of options with pink text, each inside a solid box, with none, bounce, and @media (min-width: 600px) and (max-width: 1200px) { font-size: 16px; }.
<span><ul style='box-shadow: 4px 4px 10px rgba(0, 0, 0, 0.5); animation: slide-up 1.5s;'><li style='color: purple; border: 1px groove yellow;'>Enter Your Name</li><li style='color: blue; border: 1px dotted pink;'>Login</li><li style='color: green; border: 1px groove orange;'>Login</li><li style='color: red; border: 1px...
A footer containing a cyan button with linear-gradient(to right, red, yellow) background that says 'Hello World', followed by a large text description, with slide-up.
<input><button style='background-color: linear-gradient(to bottom, blue, green); font-size: 16px; animation: bounce 2s;'>Sign Up</button><p style='font-size: 16px;'>sign up</p></input> @keyframes slide-up { from { transform: translateY(100%); } to { transform: translateY(0); } } transition: all 0.3s ease;