CoolFace
Datasetpublic

KingstarOMEGA/HTML-CSS-UI

sourceHugging Faceupdated 2y agoView on Hugging Face
10likes29downloads
HCUI.csv1001 linesDownload Raw Back to root
1description,code
2"A p containing a cyan button with linear-gradient(to right, red, yellow) background that says 'Click Me', followed by a large text description, with slide-up.","<footer><button style='background-color: radial-gradient(circle, pink, purple); font-size: 26px; animation: slide-up 2s;'>Sign Up</button><p style='font-size: 26px;'>contact us</p></footer> @keyframes slide-up { from { transform: translateY(100%); } to { transform: translateY(0); } } transition: transform 0.2s ease-in-out;"
3"A div containing a white button with radial-gradient(circle, pink, purple) background that says 'Sign Up', followed by a large text description, with bounce.","<p><button style='background-color: linear-gradient(to right, red, yellow); font-size: 24px; animation: bounce 2s;'>Click Me</button><p style='font-size: 24px;'>hello world</p></p> @keyframes bounce { 0%, 20%, 50%, 80%, 100% { transform: translateY(0); } 40% { transform: translateY(-30px); } 60% { transform: translateY(-15px); } } transition: all 0.3s ease;"
4"A input containing a yellow button with radial-gradient(circle, pink, purple) background that says 'Submit', followed by a medium text description, with spin.","<h1><button style='background-color: linear-gradient(to right, red, yellow); font-size: 28px; animation: slide-up 2s;'>Sign Up</button><p style='font-size: 28px;'>click me</p></h1> @keyframes spin { from { transform: rotate(0deg); } to { transform: rotate(360deg); } } transition: all 0.3s ease;"
5"A green box with double border, radial-gradient(circle, pink, purple) background, medium text centered inside, using grid 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 groove black; font-size: 14px; text-align: center; display: grid; justify-content: flex-start; align-items: center; animation: fade-in 2s; transition: all 0.3s ease; :hover { transform: scale(1.1); }'>Login</div> @keyframes fade-in { from { opacity: 0; } to { opacity: 1; } }"
6"A nav containing a white button with linear-gradient(to right, red, yellow) background that says 'Contact Us', followed by a medium text description, with spin.","<header><button style='background-color: radial-gradient(circle, pink, purple); font-size: 18px; animation: fade-in 2s;'>Submit</button><p style='font-size: 18px;'>search</p></header> @keyframes spin { from { transform: rotate(0deg); } to { transform: rotate(360deg); } } transition: background-color 0.4s ease;"
7"A white box with solid border, radial-gradient(circle, pink, purple) background, small text centered inside, using flex layout, with :hover { transform: scale(1.1); } and spin.","<div style='background: linear-gradient(to right, red, yellow); border: 2px solid white; font-size: 16px; text-align: center; display: inline-block; justify-content: flex-end; align-items: center; animation: bounce 2s; transition: background-color 0.4s ease; :hover { transform: scale(1.1); }'>Enter Your Name</div> @keyframes bounce { 0%, 20%, 50%, 80%, 100% { transform: translateY(0); } 40% { transform: translateY(-30px); } 60% { transform: translateY(-15px); } }"
8"A small footer with green text, Verdana font, 2px 2px 5px rgba(0, 0, 0, 0.3), and fade-in, displayed as block with space-around, responsive with media queries.","<span style='color: cyan; font-size: 14px; font-family: Georgia; box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.3); display: none; justify-content: space-between; animation: slide-up 2s; transition: all 0.3s ease;'>Sign Up</span> @keyframes bounce { 0%, 20%, 50%, 80%, 100% { transform: translateY(0); } 40% { transform: translateY(-30px); } 60% { transform: translateY(-15px); } } @media (max-width: 600px) { font-size: 14px; }"
9"A medium footer with pink text, Courier New font, 0 4px 8px rgba(0, 0, 0, 0.2), and slide-up, displayed as flex with space-between, responsive with media queries.","<h1 style='color: white; font-size: 20px; font-family: Courier New; box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); display: inline-block; justify-content: flex-start; animation: spin 2s; transition: background-color 0.4s ease;'>Login</h1> @keyframes bounce { 0%, 20%, 50%, 80%, 100% { transform: translateY(0); } 40% { transform: translateY(-30px); } 60% { transform: translateY(-15px); } } @media (max-width: 600px) { font-size: 14px; }"
10"A small footer with cyan text, Georgia font, 0 4px 8px rgba(0, 0, 0, 0.2), and spin, displayed as block with center, responsive with media queries.","<h2 style='color: cyan; font-size: 14px; font-family: Times New Roman; box-shadow: none; display: flex; justify-content: flex-end; animation: bounce 2s; transition: background-color 0.4s ease;'>Contact Us</h2> @keyframes bounce { 0%, 20%, 50%, 80%, 100% { transform: translateY(0); } 40% { transform: translateY(-30px); } 60% { transform: translateY(-15px); } } @media (max-width: 600px) { font-size: 14px; }"
11"A h1 containing a white button with linear-gradient(to bottom, blue, green) background that says 'Submit', followed by a small text description, with spin.","<h1><button style='background-color: linear-gradient(to bottom, blue, green); font-size: 16px; animation: fade-in 2s;'>Hello World</button><p style='font-size: 16px;'>choose option</p></h1> @keyframes bounce { 0%, 20%, 50%, 80%, 100% { transform: translateY(0); } 40% { transform: translateY(-30px); } 60% { transform: translateY(-15px); } } transition: background-color 0.4s ease;"
12"A red button with medium Arial text, using flex layout, aligned to the right, with 0 4px 8px rgba(0, 0, 0, 0.2), spin, and a :hover { background-color: #555; color: white; }.","<button style='background-color: purple; font-size: 16px; font-family: Verdana; display: inline-block; text-align: center; box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.3); animation: bounce 2s; transition: transform 0.2s ease-in-out; :hover { transform: scale(1.1); }'>Choose Option</button> @keyframes slide-up { from { transform: translateY(100%); } to { transform: translateY(0); } }"
13"A responsive h2 with a grid layout using template '1fr 2fr', containing items with large text and :hover { background-color: #555; color: white; }.","<nav 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: purple; border: 1px ridge blue;'>Contact Us</li><li style='color: purple; border: 1px dotted blue;'>Sign Up</li><li style='color: cyan; border: 1px ridge black;'>Login</li><li style='color: yellow; border: 1px groove blue;'>Search</li><li style='color: orange; border: 1px solid white;'>Submit</li></nav> @keyframes slide-up { from { transform: translateY(100%); } to { transform: translateY(0); } }"
14"A responsive input with a grid layout using template 'repeat(2, 1fr)', containing items with small text and :hover { transform: scale(1.1); }.","<input style='display: grid; grid-template-columns: 100px 1fr; gap: 10px; :hover { background-color: #555; color: white; }'><li style='color: pink; border: 1px solid yellow;'>Contact Us</li><li style='color: black; border: 1px dashed purple;'>Click Me</li><li style='color: cyan; border: 1px dotted white;'>Submit</li><li style='color: green; border: 1px double purple;'>Login</li><li style='color: purple; border: 1px ridge green;'>Search</li></input> @keyframes bounce { 0%, 20%, 50%, 80%, 100% { transform: translateY(0); } 40% { transform: translateY(-30px); } 60% { transform: translateY(-15px); } }"
15"A large input with green text, Helvetica font, 4px 4px 10px rgba(0, 0, 0, 0.5), and slide-up, displayed as flex with flex-start, responsive with media queries.",<button style='color: black; font-size: 18px; font-family: Arial; box-shadow: none; display: none; justify-content: flex-end; animation: fade-in 2s; transition: background-color 0.4s ease;'>Submit</button> @keyframes spin { from { transform: rotate(0deg); } to { transform: rotate(360deg); } } @media (min-width: 1200px) { font-size: 18px; }
16"A textarea containing a list of options with black text, each inside a double box, with 0 4px 8px rgba(0, 0, 0, 0.2), bounce, and @media (min-width: 1200px) { font-size: 18px; }.","<input><ul style='box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); animation: spin 1.5s;'><li style='color: yellow; border: 1px dashed white;'>Hello World</li><li style='color: orange; border: 1px dotted red;'>Hello World</li><li style='color: orange; border: 1px double black;'>Contact Us</li><li style='color: white; border: 1px ridge red;'>Choose Option</li><li style='color: orange; border: 1px dotted cyan;'>Choose Option</li></ul></input> @keyframes spin { from { transform: rotate(0deg); } to { transform: rotate(360deg); } } @media (min-width: 1200px) { font-size: 18px; }"
17"A footer containing a list of options with purple text, each inside a solid box, with 0 4px 8px rgba(0, 0, 0, 0.2), spin, and @media (min-width: 1200px) { font-size: 18px; }.","<footer><ul style='box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); animation: bounce 1.5s;'><li style='color: orange; border: 1px ridge gray;'>Contact Us</li><li style='color: black; border: 1px double gray;'>Submit</li><li style='color: pink; border: 1px double cyan;'>Choose Option</li><li style='color: purple; border: 1px groove red;'>Enter Your Name</li><li style='color: pink; border: 1px solid cyan;'>Login</li></ul></footer> @keyframes fade-in { from { opacity: 0; } to { opacity: 1; } } @media (min-width: 1200px) { font-size: 18px; }"
18"A span containing a list of options with orange text, each inside a groove box, with 0 4px 8px rgba(0, 0, 0, 0.2), fade-in, and @media (min-width: 1200px) { font-size: 18px; }.","<h3><ul style='box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.3); animation: bounce 1.5s;'><li style='color: yellow; border: 1px dotted purple;'>Sign Up</li><li style='color: red; border: 1px solid pink;'>Enter Your Name</li><li style='color: green; border: 1px ridge red;'>Hello World</li><li style='color: orange; border: 1px double black;'>Login</li><li style='color: orange; border: 1px dotted gray;'>Choose Option</li></ul></h3> @keyframes spin { from { transform: rotate(0deg); } to { transform: rotate(360deg); } } @media (min-width: 600px) and (max-width: 1200px) { font-size: 16px; }"
19"A responsive select with a grid layout using template 'repeat(3, 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 { transform: scale(1.1); }'><li style='color: cyan; border: 1px ridge red;'>Login</li><li style='color: purple; border: 1px solid pink;'>Sign Up</li><li style='color: blue; border: 1px dotted green;'>Click Me</li><li style='color: green; border: 1px double yellow;'>Contact Us</li><li style='color: orange; border: 1px solid purple;'>Search</li></textarea> @keyframes spin { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }
20"A gray button with small Helvetica text, using block layout, aligned to the right, with 0 4px 8px rgba(0, 0, 0, 0.2), fade-in, and a :hover { background-color: #555; color: white; }.","<button style='background-color: cyan; font-size: 18px; font-family: Arial; display: inline-block; text-align: center; box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.3); animation: spin 2s; transition: all 0.3s ease; :hover { background-color: #555; color: white; }'>Login</button> @keyframes spin { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }"
21"A responsive h3 with a grid layout using template '100px 1fr', containing items with small text and :hover { background-color: #555; color: white; }.","<footer style='display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px; :hover { box-shadow: 0 0 10px rgba(0, 0, 0, 0.5); }'><li style='color: cyan; border: 1px groove red;'>Contact Us</li><li style='color: gray; border: 1px dashed pink;'>Sign Up</li><li style='color: white; border: 1px dotted pink;'>Choose Option</li><li style='color: orange; border: 1px groove orange;'>Click Me</li><li style='color: cyan; border: 1px solid pink;'>Click Me</li></footer> @keyframes bounce { 0%, 20%, 50%, 80%, 100% { transform: translateY(0); } 40% { transform: translateY(-30px); } 60% { transform: translateY(-15px); } }"
22"A red button with small Verdana text, using block layout, aligned to the center, 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: blue; font-size: 14px; font-family: Georgia; display: grid; text-align: justify; box-shadow: 4px 4px 10px rgba(0, 0, 0, 0.5); animation: spin 2s; transition: all 0.3s ease; :hover { box-shadow: 0 0 10px rgba(0, 0, 0, 0.5); }'>Choose Option</button> @keyframes slide-up { from { transform: translateY(100%); } to { transform: translateY(0); } }"
23"A h3 containing a purple button with radial-gradient(circle, pink, purple) background that says 'Contact Us', followed by a large text description, with fade-in.","<nav><button style='background-color: linear-gradient(to right, red, yellow); font-size: 28px; animation: fade-in 2s;'>Sign Up</button><p style='font-size: 28px;'>login</p></nav> @keyframes fade-in { from { opacity: 0; } to { opacity: 1; } } transition: all 0.3s ease;"
24"A large textarea with blue text, Helvetica font, 0 4px 8px rgba(0, 0, 0, 0.2), and slide-up, displayed as block with flex-end, responsive with media queries.",<nav style='color: blue; font-size: 18px; font-family: Helvetica; box-shadow: none; display: block; justify-content: space-between; animation: fade-in 2s; transition: all 0.3s ease;'>Search</nav> @keyframes spin { from { transform: rotate(0deg); } to { transform: rotate(360deg); } } @media (min-width: 1200px) { font-size: 18px; }
25"A input containing a list of options with gray text, each inside a groove box, with none, slide-up, and @media (min-width: 1200px) { font-size: 18px; }.","<h2><ul style='box-shadow: 4px 4px 10px rgba(0, 0, 0, 0.5); animation: bounce 1.5s;'><li style='color: white; border: 1px groove white;'>Choose Option</li><li style='color: blue; border: 1px ridge black;'>Enter Your Name</li><li style='color: pink; border: 1px dotted blue;'>Click Me</li><li style='color: pink; border: 1px double black;'>Login</li><li style='color: orange; border: 1px ridge cyan;'>Search</li></ul></h2> @keyframes bounce { 0%, 20%, 50%, 80%, 100% { transform: translateY(0); } 40% { transform: translateY(-30px); } 60% { transform: translateY(-15px); } } @media (max-width: 600px) { font-size: 14px; }"
26"A header containing a list of options with cyan text, each inside a solid box, with none, bounce, and @media (max-width: 600px) { font-size: 14px; }.","<footer><ul style='box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); animation: slide-up 1.5s;'><li style='color: red; border: 1px dashed orange;'>Click Me</li><li style='color: red; border: 1px dashed white;'>Hello World</li><li style='color: gray; border: 1px dashed purple;'>Click Me</li><li style='color: cyan; border: 1px solid blue;'>Login</li><li style='color: purple; border: 1px dashed cyan;'>Click Me</li></ul></footer> @keyframes fade-in { from { opacity: 0; } to { opacity: 1; } } @media (max-width: 600px) { font-size: 14px; }"
27"A responsive div with a grid layout using template '100px 1fr', containing items with small text and :hover { box-shadow: 0 0 10px rgba(0, 0, 0, 0.5); }.","<span style='display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px; :hover { background-color: #555; color: white; }'><li style='color: purple; border: 1px dotted purple;'>Login</li><li style='color: yellow; border: 1px dotted blue;'>Submit</li><li style='color: pink; border: 1px double pink;'>Enter Your Name</li><li style='color: purple; border: 1px solid yellow;'>Choose Option</li><li style='color: blue; border: 1px double red;'>Sign Up</li></span> @keyframes bounce { 0%, 20%, 50%, 80%, 100% { transform: translateY(0); } 40% { transform: translateY(-30px); } 60% { transform: translateY(-15px); } }"
28"A small h3 with red text, Tahoma font, 2px 2px 5px rgba(0, 0, 0, 0.3), and slide-up, displayed as none with space-between, responsive with media queries.","<textarea style='color: gray; font-size: 28px; font-family: Courier New; box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.3); display: grid; justify-content: center; animation: spin 2s; transition: all 0.3s ease;'>Login</textarea> @keyframes fade-in { from { opacity: 0; } to { opacity: 1; } } @media (max-width: 600px) { font-size: 14px; }"
29"A cyan button with medium Georgia text, using grid layout, aligned to the left, with 2px 2px 5px rgba(0, 0, 0, 0.3), spin, and a :hover { box-shadow: 0 0 10px rgba(0, 0, 0, 0.5); }.","<button style='background-color: white; font-size: 14px; font-family: Verdana; display: grid; text-align: left; box-shadow: 4px 4px 10px rgba(0, 0, 0, 0.5); animation: bounce 2s; transition: background-color 0.4s ease; :hover { box-shadow: 0 0 10px rgba(0, 0, 0, 0.5); }'>Enter Your Name</button> @keyframes slide-up { from { transform: translateY(100%); } to { transform: translateY(0); } }"
30"A responsive nav with a grid layout using template '100px 1fr', containing items with small text and :hover { transform: scale(1.1); }.","<select style='display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px; :hover { background-color: #555; color: white; }'><li style='color: orange; border: 1px groove red;'>Hello World</li><li style='color: cyan; border: 1px dotted blue;'>Enter Your Name</li><li style='color: pink; border: 1px groove cyan;'>Login</li><li style='color: red; border: 1px solid green;'>Enter Your Name</li><li style='color: purple; border: 1px groove gray;'>Login</li></select> @keyframes bounce { 0%, 20%, 50%, 80%, 100% { transform: translateY(0); } 40% { transform: translateY(-30px); } 60% { transform: translateY(-15px); } }"
31"A gray box with solid border, radial-gradient(circle, pink, purple) background, small text centered inside, using flex 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 double purple; font-size: 22px; text-align: center; display: grid; justify-content: space-between; align-items: center; animation: bounce 2s; transition: transform 0.2s ease-in-out; :hover { background-color: #555; color: white; }'>Enter Your Name</div> @keyframes fade-in { from { opacity: 0; } to { opacity: 1; } }"
32"A large button with yellow text, Times New Roman font, 4px 4px 10px rgba(0, 0, 0, 0.5), and slide-up, displayed as grid with flex-start, responsive with media queries.","<h1 style='color: pink; font-size: 12px; font-family: Courier New; box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); display: block; justify-content: space-around; animation: spin 2s; transition: background-color 0.4s ease;'>Sign Up</h1> @keyframes fade-in { from { opacity: 0; } to { opacity: 1; } } @media (max-width: 600px) { font-size: 14px; }"
33"A responsive h1 with a grid layout using template 'repeat(2, 1fr)', containing items with large text and :hover { transform: scale(1.1); }.",<header style='display: grid; grid-template-columns: 1fr 2fr; gap: 10px; :hover { transform: scale(1.1); }'><li style='color: black; border: 1px double orange;'>Choose Option</li><li style='color: orange; border: 1px double gray;'>Choose Option</li><li style='color: cyan; border: 1px solid red;'>Submit</li><li style='color: blue; border: 1px dashed black;'>Contact Us</li><li style='color: blue; border: 1px double black;'>Sign Up</li></header> @keyframes slide-up { from { transform: translateY(100%); } to { transform: translateY(0); } }
34"A red button with medium Verdana text, using 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: red; font-size: 24px; font-family: Courier New; display: block; text-align: center; box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.3); animation: bounce 2s; transition: all 0.3s ease; :hover { box-shadow: 0 0 10px rgba(0, 0, 0, 0.5); }'>Contact Us</button> @keyframes slide-up { from { transform: translateY(100%); } to { transform: translateY(0); } }"
35"A responsive footer with a grid layout using template '1fr 2fr', containing items with large text and :hover { background-color: #555; color: white; }.","<h2 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: white; border: 1px double pink;'>Choose Option</li><li style='color: gray; border: 1px groove purple;'>Choose Option</li><li style='color: pink; border: 1px ridge cyan;'>Contact Us</li><li style='color: orange; border: 1px dashed pink;'>Click Me</li><li style='color: black; border: 1px dotted black;'>Login</li></h2> @keyframes spin { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }"
36"A h2 containing a black button with linear-gradient(to right, red, yellow) background that says 'Hello World', followed by a small text description, with spin.","<h2><button style='background-color: radial-gradient(circle, pink, purple); font-size: 18px; animation: spin 2s;'>Click Me</button><p style='font-size: 18px;'>contact us</p></h2> @keyframes bounce { 0%, 20%, 50%, 80%, 100% { transform: translateY(0); } 40% { transform: translateY(-30px); } 60% { transform: translateY(-15px); } } transition: transform 0.2s ease-in-out;"
37"A gray button with large Helvetica text, using block layout, aligned to the right, with none, bounce, and a :hover { background-color: #555; color: white; }.","<button style='background-color: purple; font-size: 22px; font-family: Georgia; display: block; text-align: justify; box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.3); animation: fade-in 2s; transition: background-color 0.4s ease; :hover { background-color: #555; color: white; }'>Click Me</button> @keyframes slide-up { from { transform: translateY(100%); } to { transform: translateY(0); } }"
38"A nav containing a list of options with gray text, each inside a dotted box, with 2px 2px 5px rgba(0, 0, 0, 0.3), slide-up, and @media (max-width: 600px) { font-size: 14px; }.","<header><ul style='box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.3); animation: spin 1.5s;'><li style='color: black; border: 1px ridge black;'>Search</li><li style='color: white; border: 1px double blue;'>Contact Us</li><li style='color: yellow; border: 1px dashed blue;'>Sign Up</li><li style='color: white; border: 1px groove orange;'>Hello World</li><li style='color: red; border: 1px solid cyan;'>Sign Up</li></ul></header> @keyframes bounce { 0%, 20%, 50%, 80%, 100% { transform: translateY(0); } 40% { transform: translateY(-30px); } 60% { transform: translateY(-15px); } } @media (min-width: 1200px) { font-size: 18px; }"
39"A textarea containing a orange button with linear-gradient(to right, red, yellow) background that says 'Search', followed by a large text description, with slide-up.","<input><button style='background-color: radial-gradient(circle, pink, purple); font-size: 24px; animation: bounce 2s;'>Search</button><p style='font-size: 24px;'>hello world</p></input> @keyframes fade-in { from { opacity: 0; } to { opacity: 1; } } transition: transform 0.2s ease-in-out;"
40"A span containing a list of options with green 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: 4px 4px 10px rgba(0, 0, 0, 0.5); animation: bounce 1.5s;'><li style='color: white; border: 1px dashed cyan;'>Choose Option</li><li style='color: yellow; border: 1px double green;'>Submit</li><li style='color: green; border: 1px dotted yellow;'>Enter Your Name</li><li style='color: yellow; border: 1px double green;'>Sign Up</li><li style='color: pink; border: 1px dashed green;'>Contact Us</li></ul></h1> @keyframes spin { from { transform: rotate(0deg); } to { transform: rotate(360deg); } } @media (min-width: 1200px) { font-size: 18px; }"
41"A red button with large Verdana text, using grid layout, aligned to the right, with none, fade-in, and a :hover { background-color: #555; color: white; }.","<button style='background-color: red; font-size: 12px; font-family: Georgia; display: block; text-align: justify; box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.3); animation: bounce 2s; transition: transform 0.2s ease-in-out; :hover { box-shadow: 0 0 10px rgba(0, 0, 0, 0.5); }'>Search</button> @keyframes spin { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }"
42"A green box with solid border, linear-gradient(to bottom, blue, green) background, small 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: linear-gradient(to right, red, yellow); border: 2px ridge yellow; font-size: 24px; text-align: center; display: flex; justify-content: flex-end; align-items: center; animation: bounce 2s; transition: background-color 0.4s ease; :hover { transform: scale(1.1); }'>Submit</div> @keyframes slide-up { from { transform: translateY(100%); } to { transform: translateY(0); } }"
43"A button containing a list of options with gray text, each inside a solid box, with none, spin, and @media (min-width: 600px) and (max-width: 1200px) { font-size: 16px; }.",<span><ul style='box-shadow: none; animation: slide-up 1.5s;'><li style='color: blue; border: 1px dotted red;'>Hello World</li><li style='color: purple; border: 1px double pink;'>Sign Up</li><li style='color: black; border: 1px dotted pink;'>Login</li><li style='color: pink; border: 1px dotted white;'>Login</li><li style='color: cyan; border: 1px dashed cyan;'>Enter Your Name</li></ul></span> @keyframes slide-up { from { transform: translateY(100%); } to { transform: translateY(0); } } @media (min-width: 1200px) { font-size: 18px; }
44"A h1 containing a gray button with radial-gradient(circle, pink, purple) background that says 'Hello World', followed by a medium text description, with bounce.","<textarea><button style='background-color: linear-gradient(to right, red, yellow); font-size: 28px; animation: spin 2s;'>Enter Your Name</button><p style='font-size: 28px;'>click me</p></textarea> @keyframes slide-up { from { transform: translateY(100%); } to { transform: translateY(0); } } transition: background-color 0.4s ease;"
45"A large h1 with green text, Georgia font, 0 4px 8px rgba(0, 0, 0, 0.2), and fade-in, displayed as grid with space-between, responsive with media queries.","<p style='color: gray; font-size: 14px; font-family: Helvetica; box-shadow: none; display: grid; justify-content: flex-start; animation: bounce 2s; transition: all 0.3s ease;'>Login</p> @keyframes bounce { 0%, 20%, 50%, 80%, 100% { transform: translateY(0); } 40% { transform: translateY(-30px); } 60% { transform: translateY(-15px); } } @media (min-width: 1200px) { font-size: 18px; }"
46"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); }.",<h3 style='display: grid; grid-template-columns: 100px 1fr; gap: 10px; :hover { transform: scale(1.1); }'><li style='color: black; border: 1px dashed green;'>Sign Up</li><li style='color: white; border: 1px double gray;'>Enter Your Name</li><li style='color: red; border: 1px double purple;'>Enter Your Name</li><li style='color: black; border: 1px solid cyan;'>Contact Us</li><li style='color: pink; border: 1px dashed black;'>Search</li></h3> @keyframes fade-in { from { opacity: 0; } to { opacity: 1; } }
47"A div containing a list of options with cyan text, each inside a dashed box, with 4px 4px 10px rgba(0, 0, 0, 0.5), fade-in, and @media (max-width: 600px) { font-size: 14px; }.","<textarea><ul style='box-shadow: 4px 4px 10px rgba(0, 0, 0, 0.5); animation: fade-in 1.5s;'><li style='color: pink; border: 1px dashed blue;'>Sign Up</li><li style='color: green; border: 1px dashed gray;'>Hello World</li><li style='color: blue; border: 1px ridge cyan;'>Contact Us</li><li style='color: purple; border: 1px dashed cyan;'>Choose Option</li><li style='color: pink; border: 1px ridge black;'>Enter Your Name</li></ul></textarea> @keyframes bounce { 0%, 20%, 50%, 80%, 100% { transform: translateY(0); } 40% { transform: translateY(-30px); } 60% { transform: translateY(-15px); } } @media (min-width: 1200px) { font-size: 18px; }"
48"A small p with black text, Arial font, none, and fade-in, displayed as flex with space-between, responsive with media queries.",<nav style='color: blue; font-size: 16px; font-family: Times New Roman; box-shadow: none; display: block; justify-content: space-between; animation: bounce 2s; transition: all 0.3s ease;'>Sign Up</nav> @keyframes spin { from { transform: rotate(0deg); } to { transform: rotate(360deg); } } @media (max-width: 600px) { font-size: 14px; }
49"A cyan box with dotted border, linear-gradient(to bottom, blue, green) background, small text centered inside, using block layout, with :hover { background-color: #555; color: white; } and fade-in.","<div style='background: linear-gradient(to right, red, yellow); border: 2px ridge purple; font-size: 30px; text-align: center; display: inline-block; justify-content: flex-start; align-items: center; animation: fade-in 2s; transition: background-color 0.4s ease; :hover { background-color: #555; color: white; }'>Contact Us</div> @keyframes slide-up { from { transform: translateY(100%); } to { transform: translateY(0); } }"
50"A span containing a pink button with radial-gradient(circle, pink, purple) background that says 'Contact Us', followed by a small text description, with slide-up.","<footer><button style='background-color: linear-gradient(to bottom, blue, green); font-size: 22px; animation: spin 2s;'>Choose Option</button><p style='font-size: 22px;'>contact us</p></footer> @keyframes fade-in { from { opacity: 0; } to { opacity: 1; } } transition: background-color 0.4s ease;"
51"A white button with large Tahoma text, using inline-block layout, aligned to the justify, with 4px 4px 10px rgba(0, 0, 0, 0.5), bounce, and a :hover { box-shadow: 0 0 10px rgba(0, 0, 0, 0.5); }.","<button style='background-color: black; font-size: 14px; font-family: Times New Roman; display: flex; text-align: justify; box-shadow: none; animation: slide-up 2s; transition: transform 0.2s ease-in-out; :hover { box-shadow: 0 0 10px rgba(0, 0, 0, 0.5); }'>Submit</button> @keyframes bounce { 0%, 20%, 50%, 80%, 100% { transform: translateY(0); } 40% { transform: translateY(-30px); } 60% { transform: translateY(-15px); } }"
52"A responsive header with a grid layout using template 'repeat(2, 1fr)', containing items with large text and :hover { transform: scale(1.1); }.",<nav style='display: grid; grid-template-columns: 1fr 2fr; gap: 10px; :hover { background-color: #555; color: white; }'><li style='color: cyan; border: 1px dashed black;'>Enter Your Name</li><li style='color: pink; border: 1px double green;'>Contact Us</li><li style='color: white; border: 1px groove green;'>Enter Your Name</li><li style='color: black; border: 1px groove orange;'>Sign Up</li><li style='color: cyan; border: 1px solid pink;'>Click Me</li></nav> @keyframes spin { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }
53"A h3 containing a list of options with red text, each inside a groove box, with 0 4px 8px rgba(0, 0, 0, 0.2), fade-in, and @media (min-width: 1200px) { font-size: 18px; }.","<h2><ul style='box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); animation: fade-in 1.5s;'><li style='color: pink; border: 1px solid white;'>Submit</li><li style='color: pink; border: 1px dotted orange;'>Enter Your Name</li><li style='color: pink; border: 1px solid green;'>Contact Us</li><li style='color: gray; border: 1px ridge orange;'>Enter Your Name</li><li style='color: red; border: 1px dashed orange;'>Login</li></ul></h2> @keyframes spin { from { transform: rotate(0deg); } to { transform: rotate(360deg); } } @media (min-width: 1200px) { font-size: 18px; }"
54"A header containing a purple button with linear-gradient(to bottom, blue, green) background that says 'Click Me', followed by a medium text description, with bounce.","<footer><button style='background-color: radial-gradient(circle, pink, purple); font-size: 18px; animation: bounce 2s;'>Contact Us</button><p style='font-size: 18px;'>search</p></footer> @keyframes spin { from { transform: rotate(0deg); } to { transform: rotate(360deg); } } transition: transform 0.2s ease-in-out;"
55"A textarea containing a list of options with red 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; }.","<h1><ul style='box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); animation: fade-in 1.5s;'><li style='color: black; border: 1px dotted purple;'>Hello World</li><li style='color: cyan; border: 1px dashed gray;'>Contact Us</li><li style='color: orange; border: 1px double pink;'>Search</li><li style='color: black; border: 1px ridge yellow;'>Choose Option</li><li style='color: black; border: 1px dashed black;'>Hello World</li></ul></h1> @keyframes spin { from { transform: rotate(0deg); } to { transform: rotate(360deg); } } @media (min-width: 1200px) { font-size: 18px; }"
56"A cyan box with dashed border, linear-gradient(to right, red, yellow) background, large text centered inside, using grid layout, with :hover { transform: scale(1.1); } and bounce.","<div style='background: radial-gradient(circle, pink, purple); border: 2px ridge purple; font-size: 14px; text-align: center; display: grid; justify-content: space-between; align-items: center; animation: spin 2s; transition: all 0.3s ease; :hover { background-color: #555; color: white; }'>Choose Option</div> @keyframes spin { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }"
57"A green box with groove border, linear-gradient(to right, red, yellow) background, medium text centered inside, using block layout, with :hover { transform: scale(1.1); } and bounce.","<div style='background: radial-gradient(circle, pink, purple); border: 2px solid red; font-size: 12px; text-align: center; display: grid; justify-content: center; align-items: center; animation: fade-in 2s; transition: all 0.3s ease; :hover { box-shadow: 0 0 10px rgba(0, 0, 0, 0.5); }'>Choose Option</div> @keyframes fade-in { from { opacity: 0; } to { opacity: 1; } }"
58"A small h1 with orange text, Courier New font, none, and fade-in, displayed as flex with space-around, responsive with media queries.","<button style='color: yellow; font-size: 20px; font-family: Tahoma; box-shadow: 4px 4px 10px rgba(0, 0, 0, 0.5); display: none; justify-content: flex-start; animation: slide-up 2s; transition: transform 0.2s ease-in-out;'>Login</button> @keyframes bounce { 0%, 20%, 50%, 80%, 100% { transform: translateY(0); } 40% { transform: translateY(-30px); } 60% { transform: translateY(-15px); } } @media (max-width: 600px) { font-size: 14px; }"
59"A red button with large Times New Roman 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: white; font-size: 14px; font-family: Tahoma; display: grid; text-align: center; box-shadow: none; animation: slide-up 2s; transition: all 0.3s ease; :hover { background-color: #555; color: white; }'>Login</button> @keyframes fade-in { from { opacity: 0; } to { opacity: 1; } }
60"A green box with dashed border, linear-gradient(to right, red, yellow) background, small text centered inside, using block layout, with :hover { box-shadow: 0 0 10px rgba(0, 0, 0, 0.5); } and bounce.","<div style='background: radial-gradient(circle, pink, purple); border: 2px groove black; font-size: 16px; text-align: center; display: inline-block; justify-content: center; align-items: center; animation: fade-in 2s; transition: background-color 0.4s ease; :hover { background-color: #555; color: white; }'>Click Me</div> @keyframes fade-in { from { opacity: 0; } to { opacity: 1; } }"
61"A span containing a orange button with linear-gradient(to right, red, yellow) background that says 'Hello World', followed by a small text description, with fade-in.","<h2><button style='background-color: linear-gradient(to bottom, blue, green); font-size: 22px; animation: slide-up 2s;'>Contact Us</button><p style='font-size: 22px;'>hello world</p></h2> @keyframes spin { from { transform: rotate(0deg); } to { transform: rotate(360deg); } } transition: all 0.3s ease;"
62"A purple box with solid 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: radial-gradient(circle, pink, purple); border: 2px dotted yellow; font-size: 14px; text-align: center; display: flex; justify-content: space-between; align-items: center; animation: spin 2s; transition: transform 0.2s ease-in-out; :hover { background-color: #555; color: white; }'>Contact Us</div> @keyframes bounce { 0%, 20%, 50%, 80%, 100% { transform: translateY(0); } 40% { transform: translateY(-30px); } 60% { transform: translateY(-15px); } }"
63"A cyan button with large Georgia text, using inline-block layout, aligned to the right, with 0 4px 8px rgba(0, 0, 0, 0.2), fade-in, and a :hover { box-shadow: 0 0 10px rgba(0, 0, 0, 0.5); }.",<button style='background-color: cyan; font-size: 14px; font-family: Courier New; display: inline-block; text-align: center; box-shadow: none; animation: spin 2s; transition: all 0.3s ease; :hover { background-color: #555; color: white; }'>Hello World</button> @keyframes spin { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }
64"A red button with medium Courier New text, using none 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: gray; font-size: 14px; font-family: Georgia; display: inline-block; text-align: justify; box-shadow: 4px 4px 10px rgba(0, 0, 0, 0.5); animation: fade-in 2s; transition: background-color 0.4s ease; :hover { box-shadow: 0 0 10px rgba(0, 0, 0, 0.5); }'>Login</button> @keyframes bounce { 0%, 20%, 50%, 80%, 100% { transform: translateY(0); } 40% { transform: translateY(-30px); } 60% { transform: translateY(-15px); } }"
65"A purple button with medium Arial text, using block layout, aligned to the left, with 4px 4px 10px rgba(0, 0, 0, 0.5), fade-in, and a :hover { transform: scale(1.1); }.","<button style='background-color: blue; font-size: 14px; font-family: Helvetica; display: flex; text-align: left; box-shadow: 4px 4px 10px rgba(0, 0, 0, 0.5); animation: slide-up 2s; transition: transform 0.2s ease-in-out; :hover { background-color: #555; color: white; }'>Sign Up</button> @keyframes spin { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }"
66"A h2 containing a purple button with linear-gradient(to bottom, blue, green) background that says 'Sign Up', followed by a medium text description, with spin.","<div><button style='background-color: linear-gradient(to right, red, yellow); font-size: 30px; animation: spin 2s;'>Login</button><p style='font-size: 30px;'>hello world</p></div> @keyframes spin { from { transform: rotate(0deg); } to { transform: rotate(360deg); } } transition: background-color 0.4s ease;"
67"A large h1 with black text, Verdana font, 4px 4px 10px rgba(0, 0, 0, 0.5), and fade-in, displayed as inline-block with center, responsive with media queries.","<input style='color: red; font-size: 20px; font-family: Georgia; box-shadow: none; display: none; justify-content: flex-start; animation: spin 2s; transition: background-color 0.4s ease;'>Hello World</input> @keyframes bounce { 0%, 20%, 50%, 80%, 100% { transform: translateY(0); } 40% { transform: translateY(-30px); } 60% { transform: translateY(-15px); } } @media (min-width: 1200px) { font-size: 18px; }"
68"A green button with small Arial text, using block layout, aligned to the right, with 2px 2px 5px rgba(0, 0, 0, 0.3), spin, and a :hover { transform: scale(1.1); }.","<button style='background-color: pink; font-size: 22px; font-family: Courier New; display: none; text-align: right; box-shadow: none; animation: slide-up 2s; transition: all 0.3s ease; :hover { box-shadow: 0 0 10px rgba(0, 0, 0, 0.5); }'>Search</button> @keyframes spin { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }"
69"A responsive textarea with a grid layout using template 'repeat(3, 1fr)', containing items with small text and :hover { background-color: #555; color: white; }.",<nav style='display: grid; grid-template-columns: 100px 1fr; gap: 10px; :hover { transform: scale(1.1); }'><li style='color: cyan; border: 1px dotted red;'>Choose Option</li><li style='color: orange; border: 1px groove black;'>Submit</li><li style='color: green; border: 1px ridge white;'>Submit</li><li style='color: green; border: 1px double green;'>Login</li><li style='color: purple; border: 1px dashed white;'>Submit</li></nav> @keyframes fade-in { from { opacity: 0; } to { opacity: 1; } }
70"A white box with double border, linear-gradient(to bottom, blue, green) background, medium text centered inside, using flex layout, with :hover { transform: scale(1.1); } and bounce.","<div style='background: linear-gradient(to bottom, blue, green); border: 2px double purple; font-size: 26px; text-align: center; display: inline-block; justify-content: flex-start; align-items: center; animation: fade-in 2s; transition: background-color 0.4s ease; :hover { box-shadow: 0 0 10px rgba(0, 0, 0, 0.5); }'>Sign Up</div> @keyframes bounce { 0%, 20%, 50%, 80%, 100% { transform: translateY(0); } 40% { transform: translateY(-30px); } 60% { transform: translateY(-15px); } }"
71"A responsive span with a grid layout using template 'repeat(2, 1fr)', containing items with medium text and :hover { background-color: #555; color: white; }.","<nav style='display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px; :hover { transform: scale(1.1); }'><li style='color: purple; border: 1px double red;'>Login</li><li style='color: gray; border: 1px ridge yellow;'>Hello World</li><li style='color: black; border: 1px double gray;'>Login</li><li style='color: purple; border: 1px double blue;'>Submit</li><li style='color: blue; border: 1px groove orange;'>Enter Your Name</li></nav> @keyframes slide-up { from { transform: translateY(100%); } to { transform: translateY(0); } }"
72"A medium span with gray text, Times New Roman font, 4px 4px 10px rgba(0, 0, 0, 0.5), and spin, displayed as grid with center, responsive with media queries.","<input style='color: red; font-size: 20px; font-family: Tahoma; box-shadow: 4px 4px 10px rgba(0, 0, 0, 0.5); display: flex; justify-content: flex-start; animation: fade-in 2s; transition: all 0.3s ease;'>Click Me</input> @keyframes bounce { 0%, 20%, 50%, 80%, 100% { transform: translateY(0); } 40% { transform: translateY(-30px); } 60% { transform: translateY(-15px); } } @media (min-width: 1200px) { font-size: 18px; }"
73"A blue box with double border, radial-gradient(circle, pink, purple) background, small text centered inside, using flex layout, with :hover { transform: scale(1.1); } and bounce.","<div style='background: linear-gradient(to right, red, yellow); border: 2px solid red; font-size: 28px; text-align: center; display: inline-block; justify-content: space-between; align-items: center; animation: spin 2s; transition: all 0.3s ease; :hover { background-color: #555; color: white; }'>Click Me</div> @keyframes spin { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }"
74"A p containing a list of options with white text, each inside a dashed box, with 4px 4px 10px rgba(0, 0, 0, 0.5), slide-up, and @media (min-width: 1200px) { font-size: 18px; }.","<h2><ul style='box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); animation: fade-in 1.5s;'><li style='color: blue; border: 1px double green;'>Enter Your Name</li><li style='color: yellow; border: 1px ridge yellow;'>Sign Up</li><li style='color: gray; border: 1px dashed cyan;'>Click Me</li><li style='color: pink; border: 1px dotted white;'>Submit</li><li style='color: blue; border: 1px solid purple;'>Submit</li></ul></h2> @keyframes fade-in { from { opacity: 0; } to { opacity: 1; } } @media (min-width: 600px) and (max-width: 1200px) { font-size: 16px; }"
75"A h2 containing a list of options with white text, each inside a ridge box, with 0 4px 8px rgba(0, 0, 0, 0.2), fade-in, and @media (min-width: 600px) and (max-width: 1200px) { font-size: 16px; }.","<div><ul style='box-shadow: 4px 4px 10px rgba(0, 0, 0, 0.5); animation: fade-in 1.5s;'><li style='color: green; border: 1px dashed orange;'>Submit</li><li style='color: white; border: 1px dotted green;'>Click Me</li><li style='color: white; border: 1px solid purple;'>Login</li><li style='color: gray; border: 1px solid cyan;'>Sign Up</li><li style='color: white; border: 1px solid gray;'>Sign Up</li></ul></div> @keyframes fade-in { from { opacity: 0; } to { opacity: 1; } } @media (min-width: 1200px) { font-size: 18px; }"
76"A purple button with small Arial text, using flex layout, aligned to the left, with 0 4px 8px rgba(0, 0, 0, 0.2), bounce, and a :hover { box-shadow: 0 0 10px rgba(0, 0, 0, 0.5); }.","<button style='background-color: gray; font-size: 30px; font-family: Times New Roman; display: inline-block; text-align: right; box-shadow: 4px 4px 10px rgba(0, 0, 0, 0.5); animation: slide-up 2s; transition: all 0.3s ease; :hover { box-shadow: 0 0 10px rgba(0, 0, 0, 0.5); }'>Search</button> @keyframes slide-up { from { transform: translateY(100%); } to { transform: translateY(0); } }"
77"A h3 containing a list of options with cyan text, each inside a dashed box, with 2px 2px 5px rgba(0, 0, 0, 0.3), spin, 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: white; border: 1px double yellow;'>Click Me</li><li style='color: black; border: 1px groove green;'>Search</li><li style='color: pink; border: 1px dotted green;'>Sign Up</li><li style='color: cyan; border: 1px dashed green;'>Contact Us</li><li style='color: pink; border: 1px dotted orange;'>Sign Up</li></ul></span> @keyframes bounce { 0%, 20%, 50%, 80%, 100% { transform: translateY(0); } 40% { transform: translateY(-30px); } 60% { transform: translateY(-15px); } } @media (min-width: 1200px) { font-size: 18px; }"
78"A select containing a list of options with gray text, each inside a groove box, with 0 4px 8px rgba(0, 0, 0, 0.2), slide-up, and @media (max-width: 600px) { font-size: 14px; }.","<div><ul style='box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); animation: spin 1.5s;'><li style='color: purple; border: 1px solid orange;'>Search</li><li style='color: orange; border: 1px groove cyan;'>Hello World</li><li style='color: orange; border: 1px dotted purple;'>Choose Option</li><li style='color: blue; border: 1px ridge black;'>Choose Option</li><li style='color: green; border: 1px ridge cyan;'>Sign Up</li></ul></div> @keyframes slide-up { from { transform: translateY(100%); } to { transform: translateY(0); } } @media (min-width: 600px) and (max-width: 1200px) { font-size: 16px; }"
79"A h3 containing a green button with linear-gradient(to right, red, yellow) background that says 'Sign Up', followed by a medium text description, with slide-up.","<p><button style='background-color: linear-gradient(to right, red, yellow); font-size: 12px; animation: slide-up 2s;'>Sign Up</button><p style='font-size: 12px;'>click me</p></p> @keyframes spin { from { transform: rotate(0deg); } to { transform: rotate(360deg); } } transition: background-color 0.4s ease;"
80"A responsive nav with a grid layout using template 'repeat(3, 1fr)', containing items with small text and :hover { background-color: #555; color: white; }.","<nav style='display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; :hover { background-color: #555; color: white; }'><li style='color: black; border: 1px dotted yellow;'>Login</li><li style='color: white; border: 1px dotted green;'>Choose Option</li><li style='color: gray; border: 1px solid red;'>Submit</li><li style='color: yellow; border: 1px dashed cyan;'>Search</li><li style='color: blue; border: 1px dotted black;'>Choose Option</li></nav> @keyframes fade-in { from { opacity: 0; } to { opacity: 1; } }"
81"A orange button with medium Arial text, using none layout, aligned to the center, with 2px 2px 5px rgba(0, 0, 0, 0.3), fade-in, and a :hover { background-color: #555; color: white; }.","<button style='background-color: pink; font-size: 18px; font-family: Tahoma; display: grid; 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; }'>Choose Option</button> @keyframes fade-in { from { opacity: 0; } to { opacity: 1; } }"
82"A white button with small Georgia text, using flex layout, aligned to the center, with 0 4px 8px rgba(0, 0, 0, 0.2), spin, and a :hover { background-color: #555; color: white; }.","<button style='background-color: black; font-size: 28px; font-family: Tahoma; display: inline-block; text-align: right; box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); animation: bounce 2s; transition: all 0.3s ease; :hover { box-shadow: 0 0 10px rgba(0, 0, 0, 0.5); }'>Submit</button> @keyframes fade-in { from { opacity: 0; } to { opacity: 1; } }"
83"A responsive h1 with a grid layout using template 'repeat(2, 1fr)', containing items with large text and :hover { background-color: #555; color: white; }.","<div 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: green; border: 1px dotted yellow;'>Login</li><li style='color: gray; border: 1px double purple;'>Submit</li><li style='color: pink; border: 1px groove blue;'>Click Me</li><li style='color: yellow; border: 1px groove yellow;'>Sign Up</li><li style='color: black; border: 1px groove orange;'>Contact Us</li></div> @keyframes bounce { 0%, 20%, 50%, 80%, 100% { transform: translateY(0); } 40% { transform: translateY(-30px); } 60% { transform: translateY(-15px); } }"
84"A small div with red text, Georgia font, 4px 4px 10px rgba(0, 0, 0, 0.5), and fade-in, displayed as flex with space-around, responsive with media queries.","<header style='color: purple; font-size: 22px; font-family: Georgia; box-shadow: 4px 4px 10px rgba(0, 0, 0, 0.5); display: block; justify-content: space-around; animation: spin 2s; transition: all 0.3s ease;'>Click Me</header> @keyframes slide-up { from { transform: translateY(100%); } to { transform: translateY(0); } } @media (min-width: 600px) and (max-width: 1200px) { font-size: 16px; }"
85"A gray button with large Georgia text, using inline-block layout, aligned to the right, with 0 4px 8px rgba(0, 0, 0, 0.2), slide-up, and a :hover { background-color: #555; color: white; }.","<button style='background-color: purple; font-size: 16px; font-family: Tahoma; display: inline-block; text-align: right; box-shadow: none; animation: fade-in 2s; transition: background-color 0.4s ease; :hover { background-color: #555; color: white; }'>Choose Option</button> @keyframes bounce { 0%, 20%, 50%, 80%, 100% { transform: translateY(0); } 40% { transform: translateY(-30px); } 60% { transform: translateY(-15px); } }"
86"A responsive h3 with a grid layout using template 'repeat(2, 1fr)', containing items with large text and :hover { background-color: #555; color: white; }.",<h1 style='display: grid; grid-template-columns: 1fr 2fr; gap: 10px; :hover { transform: scale(1.1); }'><li style='color: cyan; border: 1px solid red;'>Click Me</li><li style='color: black; border: 1px dotted cyan;'>Click Me</li><li style='color: green; border: 1px double black;'>Contact Us</li><li style='color: cyan; border: 1px double gray;'>Click Me</li><li style='color: cyan; border: 1px groove green;'>Login</li></h1> @keyframes slide-up { from { transform: translateY(100%); } to { transform: translateY(0); } }
87"A small div with red text, Verdana font, 4px 4px 10px rgba(0, 0, 0, 0.5), and spin, displayed as grid with flex-end, responsive with media queries.","<input style='color: gray; font-size: 26px; font-family: Tahoma; box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.3); display: block; justify-content: space-between; animation: spin 2s; transition: background-color 0.4s ease;'>Login</input> @keyframes spin { from { transform: rotate(0deg); } to { transform: rotate(360deg); } } @media (min-width: 600px) and (max-width: 1200px) { font-size: 16px; }"
88"A small h3 with yellow 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.","<header style='color: yellow; font-size: 18px; font-family: Helvetica; box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); display: block; justify-content: center; animation: slide-up 2s; transition: background-color 0.4s ease;'>Search</header> @keyframes bounce { 0%, 20%, 50%, 80%, 100% { transform: translateY(0); } 40% { transform: translateY(-30px); } 60% { transform: translateY(-15px); } } @media (min-width: 600px) and (max-width: 1200px) { font-size: 16px; }"
89"A responsive p with a grid layout using template '100px 1fr', containing items with medium text and :hover { transform: scale(1.1); }.","<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: green; border: 1px dashed cyan;'>Click Me</li><li style='color: red; border: 1px ridge blue;'>Hello World</li><li style='color: pink; border: 1px double black;'>Login</li><li style='color: purple; border: 1px double purple;'>Submit</li><li style='color: white; border: 1px double orange;'>Click Me</li></input> @keyframes spin { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }"
90"A h1 containing a green button with radial-gradient(circle, pink, purple) background that says 'Login', followed by a medium text description, with fade-in.","<select><button style='background-color: radial-gradient(circle, pink, purple); font-size: 20px; animation: slide-up 2s;'>Contact Us</button><p style='font-size: 20px;'>enter your name</p></select> @keyframes spin { from { transform: rotate(0deg); } to { transform: rotate(360deg); } } transition: all 0.3s ease;"
91"A responsive h3 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); }.","<textarea 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: orange; border: 1px groove purple;'>Click Me</li><li style='color: yellow; border: 1px double orange;'>Login</li><li style='color: yellow; border: 1px double yellow;'>Sign Up</li><li style='color: purple; border: 1px ridge green;'>Contact Us</li><li style='color: orange; border: 1px groove white;'>Choose Option</li></textarea> @keyframes bounce { 0%, 20%, 50%, 80%, 100% { transform: translateY(0); } 40% { transform: translateY(-30px); } 60% { transform: translateY(-15px); } }"
92"A responsive div with a grid layout using template '1fr 2fr', containing items with small text and :hover { background-color: #555; color: white; }.","<header style='display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px; :hover { transform: scale(1.1); }'><li style='color: black; border: 1px solid cyan;'>Click Me</li><li style='color: black; border: 1px dashed green;'>Enter Your Name</li><li style='color: green; border: 1px solid pink;'>Sign Up</li><li style='color: orange; border: 1px dashed green;'>Search</li><li style='color: orange; border: 1px double green;'>Click Me</li></header> @keyframes fade-in { from { opacity: 0; } to { opacity: 1; } }"
93"A footer containing a purple button with radial-gradient(circle, pink, purple) background that says 'Click Me', followed by a large text description, with bounce.","<h3><button style='background-color: radial-gradient(circle, pink, purple); font-size: 12px; animation: bounce 2s;'>Click Me</button><p style='font-size: 12px;'>enter your name</p></h3> @keyframes fade-in { from { opacity: 0; } to { opacity: 1; } } transition: transform 0.2s ease-in-out;"
94"A yellow box with groove border, linear-gradient(to bottom, blue, green) background, medium text centered inside, using block layout, with :hover { background-color: #555; color: white; } and bounce.","<div style='background: linear-gradient(to right, red, yellow); border: 2px groove cyan; font-size: 12px; text-align: center; display: none; justify-content: space-between; align-items: center; animation: spin 2s; transition: background-color 0.4s ease; :hover { transform: scale(1.1); }'>Sign Up</div> @keyframes slide-up { from { transform: translateY(100%); } to { transform: translateY(0); } }"
95"A black box with solid border, radial-gradient(circle, pink, purple) background, small text centered inside, using block 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 dashed gray; font-size: 12px; text-align: center; display: grid; justify-content: flex-end; align-items: center; animation: spin 2s; transition: background-color 0.4s ease; :hover { transform: scale(1.1); }'>Choose Option</div> @keyframes slide-up { from { transform: translateY(100%); } to { transform: translateY(0); } }"
96"A button containing a list of options with blue text, each inside a solid box, with 0 4px 8px rgba(0, 0, 0, 0.2), spin, and @media (max-width: 600px) { font-size: 14px; }.","<select><ul style='box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); animation: bounce 1.5s;'><li style='color: cyan; border: 1px dashed blue;'>Hello World</li><li style='color: black; border: 1px groove red;'>Hello World</li><li style='color: white; border: 1px dotted white;'>Enter Your Name</li><li style='color: black; border: 1px dotted black;'>Login</li><li style='color: orange; border: 1px dotted orange;'>Choose Option</li></ul></select> @keyframes spin { from { transform: rotate(0deg); } to { transform: rotate(360deg); } } @media (min-width: 600px) and (max-width: 1200px) { font-size: 16px; }"
97"A span containing a gray button with linear-gradient(to right, red, yellow) background that says 'Sign Up', followed by a large text description, with fade-in.","<h3><button style='background-color: radial-gradient(circle, pink, purple); font-size: 22px; animation: bounce 2s;'>Click Me</button><p style='font-size: 22px;'>search</p></h3> @keyframes fade-in { from { opacity: 0; } to { opacity: 1; } } transition: transform 0.2s ease-in-out;"
98"A white box with dotted border, linear-gradient(to bottom, blue, green) background, large text centered inside, using block layout, with :hover { transform: scale(1.1); } and slide-up.","<div style='background: radial-gradient(circle, pink, purple); border: 2px ridge red; font-size: 22px; text-align: center; display: block; justify-content: flex-start; align-items: center; animation: bounce 2s; transition: background-color 0.4s ease; :hover { background-color: #555; color: white; }'>Click Me</div> @keyframes bounce { 0%, 20%, 50%, 80%, 100% { transform: translateY(0); } 40% { transform: translateY(-30px); } 60% { transform: translateY(-15px); } }"
99"A h3 containing a list of options with pink text, each inside a dotted box, with 0 4px 8px rgba(0, 0, 0, 0.2), slide-up, and @media (min-width: 1200px) { font-size: 18px; }.",<input><ul style='box-shadow: none; animation: slide-up 1.5s;'><li style='color: pink; border: 1px dotted orange;'>Login</li><li style='color: pink; border: 1px double gray;'>Submit</li><li style='color: blue; border: 1px dotted purple;'>Choose Option</li><li style='color: cyan; border: 1px ridge white;'>Submit</li><li style='color: gray; border: 1px dashed purple;'>Sign Up</li></ul></input> @keyframes slide-up { from { transform: translateY(100%); } to { transform: translateY(0); } } @media (max-width: 600px) { font-size: 14px; }
100"A medium input with gray text, Helvetica font, none, and spin, displayed as none with space-around, responsive with media queries.","<select style='color: purple; font-size: 18px; font-family: Times New Roman; box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); display: grid; justify-content: flex-start; animation: spin 2s; transition: transform 0.2s ease-in-out;'>Choose Option</select> @keyframes slide-up { from { transform: translateY(100%); } to { transform: translateY(0); } } @media (min-width: 600px) and (max-width: 1200px) { font-size: 16px; }"
101"A black box with double border, linear-gradient(to bottom, blue, green) background, large text centered inside, using block layout, with :hover { box-shadow: 0 0 10px rgba(0, 0, 0, 0.5); } and bounce.","<div style='background: linear-gradient(to bottom, blue, green); border: 2px dotted blue; font-size: 28px; 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); }'>Submit</div> @keyframes spin { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }"
102"A h3 containing a list of options with red text, each inside a solid box, with 0 4px 8px rgba(0, 0, 0, 0.2), spin, and @media (min-width: 1200px) { font-size: 18px; }.","<footer><ul style='box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.3); animation: spin 1.5s;'><li style='color: cyan; border: 1px ridge gray;'>Enter Your Name</li><li style='color: purple; border: 1px groove pink;'>Sign Up</li><li style='color: blue; border: 1px dashed purple;'>Submit</li><li style='color: orange; border: 1px ridge cyan;'>Submit</li><li style='color: orange; border: 1px double gray;'>Search</li></ul></footer> @keyframes slide-up { from { transform: translateY(100%); } to { transform: translateY(0); } } @media (min-width: 1200px) { font-size: 18px; }"
103"A small p with gray text, Verdana font, none, and fade-in, displayed as block with space-around, responsive with media queries.","<p style='color: orange; font-size: 26px; font-family: Helvetica; box-shadow: 4px 4px 10px rgba(0, 0, 0, 0.5); display: grid; justify-content: flex-start; animation: slide-up 2s; transition: background-color 0.4s ease;'>Login</p> @keyframes slide-up { from { transform: translateY(100%); } to { transform: translateY(0); } } @media (max-width: 600px) { font-size: 14px; }"
104"A black button with large Helvetica text, using inline-block layout, aligned to the right, with 2px 2px 5px rgba(0, 0, 0, 0.3), bounce, and a :hover { background-color: #555; color: white; }.","<button style='background-color: purple; font-size: 16px; font-family: Courier New; display: inline-block; text-align: right; box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); animation: bounce 2s; transition: transform 0.2s ease-in-out; :hover { box-shadow: 0 0 10px rgba(0, 0, 0, 0.5); }'>Search</button> @keyframes slide-up { from { transform: translateY(100%); } to { transform: translateY(0); } }"
105"A medium footer with gray text, Georgia font, 4px 4px 10px rgba(0, 0, 0, 0.5), and spin, displayed as none with flex-end, responsive with media queries.",<footer style='color: white; font-size: 24px; font-family: Georgia; box-shadow: none; display: inline-block; justify-content: flex-start; animation: fade-in 2s; transition: background-color 0.4s ease;'>Submit</footer> @keyframes fade-in { from { opacity: 0; } to { opacity: 1; } } @media (min-width: 1200px) { font-size: 18px; }
106"A responsive select with a grid layout using template '100px 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: 100px 1fr; gap: 10px; :hover { box-shadow: 0 0 10px rgba(0, 0, 0, 0.5); }'><li style='color: white; border: 1px double orange;'>Sign Up</li><li style='color: red; border: 1px solid white;'>Sign Up</li><li style='color: black; border: 1px double yellow;'>Sign Up</li><li style='color: orange; border: 1px solid green;'>Login</li><li style='color: green; border: 1px ridge gray;'>Hello World</li></input> @keyframes slide-up { from { transform: translateY(100%); } to { transform: translateY(0); } }"
107"A green button with small Verdana text, using grid layout, aligned to the left, with none, bounce, and a :hover { box-shadow: 0 0 10px rgba(0, 0, 0, 0.5); }.","<button style='background-color: yellow; font-size: 20px; font-family: Times New Roman; display: none; text-align: center; box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.3); animation: slide-up 2s; transition: background-color 0.4s ease; :hover { background-color: #555; color: white; }'>Choose Option</button> @keyframes bounce { 0%, 20%, 50%, 80%, 100% { transform: translateY(0); } 40% { transform: translateY(-30px); } 60% { transform: translateY(-15px); } }"
108"A green box with ridge border, linear-gradient(to bottom, blue, green) background, medium text centered inside, using inline-block layout, with :hover { background-color: #555; color: white; } and bounce.","<div style='background: linear-gradient(to right, red, yellow); border: 2px dashed cyan; font-size: 12px; text-align: center; display: flex; justify-content: flex-start; align-items: center; animation: slide-up 2s; transition: all 0.3s ease; :hover { background-color: #555; color: white; }'>Contact Us</div> @keyframes slide-up { from { transform: translateY(100%); } to { transform: translateY(0); } }"
109"A small input with gray text, Tahoma font, 2px 2px 5px rgba(0, 0, 0, 0.3), and slide-up, displayed as flex with space-between, responsive with media queries.","<textarea style='color: purple; font-size: 26px; font-family: Arial; box-shadow: 4px 4px 10px rgba(0, 0, 0, 0.5); display: inline-block; justify-content: flex-end; animation: slide-up 2s; transition: background-color 0.4s ease;'>Submit</textarea> @keyframes slide-up { from { transform: translateY(100%); } to { transform: translateY(0); } } @media (min-width: 1200px) { font-size: 18px; }"
110"A blue box with ridge border, radial-gradient(circle, pink, purple) background, medium text centered inside, using none layout, with :hover { background-color: #555; color: white; } and slide-up.","<div style='background: linear-gradient(to bottom, blue, green); border: 2px double white; font-size: 12px; text-align: center; display: none; justify-content: flex-start; align-items: center; animation: slide-up 2s; transition: background-color 0.4s ease; :hover { background-color: #555; color: white; }'>Hello World</div> @keyframes bounce { 0%, 20%, 50%, 80%, 100% { transform: translateY(0); } 40% { transform: translateY(-30px); } 60% { transform: translateY(-15px); } }"
111"A footer containing a orange button with linear-gradient(to right, red, yellow) background that says 'Click Me', followed by a large text description, with bounce.","<div><button style='background-color: linear-gradient(to bottom, blue, green); font-size: 14px; animation: slide-up 2s;'>Contact Us</button><p style='font-size: 14px;'>sign up</p></div> @keyframes slide-up { from { transform: translateY(100%); } to { transform: translateY(0); } } transition: all 0.3s ease;"
112"A button containing a list of options with blue text, each inside a double box, with none, fade-in, and @media (min-width: 1200px) { font-size: 18px; }.","<footer><ul style='box-shadow: 4px 4px 10px rgba(0, 0, 0, 0.5); animation: slide-up 1.5s;'><li style='color: green; border: 1px groove white;'>Click Me</li><li style='color: green; border: 1px double purple;'>Contact Us</li><li style='color: black; border: 1px dotted pink;'>Contact Us</li><li style='color: orange; border: 1px ridge purple;'>Login</li><li style='color: cyan; border: 1px solid red;'>Hello World</li></ul></footer> @keyframes spin { from { transform: rotate(0deg); } to { transform: rotate(360deg); } } @media (max-width: 600px) { font-size: 14px; }"
113"A gray button with medium Times New Roman text, using grid layout, aligned to the justify, with none, bounce, and a :hover { transform: scale(1.1); }.","<button style='background-color: green; font-size: 28px; font-family: Tahoma; display: inline-block; text-align: center; box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.3); animation: bounce 2s; transition: all 0.3s ease; :hover { box-shadow: 0 0 10px rgba(0, 0, 0, 0.5); }'>Submit</button> @keyframes spin { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }"
114"A select containing a white button with radial-gradient(circle, pink, purple) background that says 'Submit', followed by a medium text description, with fade-in.","<textarea><button style='background-color: linear-gradient(to bottom, blue, green); font-size: 20px; animation: bounce 2s;'>Contact Us</button><p style='font-size: 20px;'>search</p></textarea> @keyframes fade-in { from { opacity: 0; } to { opacity: 1; } } transition: transform 0.2s ease-in-out;"
115"A select containing a list of options with blue text, each inside a double box, with 2px 2px 5px rgba(0, 0, 0, 0.3), spin, and @media (min-width: 1200px) { font-size: 18px; }.","<button><ul style='box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.3); animation: slide-up 1.5s;'><li style='color: blue; border: 1px dashed gray;'>Submit</li><li style='color: white; border: 1px groove yellow;'>Choose Option</li><li style='color: pink; border: 1px double purple;'>Search</li><li style='color: blue; border: 1px dotted yellow;'>Click Me</li><li style='color: yellow; border: 1px groove red;'>Login</li></ul></button> @keyframes slide-up { from { transform: translateY(100%); } to { transform: translateY(0); } } @media (min-width: 600px) and (max-width: 1200px) { font-size: 16px; }"
116"A responsive footer with a grid layout using template 'repeat(3, 1fr)', containing items with large text and :hover { background-color: #555; color: white; }.","<input style='display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px; :hover { box-shadow: 0 0 10px rgba(0, 0, 0, 0.5); }'><li style='color: yellow; border: 1px ridge orange;'>Login</li><li style='color: gray; border: 1px solid cyan;'>Choose Option</li><li style='color: cyan; border: 1px solid orange;'>Enter Your Name</li><li style='color: yellow; border: 1px solid orange;'>Search</li><li style='color: white; border: 1px ridge gray;'>Choose Option</li></input> @keyframes bounce { 0%, 20%, 50%, 80%, 100% { transform: translateY(0); } 40% { transform: translateY(-30px); } 60% { transform: translateY(-15px); } }"
117"A purple box with double border, radial-gradient(circle, pink, purple) background, small text centered inside, using flex layout, with :hover { background-color: #555; color: white; } and fade-in.","<div style='background: linear-gradient(to bottom, blue, green); border: 2px double white; font-size: 22px; text-align: center; display: block; justify-content: space-between; 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 Option</div> @keyframes fade-in { from { opacity: 0; } to { opacity: 1; } }"
118"A large span with blue text, Verdana font, 4px 4px 10px rgba(0, 0, 0, 0.5), and slide-up, displayed as grid with flex-end, responsive with media queries.","<input style='color: orange; font-size: 28px; font-family: Helvetica; box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.3); display: block; justify-content: space-between; animation: spin 2s; transition: all 0.3s ease;'>Submit</input> @keyframes fade-in { from { opacity: 0; } to { opacity: 1; } } @media (min-width: 1200px) { font-size: 18px; }"
119"A input containing a list of options with pink text, each inside a solid box, with 2px 2px 5px rgba(0, 0, 0, 0.3), bounce, and @media (min-width: 600px) and (max-width: 1200px) { font-size: 16px; }.","<header><ul style='box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); animation: fade-in 1.5s;'><li style='color: blue; border: 1px groove green;'>Hello World</li><li style='color: cyan; border: 1px dashed purple;'>Choose Option</li><li style='color: cyan; border: 1px double black;'>Sign Up</li><li style='color: yellow; border: 1px solid red;'>Contact Us</li><li style='color: orange; border: 1px dotted cyan;'>Enter Your Name</li></ul></header> @keyframes slide-up { from { transform: translateY(100%); } to { transform: translateY(0); } } @media (max-width: 600px) { font-size: 14px; }"
120"A large h2 with orange text, Georgia font, none, and slide-up, displayed as grid with flex-end, responsive with media queries.","<div style='color: blue; font-size: 24px; font-family: Helvetica; box-shadow: 4px 4px 10px rgba(0, 0, 0, 0.5); display: block; justify-content: flex-end; animation: fade-in 2s; transition: all 0.3s ease;'>Login</div> @keyframes slide-up { from { transform: translateY(100%); } to { transform: translateY(0); } } @media (max-width: 600px) { font-size: 14px; }"
121"A gray button with small Tahoma text, using block layout, aligned to the justify, with none, spin, and a :hover { background-color: #555; color: white; }.",<button style='background-color: black; font-size: 18px; font-family: Verdana; display: flex; text-align: right; box-shadow: none; animation: bounce 2s; transition: all 0.3s ease; :hover { transform: scale(1.1); }'>Enter Your Name</button> @keyframes fade-in { from { opacity: 0; } to { opacity: 1; } }
122"A footer containing a yellow button with linear-gradient(to right, red, yellow) background that says 'Hello World', followed by a large text description, with bounce.","<header><button style='background-color: linear-gradient(to right, red, yellow); font-size: 16px; animation: fade-in 2s;'>Login</button><p style='font-size: 16px;'>sign up</p></header> @keyframes slide-up { from { transform: translateY(100%); } to { transform: translateY(0); } } transition: background-color 0.4s ease;"
123"A black box with solid border, radial-gradient(circle, pink, purple) background, small text centered inside, using grid layout, with :hover { transform: scale(1.1); } and fade-in.","<div style='background: linear-gradient(to right, red, yellow); border: 2px ridge gray; font-size: 28px; text-align: center; display: inline-block; justify-content: space-between; align-items: center; animation: spin 2s; transition: all 0.3s ease; :hover { background-color: #555; color: white; }'>Click Me</div> @keyframes bounce { 0%, 20%, 50%, 80%, 100% { transform: translateY(0); } 40% { transform: translateY(-30px); } 60% { transform: translateY(-15px); } }"
124"A h3 containing a list of options with black text, each inside a solid box, with 2px 2px 5px rgba(0, 0, 0, 0.3), fade-in, and @media (min-width: 1200px) { font-size: 18px; }.","<div><ul style='box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.3); animation: bounce 1.5s;'><li style='color: gray; border: 1px groove purple;'>Search</li><li style='color: purple; border: 1px dashed gray;'>Contact Us</li><li style='color: cyan; border: 1px groove white;'>Click Me</li><li style='color: blue; border: 1px dotted green;'>Enter Your Name</li><li style='color: yellow; border: 1px dotted yellow;'>Hello World</li></ul></div> @keyframes spin { from { transform: rotate(0deg); } to { transform: rotate(360deg); } } @media (max-width: 600px) { font-size: 14px; }"
125"A responsive button with a grid layout using template '100px 1fr', containing items with large text and :hover { transform: scale(1.1); }.","<span 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: red; border: 1px dashed pink;'>Hello World</li><li style='color: green; border: 1px solid yellow;'>Login</li><li style='color: pink; border: 1px double purple;'>Submit</li><li style='color: pink; border: 1px double green;'>Click Me</li><li style='color: green; border: 1px dotted yellow;'>Hello World</li></span> @keyframes fade-in { from { opacity: 0; } to { opacity: 1; } }"
126"A span containing a list of options with green text, each inside a groove box, with 4px 4px 10px rgba(0, 0, 0, 0.5), bounce, 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: white; border: 1px dashed yellow;'>Sign Up</li><li style='color: gray; border: 1px groove orange;'>Hello World</li><li style='color: gray; border: 1px dotted purple;'>Contact Us</li><li style='color: yellow; border: 1px groove cyan;'>Enter Your Name</li><li style='color: white; border: 1px dotted white;'>Click Me</li></ul></header> @keyframes slide-up { from { transform: translateY(100%); } to { transform: translateY(0); } } @media (max-width: 600px) { font-size: 14px; }"
127"A red button with small Arial text, using inline-block layout, aligned to the center, with 4px 4px 10px rgba(0, 0, 0, 0.5), fade-in, and a :hover { background-color: #555; color: white; }.","<button style='background-color: pink; font-size: 12px; font-family: Courier New; display: grid; text-align: justify; box-shadow: 4px 4px 10px rgba(0, 0, 0, 0.5); animation: slide-up 2s; transition: background-color 0.4s ease; :hover { background-color: #555; color: white; }'>Contact Us</button> @keyframes fade-in { from { opacity: 0; } to { opacity: 1; } }"
128"A pink box with dashed border, linear-gradient(to bottom, blue, green) background, large text centered inside, using grid layout, with :hover { transform: scale(1.1); } and bounce.","<div style='background: linear-gradient(to bottom, blue, green); border: 2px dotted green; font-size: 24px; text-align: center; display: inline-block; justify-content: space-around; align-items: center; animation: slide-up 2s; transition: background-color 0.4s ease; :hover { transform: scale(1.1); }'>Login</div> @keyframes slide-up { from { transform: translateY(100%); } to { transform: translateY(0); } }"
129"A gray box with groove border, radial-gradient(circle, pink, purple) background, small text centered inside, using block layout, with :hover { background-color: #555; color: white; } and slide-up.","<div style='background: radial-gradient(circle, pink, purple); border: 2px double purple; font-size: 22px; text-align: center; display: block; justify-content: center; align-items: center; animation: spin 2s; transition: transform 0.2s ease-in-out; :hover { transform: scale(1.1); }'>Hello World</div> @keyframes spin { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }"
130"A large span with pink text, Times New Roman font, 0 4px 8px rgba(0, 0, 0, 0.2), and fade-in, displayed as flex with flex-end, responsive with media queries.","<select style='color: pink; font-size: 22px; font-family: Arial; box-shadow: 4px 4px 10px rgba(0, 0, 0, 0.5); display: block; justify-content: space-around; animation: bounce 2s; transition: background-color 0.4s ease;'>Contact Us</select> @keyframes spin { from { transform: rotate(0deg); } to { transform: rotate(360deg); } } @media (min-width: 600px) and (max-width: 1200px) { font-size: 16px; }"
131"A cyan button with small Times New Roman text, using block layout, aligned to the left, with 4px 4px 10px rgba(0, 0, 0, 0.5), bounce, and a :hover { transform: scale(1.1); }.","<button style='background-color: blue; font-size: 26px; font-family: Verdana; display: block; text-align: center; 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); }'>Login</button> @keyframes spin { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }"
132"A pink box with dashed border, linear-gradient(to right, red, yellow) background, large 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 double yellow; font-size: 20px; text-align: center; display: block; justify-content: center; align-items: center; animation: bounce 2s; transition: all 0.3s ease; :hover { transform: scale(1.1); }'>Login</div> @keyframes spin { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }"
133"A yellow button with large Arial text, using grid layout, aligned to the center, with 0 4px 8px rgba(0, 0, 0, 0.2), spin, and a :hover { background-color: #555; color: white; }.","<button style='background-color: yellow; font-size: 12px; font-family: Verdana; display: block; 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); }'>Click Me</button> @keyframes bounce { 0%, 20%, 50%, 80%, 100% { transform: translateY(0); } 40% { transform: translateY(-30px); } 60% { transform: translateY(-15px); } }"
134"A div containing a list of options with cyan text, each inside a dashed box, with 2px 2px 5px rgba(0, 0, 0, 0.3), bounce, and @media (max-width: 600px) { font-size: 14px; }.","<h1><ul style='box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); animation: slide-up 1.5s;'><li style='color: purple; border: 1px groove white;'>Login</li><li style='color: gray; border: 1px ridge purple;'>Search</li><li style='color: white; border: 1px dashed yellow;'>Click Me</li><li style='color: red; border: 1px solid white;'>Search</li><li style='color: yellow; border: 1px solid cyan;'>Click Me</li></ul></h1> @keyframes bounce { 0%, 20%, 50%, 80%, 100% { transform: translateY(0); } 40% { transform: translateY(-30px); } 60% { transform: translateY(-15px); } } @media (min-width: 1200px) { font-size: 18px; }"
135"A button containing a green button with linear-gradient(to right, red, yellow) background that says 'Enter Your Name', followed by a small text description, with spin.","<input><button style='background-color: linear-gradient(to right, red, yellow); font-size: 28px; animation: bounce 2s;'>Sign Up</button><p style='font-size: 28px;'>login</p></input> @keyframes fade-in { from { opacity: 0; } to { opacity: 1; } } transition: transform 0.2s ease-in-out;"
136"A black button with small Verdana text, using flex layout, aligned to the left, with none, bounce, and a :hover { background-color: #555; color: white; }.",<button style='background-color: yellow; font-size: 16px; font-family: Tahoma; display: grid; text-align: center; box-shadow: none; animation: spin 2s; transition: transform 0.2s ease-in-out; :hover { background-color: #555; color: white; }'>Enter Your Name</button> @keyframes fade-in { from { opacity: 0; } to { opacity: 1; } }
137"A yellow button with large Times New Roman text, using flex layout, aligned to the right, with 0 4px 8px rgba(0, 0, 0, 0.2), slide-up, and a :hover { box-shadow: 0 0 10px rgba(0, 0, 0, 0.5); }.",<button style='background-color: white; font-size: 14px; font-family: Times New Roman; display: flex; text-align: center; box-shadow: none; animation: spin 2s; transition: background-color 0.4s ease; :hover { background-color: #555; color: white; }'>Click Me</button> @keyframes fade-in { from { opacity: 0; } to { opacity: 1; } }
138"A responsive select with a grid layout using template '1fr 2fr', containing items with large text and :hover { box-shadow: 0 0 10px rgba(0, 0, 0, 0.5); }.",<h3 style='display: grid; grid-template-columns: 1fr 2fr; gap: 10px; :hover { background-color: #555; color: white; }'><li style='color: black; border: 1px dashed yellow;'>Choose Option</li><li style='color: red; border: 1px double blue;'>Hello World</li><li style='color: purple; border: 1px dotted green;'>Sign Up</li><li style='color: red; border: 1px solid gray;'>Contact Us</li><li style='color: red; border: 1px solid yellow;'>Enter Your Name</li></h3> @keyframes slide-up { from { transform: translateY(100%); } to { transform: translateY(0); } }
139"A green box with dotted border, radial-gradient(circle, pink, purple) background, large text centered inside, using inline-block layout, with :hover { transform: scale(1.1); } and spin.","<div style='background: radial-gradient(circle, pink, purple); border: 2px solid white; font-size: 20px; text-align: center; display: inline-block; justify-content: flex-end; align-items: center; animation: fade-in 2s; transition: transform 0.2s ease-in-out; :hover { background-color: #555; color: white; }'>Click Me</div> @keyframes slide-up { from { transform: translateY(100%); } to { transform: translateY(0); } }"
140"A textarea containing a list of options with purple text, each inside a ridge box, with 0 4px 8px rgba(0, 0, 0, 0.2), fade-in, and @media (max-width: 600px) { font-size: 14px; }.","<span><ul style='box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.3); animation: slide-up 1.5s;'><li style='color: blue; border: 1px groove blue;'>Enter Your Name</li><li style='color: blue; border: 1px dashed cyan;'>Click Me</li><li style='color: white; border: 1px groove blue;'>Sign Up</li><li style='color: cyan; border: 1px solid blue;'>Login</li><li style='color: blue; border: 1px ridge yellow;'>Submit</li></ul></span> @keyframes bounce { 0%, 20%, 50%, 80%, 100% { transform: translateY(0); } 40% { transform: translateY(-30px); } 60% { transform: translateY(-15px); } } @media (max-width: 600px) { font-size: 14px; }"
141"A h2 containing a pink button with linear-gradient(to bottom, blue, green) background that says 'Search', followed by a large text description, with bounce.","<select><button style='background-color: radial-gradient(circle, pink, purple); font-size: 30px; animation: bounce 2s;'>Choose Option</button><p style='font-size: 30px;'>hello world</p></select> @keyframes fade-in { from { opacity: 0; } to { opacity: 1; } } transition: all 0.3s ease;"
142"A purple button with small Helvetica text, using block layout, aligned to the center, with 2px 2px 5px rgba(0, 0, 0, 0.3), fade-in, and a :hover { background-color: #555; color: white; }.","<button style='background-color: purple; font-size: 16px; font-family: Courier New; display: flex; text-align: center; box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.3); animation: fade-in 2s; transition: transform 0.2s ease-in-out; :hover { box-shadow: 0 0 10px rgba(0, 0, 0, 0.5); }'>Hello World</button> @keyframes fade-in { from { opacity: 0; } to { opacity: 1; } }"
143"A h1 containing a list of options with orange text, each inside a double 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: spin 1.5s;'><li style='color: purple; border: 1px double yellow;'>Click Me</li><li style='color: green; border: 1px groove white;'>Search</li><li style='color: red; border: 1px dotted blue;'>Contact Us</li><li style='color: black; border: 1px groove yellow;'>Submit</li><li style='color: yellow; border: 1px ridge cyan;'>Contact Us</li></ul></h2> @keyframes spin { from { transform: rotate(0deg); } to { transform: rotate(360deg); } } @media (min-width: 1200px) { font-size: 18px; }"
144"A blue button with large Times New Roman text, using block layout, aligned to the center, with 0 4px 8px rgba(0, 0, 0, 0.2), bounce, and a :hover { transform: scale(1.1); }.",<button style='background-color: black; font-size: 14px; font-family: Tahoma; display: none; text-align: justify; box-shadow: none; animation: spin 2s; transition: transform 0.2s ease-in-out; :hover { transform: scale(1.1); }'>Submit</button> @keyframes spin { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }
145"A h1 containing a list of options with black text, each inside a groove box, with none, fade-in, and @media (min-width: 1200px) { font-size: 18px; }.","<h3><ul style='box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.3); animation: spin 1.5s;'><li style='color: purple; border: 1px groove pink;'>Click Me</li><li style='color: red; border: 1px ridge pink;'>Submit</li><li style='color: yellow; border: 1px dotted blue;'>Login</li><li style='color: cyan; border: 1px groove gray;'>Search</li><li style='color: white; border: 1px dotted pink;'>Login</li></ul></h3> @keyframes slide-up { from { transform: translateY(100%); } to { transform: translateY(0); } } @media (max-width: 600px) { font-size: 14px; }"
146"A orange button with medium Arial text, using grid layout, aligned to the right, with 4px 4px 10px rgba(0, 0, 0, 0.5), spin, and a :hover { transform: scale(1.1); }.","<button style='background-color: purple; font-size: 24px; font-family: Arial; display: flex; text-align: center; box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); animation: fade-in 2s; transition: background-color 0.4s ease; :hover { box-shadow: 0 0 10px rgba(0, 0, 0, 0.5); }'>Enter Your Name</button> @keyframes slide-up { from { transform: translateY(100%); } to { transform: translateY(0); } }"
147"A responsive header with a grid layout using template '1fr 2fr', containing items with large 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 { background-color: #555; color: white; }'><li style='color: pink; border: 1px dotted white;'>Login</li><li style='color: cyan; border: 1px double orange;'>Search</li><li style='color: pink; border: 1px ridge gray;'>Choose Option</li><li style='color: pink; border: 1px double cyan;'>Login</li><li style='color: pink; border: 1px ridge yellow;'>Search</li></h1> @keyframes slide-up { from { transform: translateY(100%); } to { transform: translateY(0); } }
148"A medium header with pink text, Verdana font, 0 4px 8px rgba(0, 0, 0, 0.2), and spin, displayed as grid with center, responsive with media queries.","<h2 style='color: pink; font-size: 20px; font-family: Arial; box-shadow: 4px 4px 10px rgba(0, 0, 0, 0.5); display: inline-block; justify-content: space-between; animation: bounce 2s; transition: all 0.3s ease;'>Sign Up</h2> @keyframes fade-in { from { opacity: 0; } to { opacity: 1; } } @media (max-width: 600px) { font-size: 14px; }"
149"A yellow button with medium Tahoma text, using grid layout, aligned to the center, with 4px 4px 10px rgba(0, 0, 0, 0.5), fade-in, and a :hover { transform: scale(1.1); }.","<button style='background-color: orange; font-size: 18px; font-family: Courier New; display: block; text-align: right; box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.3); animation: fade-in 2s; transition: transform 0.2s ease-in-out; :hover { transform: scale(1.1); }'>Sign Up</button> @keyframes fade-in { from { opacity: 0; } to { opacity: 1; } }"
150"A responsive input with a grid layout using template '100px 1fr', containing items with medium text and :hover { background-color: #555; color: white; }.",<input style='display: grid; grid-template-columns: 100px 1fr; gap: 10px; :hover { background-color: #555; color: white; }'><li style='color: black; border: 1px double purple;'>Hello World</li><li style='color: red; border: 1px groove yellow;'>Enter Your Name</li><li style='color: green; border: 1px double cyan;'>Hello World</li><li style='color: red; border: 1px ridge white;'>Hello World</li><li style='color: purple; border: 1px dotted yellow;'>Hello World</li></input> @keyframes slide-up { from { transform: translateY(100%); } to { transform: translateY(0); } }
151"A large header with red text, Courier New font, 0 4px 8px rgba(0, 0, 0, 0.2), and fade-in, displayed as grid with flex-start, responsive with media queries.","<select style='color: blue; font-size: 30px; font-family: Times New Roman; box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.3); display: flex; justify-content: center; animation: slide-up 2s; transition: all 0.3s ease;'>Click Me</select> @keyframes slide-up { from { transform: translateY(100%); } to { transform: translateY(0); } } @media (min-width: 600px) and (max-width: 1200px) { font-size: 16px; }"
152"A orange box with dashed border, radial-gradient(circle, pink, purple) background, medium text centered inside, using inline-block 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 dotted pink; font-size: 26px; text-align: center; display: grid; justify-content: space-around; align-items: center; animation: spin 2s; transition: all 0.3s ease; :hover { background-color: #555; color: white; }'>Contact Us</div> @keyframes slide-up { from { transform: translateY(100%); } to { transform: translateY(0); } }"
153"A responsive div with a grid layout using template 'repeat(3, 1fr)', containing items with small text and :hover { background-color: #555; color: white; }.","<button style='display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px; :hover { box-shadow: 0 0 10px rgba(0, 0, 0, 0.5); }'><li style='color: pink; border: 1px groove blue;'>Search</li><li style='color: purple; border: 1px ridge yellow;'>Login</li><li style='color: red; border: 1px ridge purple;'>Sign Up</li><li style='color: purple; border: 1px solid yellow;'>Sign Up</li><li style='color: blue; border: 1px groove purple;'>Contact Us</li></button> @keyframes bounce { 0%, 20%, 50%, 80%, 100% { transform: translateY(0); } 40% { transform: translateY(-30px); } 60% { transform: translateY(-15px); } }"
154"A orange button with medium Arial text, using flex layout, aligned to the left, with none, slide-up, and a :hover { background-color: #555; color: white; }.","<button style='background-color: black; font-size: 14px; font-family: Georgia; display: flex; text-align: right; box-shadow: 4px 4px 10px rgba(0, 0, 0, 0.5); animation: slide-up 2s; transition: background-color 0.4s ease; :hover { background-color: #555; color: white; }'>Hello World</button> @keyframes slide-up { from { transform: translateY(100%); } to { transform: translateY(0); } }"
155"A responsive h2 with a grid layout using template 'repeat(3, 1fr)', containing items with medium 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: purple; border: 1px double green;'>Click Me</li><li style='color: black; border: 1px double red;'>Submit</li><li style='color: orange; border: 1px dashed yellow;'>Hello World</li><li style='color: red; border: 1px groove blue;'>Submit</li><li style='color: orange; border: 1px groove black;'>Choose Option</li></textarea> @keyframes slide-up { from { transform: translateY(100%); } to { transform: translateY(0); } }"
156"A black box with dotted border, linear-gradient(to right, red, yellow) background, small text centered inside, using none layout, with :hover { transform: scale(1.1); } and slide-up.","<div style='background: radial-gradient(circle, pink, purple); border: 2px double orange; font-size: 28px; text-align: center; display: grid; justify-content: center; align-items: center; animation: spin 2s; transition: all 0.3s ease; :hover { background-color: #555; color: white; }'>Choose Option</div> @keyframes slide-up { from { transform: translateY(100%); } to { transform: translateY(0); } }"
157"A medium select with red text, Tahoma font, 0 4px 8px rgba(0, 0, 0, 0.2), and bounce, displayed as block with space-around, responsive with media queries.","<span style='color: pink; font-size: 16px; font-family: Arial; box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); display: inline-block; justify-content: flex-end; animation: bounce 2s; transition: all 0.3s ease;'>Submit</span> @keyframes bounce { 0%, 20%, 50%, 80%, 100% { transform: translateY(0); } 40% { transform: translateY(-30px); } 60% { transform: translateY(-15px); } } @media (max-width: 600px) { font-size: 14px; }"
158"A orange button with large Courier New text, using grid 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: pink; font-size: 26px; font-family: Times New Roman; display: none; text-align: left; box-shadow: 4px 4px 10px rgba(0, 0, 0, 0.5); animation: spin 2s; transition: transform 0.2s ease-in-out; :hover { transform: scale(1.1); }'>Login</button> @keyframes spin { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }"
159"A orange button with large Helvetica text, using flex 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: gray; font-size: 22px; font-family: Courier New; display: none; 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 spin { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }"
160"A black box with groove border, linear-gradient(to bottom, blue, green) background, medium text centered inside, using block layout, with :hover { transform: scale(1.1); } and slide-up.","<div style='background: linear-gradient(to right, red, yellow); border: 2px dashed black; font-size: 30px; text-align: center; display: flex; justify-content: flex-start; align-items: center; animation: slide-up 2s; transition: all 0.3s ease; :hover { background-color: #555; color: white; }'>Search</div> @keyframes slide-up { from { transform: translateY(100%); } to { transform: translateY(0); } }"
161"A cyan button with small Courier New text, using grid layout, aligned to the center, with 0 4px 8px rgba(0, 0, 0, 0.2), slide-up, and a :hover { transform: scale(1.1); }.","<button style='background-color: blue; font-size: 28px; font-family: Courier New; display: inline-block; text-align: center; box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.3); animation: spin 2s; transition: transform 0.2s ease-in-out; :hover { transform: scale(1.1); }'>Contact Us</button> @keyframes fade-in { from { opacity: 0; } to { opacity: 1; } }"
162"A pink box with solid border, radial-gradient(circle, pink, purple) 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 double pink; font-size: 30px; 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; }'>Contact Us</div> @keyframes fade-in { from { opacity: 0; } to { opacity: 1; } }"
163"A purple button with small Times New Roman text, using flex layout, aligned to the right, with 2px 2px 5px rgba(0, 0, 0, 0.3), bounce, and a :hover { box-shadow: 0 0 10px rgba(0, 0, 0, 0.5); }.","<button style='background-color: cyan; font-size: 16px; font-family: Times New Roman; display: grid; text-align: justify; box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); animation: spin 2s; transition: all 0.3s ease; :hover { box-shadow: 0 0 10px rgba(0, 0, 0, 0.5); }'>Hello World</button> @keyframes spin { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }"
164"A responsive h2 with a grid layout using template '1fr 2fr', containing items with small text and :hover { box-shadow: 0 0 10px rgba(0, 0, 0, 0.5); }.",<div style='display: grid; grid-template-columns: 1fr 2fr; gap: 10px; :hover { transform: scale(1.1); }'><li style='color: white; border: 1px ridge red;'>Submit</li><li style='color: black; border: 1px dotted orange;'>Click Me</li><li style='color: red; border: 1px solid yellow;'>Click Me</li><li style='color: cyan; border: 1px solid pink;'>Search</li><li style='color: pink; border: 1px groove yellow;'>Submit</li></div> @keyframes slide-up { from { transform: translateY(100%); } to { transform: translateY(0); } }
165"A responsive span with a grid layout using template 'repeat(2, 1fr)', containing items with large text and :hover { transform: scale(1.1); }.","<p style='display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px; :hover { box-shadow: 0 0 10px rgba(0, 0, 0, 0.5); }'><li style='color: red; border: 1px ridge green;'>Sign Up</li><li style='color: orange; border: 1px ridge pink;'>Sign Up</li><li style='color: red; border: 1px groove black;'>Login</li><li style='color: pink; border: 1px dashed blue;'>Submit</li><li style='color: yellow; border: 1px double orange;'>Contact Us</li></p> @keyframes spin { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }"
166"A header containing a list of options with black text, each inside a ridge box, with none, slide-up, and @media (max-width: 600px) { font-size: 14px; }.",<textarea><ul style='box-shadow: none; animation: slide-up 1.5s;'><li style='color: black; border: 1px ridge blue;'>Submit</li><li style='color: yellow; border: 1px solid black;'>Login</li><li style='color: black; border: 1px double gray;'>Enter Your Name</li><li style='color: blue; border: 1px dashed blue;'>Hello World</li><li style='color: pink; border: 1px solid white;'>Choose Option</li></ul></textarea> @keyframes slide-up { from { transform: translateY(100%); } to { transform: translateY(0); } } @media (max-width: 600px) { font-size: 14px; }
167"A input containing a list of options with orange text, each inside a ridge box, with 2px 2px 5px rgba(0, 0, 0, 0.3), fade-in, and @media (min-width: 600px) and (max-width: 1200px) { font-size: 16px; }.","<h3><ul style='box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); animation: slide-up 1.5s;'><li style='color: white; border: 1px solid red;'>Sign Up</li><li style='color: orange; border: 1px dotted yellow;'>Submit</li><li style='color: orange; border: 1px ridge gray;'>Search</li><li style='color: green; border: 1px solid white;'>Search</li><li style='color: black; border: 1px ridge black;'>Login</li></ul></h3> @keyframes bounce { 0%, 20%, 50%, 80%, 100% { transform: translateY(0); } 40% { transform: translateY(-30px); } 60% { transform: translateY(-15px); } } @media (min-width: 1200px) { font-size: 18px; }"
168"A medium h2 with purple text, Verdana font, 0 4px 8px rgba(0, 0, 0, 0.2), and fade-in, displayed as grid with space-around, responsive with media queries.","<h2 style='color: gray; font-size: 18px; font-family: Helvetica; box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); display: block; justify-content: center; animation: fade-in 2s; transition: all 0.3s ease;'>Choose Option</h2> @keyframes slide-up { from { transform: translateY(100%); } to { transform: translateY(0); } } @media (min-width: 600px) and (max-width: 1200px) { font-size: 16px; }"
169"A black button with medium Helvetica text, using inline-block layout, aligned to the left, with 2px 2px 5px rgba(0, 0, 0, 0.3), spin, and a :hover { transform: scale(1.1); }.","<button style='background-color: yellow; font-size: 12px; font-family: Courier New; display: grid; text-align: left; box-shadow: 4px 4px 10px rgba(0, 0, 0, 0.5); animation: fade-in 2s; transition: transform 0.2s ease-in-out; :hover { box-shadow: 0 0 10px rgba(0, 0, 0, 0.5); }'>Login</button> @keyframes slide-up { from { transform: translateY(100%); } to { transform: translateY(0); } }"
170"A gray button with medium Verdana text, using block layout, aligned to the left, with 4px 4px 10px rgba(0, 0, 0, 0.5), bounce, and a :hover { transform: scale(1.1); }.","<button style='background-color: white; font-size: 18px; font-family: Tahoma; display: grid; text-align: justify; box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); animation: spin 2s; transition: transform 0.2s ease-in-out; :hover { box-shadow: 0 0 10px rgba(0, 0, 0, 0.5); }'>Search</button> @keyframes slide-up { from { transform: translateY(100%); } to { transform: translateY(0); } }"
171"A div containing a list of options with red text, each inside a dashed box, with 4px 4px 10px rgba(0, 0, 0, 0.5), spin, 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: white; border: 1px solid orange;'>Hello World</li><li style='color: blue; border: 1px ridge yellow;'>Search</li><li style='color: black; border: 1px groove red;'>Click Me</li><li style='color: purple; border: 1px double yellow;'>Submit</li><li style='color: pink; border: 1px groove green;'>Choose Option</li></ul></select> @keyframes fade-in { from { opacity: 0; } to { opacity: 1; } } @media (min-width: 1200px) { font-size: 18px; }"
172"A medium input with purple text, Helvetica font, 2px 2px 5px rgba(0, 0, 0, 0.3), and fade-in, displayed as flex with flex-start, responsive with media queries.","<h1 style='color: orange; font-size: 18px; font-family: Arial; box-shadow: 4px 4px 10px rgba(0, 0, 0, 0.5); display: none; justify-content: space-around; animation: spin 2s; transition: background-color 0.4s ease;'>Contact Us</h1> @keyframes spin { from { transform: rotate(0deg); } to { transform: rotate(360deg); } } @media (min-width: 600px) and (max-width: 1200px) { font-size: 16px; }"
173"A medium h1 with gray text, Arial font, 4px 4px 10px rgba(0, 0, 0, 0.5), and fade-in, displayed as none with space-around, responsive with media queries.","<textarea style='color: purple; font-size: 26px; font-family: Arial; box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.3); display: flex; justify-content: flex-start; animation: slide-up 2s; transition: transform 0.2s ease-in-out;'>Login</textarea> @keyframes bounce { 0%, 20%, 50%, 80%, 100% { transform: translateY(0); } 40% { transform: translateY(-30px); } 60% { transform: translateY(-15px); } } @media (min-width: 1200px) { font-size: 18px; }"
174"A responsive header with a grid layout using template 'repeat(3, 1fr)', containing items with medium text and :hover { transform: scale(1.1); }.","<h3 style='display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px; :hover { transform: scale(1.1); }'><li style='color: pink; border: 1px double white;'>Contact Us</li><li style='color: yellow; border: 1px ridge orange;'>Search</li><li style='color: red; border: 1px dotted gray;'>Click Me</li><li style='color: black; border: 1px groove cyan;'>Sign Up</li><li style='color: pink; border: 1px dotted orange;'>Enter Your Name</li></h3> @keyframes spin { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }"
175"A large div with red text, Tahoma font, 0 4px 8px rgba(0, 0, 0, 0.2), and spin, displayed as flex with space-around, responsive with media queries.","<h1 style='color: green; font-size: 20px; font-family: Arial; box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); display: grid; justify-content: flex-end; animation: fade-in 2s; transition: background-color 0.4s ease;'>Contact Us</h1> @keyframes spin { from { transform: rotate(0deg); } to { transform: rotate(360deg); } } @media (min-width: 600px) and (max-width: 1200px) { font-size: 16px; }"
176"A button containing a list of options with cyan text, each inside a dotted box, with 2px 2px 5px rgba(0, 0, 0, 0.3), fade-in, and @media (min-width: 600px) and (max-width: 1200px) { font-size: 16px; }.","<h1><ul style='box-shadow: 4px 4px 10px rgba(0, 0, 0, 0.5); animation: bounce 1.5s;'><li style='color: black; border: 1px groove cyan;'>Submit</li><li style='color: green; border: 1px dashed red;'>Login</li><li style='color: orange; border: 1px dashed cyan;'>Submit</li><li style='color: orange; border: 1px groove gray;'>Login</li><li style='color: pink; border: 1px groove pink;'>Search</li></ul></h1> @keyframes slide-up { from { transform: translateY(100%); } to { transform: translateY(0); } } @media (min-width: 1200px) { font-size: 18px; }"
177"A input containing a list of options with yellow text, each inside a groove box, with 2px 2px 5px rgba(0, 0, 0, 0.3), fade-in, and @media (min-width: 600px) and (max-width: 1200px) { font-size: 16px; }.","<textarea><ul style='box-shadow: 4px 4px 10px rgba(0, 0, 0, 0.5); animation: bounce 1.5s;'><li style='color: purple; border: 1px dotted gray;'>Submit</li><li style='color: purple; border: 1px double purple;'>Click Me</li><li style='color: orange; border: 1px dashed orange;'>Enter Your Name</li><li style='color: pink; border: 1px dashed yellow;'>Enter Your Name</li><li style='color: orange; border: 1px double white;'>Contact Us</li></ul></textarea> @keyframes fade-in { from { opacity: 0; } to { opacity: 1; } } @media (max-width: 600px) { font-size: 14px; }"
178"A responsive textarea with a grid layout using template '100px 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: 100px 1fr; gap: 10px; :hover { background-color: #555; color: white; }'><li style='color: white; border: 1px dotted black;'>Submit</li><li style='color: white; border: 1px groove white;'>Submit</li><li style='color: pink; border: 1px dotted white;'>Sign Up</li><li style='color: gray; border: 1px solid blue;'>Contact Us</li><li style='color: green; border: 1px groove black;'>Submit</li></input> @keyframes fade-in { from { opacity: 0; } to { opacity: 1; } }
179"A red button with small Courier New text, using block layout, aligned to the center, with 0 4px 8px rgba(0, 0, 0, 0.2), spin, and a :hover { box-shadow: 0 0 10px rgba(0, 0, 0, 0.5); }.","<button style='background-color: green; font-size: 16px; font-family: Times New Roman; display: block; text-align: right; box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); animation: bounce 2s; transition: all 0.3s ease; :hover { background-color: #555; color: white; }'>Choose Option</button> @keyframes fade-in { from { opacity: 0; } to { opacity: 1; } }"
180"A h1 containing a list of options with blue 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; }.","<nav><ul style='box-shadow: none; animation: spin 1.5s;'><li style='color: pink; border: 1px double red;'>Hello World</li><li style='color: blue; border: 1px groove blue;'>Sign Up</li><li style='color: pink; border: 1px dashed blue;'>Enter Your Name</li><li style='color: black; border: 1px double green;'>Sign Up</li><li style='color: green; border: 1px groove purple;'>Login</li></ul></nav> @keyframes bounce { 0%, 20%, 50%, 80%, 100% { transform: translateY(0); } 40% { transform: translateY(-30px); } 60% { transform: translateY(-15px); } } @media (max-width: 600px) { font-size: 14px; }"
181"A h1 containing a list of options with pink text, each inside a solid box, with 2px 2px 5px rgba(0, 0, 0, 0.3), fade-in, and @media (min-width: 1200px) { font-size: 18px; }.",<input><ul style='box-shadow: none; animation: spin 1.5s;'><li style='color: blue; border: 1px dotted blue;'>Enter Your Name</li><li style='color: white; border: 1px dashed pink;'>Hello World</li><li style='color: red; border: 1px groove gray;'>Login</li><li style='color: orange; border: 1px groove purple;'>Click Me</li><li style='color: gray; border: 1px double cyan;'>Hello World</li></ul></input> @keyframes fade-in { from { opacity: 0; } to { opacity: 1; } } @media (max-width: 600px) { font-size: 14px; }
182"A orange button with medium Helvetica text, using flex layout, aligned to the justify, with 2px 2px 5px rgba(0, 0, 0, 0.3), spin, and a :hover { transform: scale(1.1); }.","<button style='background-color: pink; font-size: 24px; font-family: Helvetica; display: flex; text-align: left; box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); animation: fade-in 2s; transition: transform 0.2s ease-in-out; :hover { background-color: #555; color: white; }'>Hello World</button> @keyframes spin { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }"
183"A green box with double 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 spin.","<div style='background: radial-gradient(circle, pink, purple); border: 2px ridge cyan; font-size: 18px; text-align: center; display: flex; justify-content: flex-start; align-items: center; animation: bounce 2s; transition: background-color 0.4s ease; :hover { box-shadow: 0 0 10px rgba(0, 0, 0, 0.5); }'>Login</div> @keyframes bounce { 0%, 20%, 50%, 80%, 100% { transform: translateY(0); } 40% { transform: translateY(-30px); } 60% { transform: translateY(-15px); } }"
184"A footer containing a list of options with white text, each inside a dotted box, with 0 4px 8px rgba(0, 0, 0, 0.2), bounce, and @media (min-width: 600px) and (max-width: 1200px) { font-size: 16px; }.","<h2><ul style='box-shadow: 4px 4px 10px rgba(0, 0, 0, 0.5); animation: slide-up 1.5s;'><li style='color: red; border: 1px solid orange;'>Search</li><li style='color: purple; border: 1px dashed gray;'>Click Me</li><li style='color: yellow; border: 1px dotted green;'>Login</li><li style='color: orange; border: 1px ridge blue;'>Search</li><li style='color: gray; border: 1px dotted cyan;'>Contact Us</li></ul></h2> @keyframes bounce { 0%, 20%, 50%, 80%, 100% { transform: translateY(0); } 40% { transform: translateY(-30px); } 60% { transform: translateY(-15px); } } @media (min-width: 600px) and (max-width: 1200px) { font-size: 16px; }"
185"A h3 containing a list of options with white text, each inside a ridge box, with none, slide-up, and @media (min-width: 600px) and (max-width: 1200px) { font-size: 16px; }.",<button><ul style='box-shadow: none; animation: bounce 1.5s;'><li style='color: orange; border: 1px dotted pink;'>Login</li><li style='color: purple; border: 1px dotted yellow;'>Login</li><li style='color: red; border: 1px dashed orange;'>Choose Option</li><li style='color: black; border: 1px dotted black;'>Click Me</li><li style='color: gray; border: 1px groove pink;'>Choose Option</li></ul></button> @keyframes slide-up { from { transform: translateY(100%); } to { transform: translateY(0); } } @media (max-width: 600px) { font-size: 14px; }
186"A small nav with red text, Times New Roman font, 4px 4px 10px rgba(0, 0, 0, 0.5), and bounce, displayed as grid with space-around, responsive with media queries.","<nav style='color: cyan; font-size: 12px; font-family: Courier New; box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.3); display: inline-block; justify-content: flex-end; animation: spin 2s; transition: transform 0.2s ease-in-out;'>Enter Your Name</nav> @keyframes spin { from { transform: rotate(0deg); } to { transform: rotate(360deg); } } @media (min-width: 600px) and (max-width: 1200px) { font-size: 16px; }"
187"A header containing a list of options with blue text, each inside a solid box, with 4px 4px 10px rgba(0, 0, 0, 0.5), spin, and @media (max-width: 600px) { font-size: 14px; }.","<header><ul style='box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); animation: fade-in 1.5s;'><li style='color: red; border: 1px double blue;'>Hello World</li><li style='color: blue; border: 1px groove white;'>Submit</li><li style='color: cyan; border: 1px dashed pink;'>Contact Us</li><li style='color: gray; border: 1px double yellow;'>Enter Your Name</li><li style='color: black; border: 1px ridge blue;'>Search</li></ul></header> @keyframes spin { from { transform: rotate(0deg); } to { transform: rotate(360deg); } } @media (min-width: 600px) and (max-width: 1200px) { font-size: 16px; }"
188"A button containing a list of options with red text, each inside a dashed box, with none, bounce, and @media (max-width: 600px) { font-size: 14px; }.","<header><ul style='box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.3); animation: spin 1.5s;'><li style='color: green; border: 1px solid pink;'>Hello World</li><li style='color: green; border: 1px ridge black;'>Choose Option</li><li style='color: green; border: 1px solid green;'>Hello World</li><li style='color: black; border: 1px double gray;'>Click Me</li><li style='color: purple; border: 1px double green;'>Hello World</li></ul></header> @keyframes bounce { 0%, 20%, 50%, 80%, 100% { transform: translateY(0); } 40% { transform: translateY(-30px); } 60% { transform: translateY(-15px); } } @media (max-width: 600px) { font-size: 14px; }"
189"A purple box with ridge border, linear-gradient(to right, red, yellow) background, medium text centered inside, using block layout, with :hover { transform: scale(1.1); } and spin.","<div style='background: linear-gradient(to right, red, yellow); border: 2px dotted cyan; font-size: 20px; text-align: center; display: block; justify-content: space-around; align-items: center; animation: fade-in 2s; transition: background-color 0.4s ease; :hover { box-shadow: 0 0 10px rgba(0, 0, 0, 0.5); }'>Submit</div> @keyframes spin { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }"
190"A h3 containing a list of options with blue text, each inside a dotted box, with 0 4px 8px rgba(0, 0, 0, 0.2), bounce, and @media (min-width: 600px) and (max-width: 1200px) { font-size: 16px; }.","<footer><ul style='box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); animation: spin 1.5s;'><li style='color: green; border: 1px groove orange;'>Choose Option</li><li style='color: purple; border: 1px double black;'>Search</li><li style='color: purple; border: 1px ridge red;'>Click Me</li><li style='color: black; border: 1px groove blue;'>Submit</li><li style='color: black; border: 1px dashed pink;'>Sign Up</li></ul></footer> @keyframes spin { from { transform: rotate(0deg); } to { transform: rotate(360deg); } } @media (min-width: 1200px) { font-size: 18px; }"
191"A responsive div with a grid layout using template 'repeat(3, 1fr)', containing items with small text and :hover { transform: scale(1.1); }.","<header 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: pink; border: 1px dotted blue;'>Click Me</li><li style='color: black; border: 1px groove red;'>Sign Up</li><li style='color: yellow; border: 1px solid pink;'>Hello World</li><li style='color: gray; border: 1px double purple;'>Submit</li><li style='color: cyan; border: 1px solid cyan;'>Click Me</li></header> @keyframes fade-in { from { opacity: 0; } to { opacity: 1; } }"
192"A div containing a list of options with purple text, each inside a dotted box, with 0 4px 8px rgba(0, 0, 0, 0.2), bounce, and @media (min-width: 1200px) { font-size: 18px; }.","<footer><ul style='box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.3); animation: spin 1.5s;'><li style='color: purple; border: 1px solid orange;'>Click Me</li><li style='color: cyan; border: 1px solid pink;'>Submit</li><li style='color: cyan; border: 1px groove cyan;'>Sign Up</li><li style='color: blue; border: 1px dashed red;'>Sign Up</li><li style='color: white; border: 1px ridge cyan;'>Choose Option</li></ul></footer> @keyframes spin { from { transform: rotate(0deg); } to { transform: rotate(360deg); } } @media (min-width: 1200px) { font-size: 18px; }"
193"A responsive select with a grid layout using template '100px 1fr', containing items with large text and :hover { box-shadow: 0 0 10px rgba(0, 0, 0, 0.5); }.",<h3 style='display: grid; grid-template-columns: 100px 1fr; gap: 10px; :hover { transform: scale(1.1); }'><li style='color: cyan; border: 1px dashed purple;'>Contact Us</li><li style='color: black; border: 1px double black;'>Search</li><li style='color: white; border: 1px double cyan;'>Submit</li><li style='color: red; border: 1px ridge red;'>Search</li><li style='color: red; border: 1px dotted white;'>Search</li></h3> @keyframes slide-up { from { transform: translateY(100%); } to { transform: translateY(0); } }
194"A gray button with large Times New Roman text, using flex layout, aligned to the center, with 0 4px 8px rgba(0, 0, 0, 0.2), bounce, and a :hover { box-shadow: 0 0 10px rgba(0, 0, 0, 0.5); }.","<button style='background-color: red; font-size: 20px; font-family: Verdana; display: inline-block; text-align: center; box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); animation: fade-in 2s; transition: transform 0.2s ease-in-out; :hover { box-shadow: 0 0 10px rgba(0, 0, 0, 0.5); }'>Hello World</button> @keyframes bounce { 0%, 20%, 50%, 80%, 100% { transform: translateY(0); } 40% { transform: translateY(-30px); } 60% { transform: translateY(-15px); } }"
195"A responsive button with a grid layout using template 'repeat(3, 1fr)', containing items with medium text and :hover { background-color: #555; color: white; }.","<h2 style='display: grid; grid-template-columns: 1fr 2fr; gap: 10px; :hover { transform: scale(1.1); }'><li style='color: blue; border: 1px double green;'>Search</li><li style='color: black; border: 1px groove purple;'>Search</li><li style='color: green; border: 1px groove pink;'>Enter Your Name</li><li style='color: pink; border: 1px double cyan;'>Search</li><li style='color: green; border: 1px groove red;'>Choose Option</li></h2> @keyframes bounce { 0%, 20%, 50%, 80%, 100% { transform: translateY(0); } 40% { transform: translateY(-30px); } 60% { transform: translateY(-15px); } }"
196"A small h2 with yellow text, Courier New font, none, and bounce, displayed as block with space-around, responsive with media queries.","<h3 style='color: cyan; font-size: 12px; font-family: Helvetica; box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.3); display: block; justify-content: space-around; animation: bounce 2s; transition: transform 0.2s ease-in-out;'>Search</h3> @keyframes bounce { 0%, 20%, 50%, 80%, 100% { transform: translateY(0); } 40% { transform: translateY(-30px); } 60% { transform: translateY(-15px); } } @media (min-width: 600px) and (max-width: 1200px) { font-size: 16px; }"
197"A textarea containing a list of options with cyan text, each inside a dotted box, with none, bounce, and @media (min-width: 1200px) { font-size: 18px; }.",<h1><ul style='box-shadow: none; animation: slide-up 1.5s;'><li style='color: cyan; border: 1px dotted blue;'>Choose Option</li><li style='color: cyan; border: 1px solid blue;'>Search</li><li style='color: yellow; border: 1px dotted green;'>Contact Us</li><li style='color: orange; border: 1px double cyan;'>Hello World</li><li style='color: green; border: 1px double black;'>Hello World</li></ul></h1> @keyframes fade-in { from { opacity: 0; } to { opacity: 1; } } @media (min-width: 600px) and (max-width: 1200px) { font-size: 16px; }
198"A h2 containing a green button with radial-gradient(circle, pink, purple) background that says 'Login', followed by a large text description, with fade-in.","<footer><button style='background-color: linear-gradient(to right, red, yellow); font-size: 20px; animation: spin 2s;'>Search</button><p style='font-size: 20px;'>contact us</p></footer> @keyframes fade-in { from { opacity: 0; } to { opacity: 1; } } transition: transform 0.2s ease-in-out;"
199"A responsive select with a grid layout using template '1fr 2fr', containing items with small text and :hover { transform: scale(1.1); }.","<input style='display: grid; grid-template-columns: 100px 1fr; gap: 10px; :hover { background-color: #555; color: white; }'><li style='color: pink; border: 1px groove blue;'>Contact Us</li><li style='color: blue; border: 1px double red;'>Submit</li><li style='color: blue; border: 1px dashed gray;'>Search</li><li style='color: white; border: 1px dashed gray;'>Click Me</li><li style='color: black; border: 1px dotted cyan;'>Choose Option</li></input> @keyframes bounce { 0%, 20%, 50%, 80%, 100% { transform: translateY(0); } 40% { transform: translateY(-30px); } 60% { transform: translateY(-15px); } }"
200"A footer containing a blue button with linear-gradient(to bottom, blue, green) background that says 'Click Me', followed by a medium text description, with bounce.","<input><button style='background-color: radial-gradient(circle, pink, purple); font-size: 16px; animation: slide-up 2s;'>Contact Us</button><p style='font-size: 16px;'>enter your name</p></input> @keyframes spin { from { transform: rotate(0deg); } to { transform: rotate(360deg); } } transition: all 0.3s ease;"
201"A orange button with medium Verdana text, using grid layout, aligned to the justify, with 4px 4px 10px rgba(0, 0, 0, 0.5), spin, and a :hover { background-color: #555; color: white; }.","<button style='background-color: black; font-size: 18px; font-family: Georgia; display: flex; text-align: right; box-shadow: 4px 4px 10px rgba(0, 0, 0, 0.5); animation: fade-in 2s; transition: all 0.3s ease; :hover { transform: scale(1.1); }'>Click Me</button> @keyframes bounce { 0%, 20%, 50%, 80%, 100% { transform: translateY(0); } 40% { transform: translateY(-30px); } 60% { transform: translateY(-15px); } }"
202"A medium textarea with black text, Courier New font, 0 4px 8px rgba(0, 0, 0, 0.2), and slide-up, displayed as flex with flex-end, responsive with media queries.","<h2 style='color: green; font-size: 20px; font-family: Arial; box-shadow: none; display: none; justify-content: space-between; animation: fade-in 2s; transition: all 0.3s ease;'>Choose Option</h2> @keyframes bounce { 0%, 20%, 50%, 80%, 100% { transform: translateY(0); } 40% { transform: translateY(-30px); } 60% { transform: translateY(-15px); } } @media (max-width: 600px) { font-size: 14px; }"
203"A green box with dotted border, linear-gradient(to right, red, yellow) background, large text centered inside, using none layout, with :hover { transform: scale(1.1); } and fade-in.","<div style='background: linear-gradient(to right, red, yellow); border: 2px double red; font-size: 22px; text-align: center; display: inline-block; justify-content: space-around; align-items: center; animation: bounce 2s; transition: background-color 0.4s ease; :hover { box-shadow: 0 0 10px rgba(0, 0, 0, 0.5); }'>Click Me</div> @keyframes bounce { 0%, 20%, 50%, 80%, 100% { transform: translateY(0); } 40% { transform: translateY(-30px); } 60% { transform: translateY(-15px); } }"
204"A cyan button with large Tahoma text, using flex layout, aligned to the right, with 4px 4px 10px rgba(0, 0, 0, 0.5), spin, and a :hover { transform: scale(1.1); }.","<button style='background-color: black; font-size: 20px; font-family: Times New Roman; display: block; text-align: right; box-shadow: 4px 4px 10px rgba(0, 0, 0, 0.5); animation: bounce 2s; transition: all 0.3s ease; :hover { background-color: #555; color: white; }'>Sign Up</button> @keyframes spin { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }"
205"A blue button with small Verdana text, using flex layout, aligned to the right, with 0 4px 8px rgba(0, 0, 0, 0.2), bounce, and a :hover { box-shadow: 0 0 10px rgba(0, 0, 0, 0.5); }.","<button style='background-color: white; font-size: 20px; font-family: Courier New; display: flex; text-align: left; box-shadow: 4px 4px 10px rgba(0, 0, 0, 0.5); animation: spin 2s; transition: background-color 0.4s ease; :hover { box-shadow: 0 0 10px rgba(0, 0, 0, 0.5); }'>Enter Your Name</button> @keyframes slide-up { from { transform: translateY(100%); } to { transform: translateY(0); } }"
206"A blue button with small Helvetica text, using inline-block layout, aligned to the justify, with 4px 4px 10px rgba(0, 0, 0, 0.5), slide-up, and a :hover { background-color: #555; color: white; }.","<button style='background-color: pink; font-size: 22px; font-family: Helvetica; display: grid; text-align: left; box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); animation: spin 2s; transition: transform 0.2s ease-in-out; :hover { transform: scale(1.1); }'>Search</button> @keyframes spin { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }"
207"A medium textarea with gray text, Courier New font, 0 4px 8px rgba(0, 0, 0, 0.2), and fade-in, displayed as flex with space-between, responsive with media queries.","<h1 style='color: green; font-size: 14px; font-family: Verdana; box-shadow: none; display: none; justify-content: flex-end; animation: bounce 2s; transition: all 0.3s ease;'>Contact Us</h1> @keyframes bounce { 0%, 20%, 50%, 80%, 100% { transform: translateY(0); } 40% { transform: translateY(-30px); } 60% { transform: translateY(-15px); } } @media (min-width: 600px) and (max-width: 1200px) { font-size: 16px; }"
208"A white button with medium Times New Roman text, using flex layout, aligned to the justify, with 0 4px 8px rgba(0, 0, 0, 0.2), slide-up, and a :hover { background-color: #555; color: white; }.","<button style='background-color: black; font-size: 22px; font-family: Helvetica; display: none; text-align: left; box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); animation: fade-in 2s; transition: transform 0.2s ease-in-out; :hover { transform: scale(1.1); }'>Enter Your Name</button> @keyframes fade-in { from { opacity: 0; } to { opacity: 1; } }"
209"A orange button with medium Tahoma text, using none layout, aligned to the right, with 2px 2px 5px rgba(0, 0, 0, 0.3), slide-up, and a :hover { transform: scale(1.1); }.",<button style='background-color: cyan; font-size: 12px; font-family: Tahoma; display: grid; text-align: right; box-shadow: none; animation: fade-in 2s; transition: transform 0.2s ease-in-out; :hover { transform: scale(1.1); }'>Hello World</button> @keyframes slide-up { from { transform: translateY(100%); } to { transform: translateY(0); } }
210"A responsive div with a grid layout using template 'repeat(3, 1fr)', containing items with small text and :hover { transform: scale(1.1); }.",<button style='display: grid; grid-template-columns: 100px 1fr; gap: 10px; :hover { transform: scale(1.1); }'><li style='color: black; border: 1px ridge pink;'>Click Me</li><li style='color: red; border: 1px ridge pink;'>Sign Up</li><li style='color: yellow; border: 1px ridge orange;'>Hello World</li><li style='color: red; border: 1px ridge purple;'>Hello World</li><li style='color: yellow; border: 1px dotted pink;'>Choose Option</li></button> @keyframes fade-in { from { opacity: 0; } to { opacity: 1; } }
211"A pink box with ridge border, linear-gradient(to right, red, yellow) background, medium text centered inside, using grid layout, with :hover { background-color: #555; color: white; } and spin.","<div style='background: radial-gradient(circle, pink, purple); border: 2px groove white; font-size: 18px; text-align: center; display: grid; justify-content: space-between; align-items: center; animation: slide-up 2s; transition: transform 0.2s ease-in-out; :hover { box-shadow: 0 0 10px rgba(0, 0, 0, 0.5); }'>Login</div> @keyframes fade-in { from { opacity: 0; } to { opacity: 1; } }"
212"A responsive footer with a grid layout using template '100px 1fr', containing items with medium text and :hover { background-color: #555; color: white; }.","<h3 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 solid red;'>Login</li><li style='color: purple; border: 1px solid purple;'>Choose Option</li><li style='color: orange; border: 1px dotted white;'>Contact Us</li><li style='color: white; border: 1px dashed orange;'>Submit</li><li style='color: black; border: 1px dashed red;'>Submit</li></h3> @keyframes fade-in { from { opacity: 0; } to { opacity: 1; } }"
213"A footer containing a blue button with linear-gradient(to bottom, blue, green) background that says 'Choose Option', followed by a medium text description, with fade-in.","<h3><button style='background-color: linear-gradient(to bottom, blue, green); font-size: 18px; animation: fade-in 2s;'>Sign Up</button><p style='font-size: 18px;'>click me</p></h3> @keyframes spin { from { transform: rotate(0deg); } to { transform: rotate(360deg); } } transition: all 0.3s ease;"
214"A small h1 with white text, Georgia font, 0 4px 8px rgba(0, 0, 0, 0.2), and slide-up, displayed as inline-block with flex-end, responsive with media queries.","<input style='color: white; font-size: 30px; font-family: Helvetica; box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); display: none; justify-content: flex-start; animation: fade-in 2s; transition: all 0.3s ease;'>Hello World</input> @keyframes spin { from { transform: rotate(0deg); } to { transform: rotate(360deg); } } @media (min-width: 1200px) { font-size: 18px; }"
215"A blue button with medium Helvetica text, using none layout, aligned to the right, with 2px 2px 5px rgba(0, 0, 0, 0.3), bounce, and a :hover { transform: scale(1.1); }.","<button style='background-color: white; font-size: 22px; font-family: Tahoma; display: block; text-align: justify; box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.3); animation: fade-in 2s; transition: background-color 0.4s ease; :hover { transform: scale(1.1); }'>Submit</button> @keyframes slide-up { from { transform: translateY(100%); } to { transform: translateY(0); } }"
216"A select containing a list of options with gray text, each inside a dotted box, with 2px 2px 5px rgba(0, 0, 0, 0.3), bounce, and @media (min-width: 600px) and (max-width: 1200px) { font-size: 16px; }.","<header><ul style='box-shadow: 4px 4px 10px rgba(0, 0, 0, 0.5); animation: spin 1.5s;'><li style='color: yellow; border: 1px groove white;'>Login</li><li style='color: cyan; border: 1px dotted pink;'>Sign Up</li><li style='color: red; border: 1px solid green;'>Submit</li><li style='color: orange; border: 1px groove black;'>Sign Up</li><li style='color: purple; border: 1px double red;'>Search</li></ul></header> @keyframes slide-up { from { transform: translateY(100%); } to { transform: translateY(0); } } @media (max-width: 600px) { font-size: 14px; }"
217"A yellow button with small Tahoma text, using flex layout, aligned to the justify, with 2px 2px 5px rgba(0, 0, 0, 0.3), bounce, and a :hover { transform: scale(1.1); }.","<button style='background-color: black; font-size: 12px; font-family: Courier New; display: none; text-align: right; box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); animation: spin 2s; transition: background-color 0.4s ease; :hover { transform: scale(1.1); }'>Hello World</button> @keyframes slide-up { from { transform: translateY(100%); } to { transform: translateY(0); } }"
218"A blue button with large Tahoma text, using grid layout, aligned to the center, with 0 4px 8px rgba(0, 0, 0, 0.2), spin, and a :hover { transform: scale(1.1); }.","<button style='background-color: purple; font-size: 14px; font-family: Georgia; display: block; text-align: center; box-shadow: 4px 4px 10px rgba(0, 0, 0, 0.5); animation: spin 2s; transition: background-color 0.4s ease; :hover { background-color: #555; color: white; }'>Submit</button> @keyframes fade-in { from { opacity: 0; } to { opacity: 1; } }"
219"A large h2 with gray text, Times New Roman font, 4px 4px 10px rgba(0, 0, 0, 0.5), and fade-in, displayed as inline-block with space-between, responsive with media queries.",<h2 style='color: orange; font-size: 20px; font-family: Verdana; box-shadow: none; display: none; justify-content: center; animation: bounce 2s; transition: all 0.3s ease;'>Contact Us</h2> @keyframes slide-up { from { transform: translateY(100%); } to { transform: translateY(0); } } @media (min-width: 600px) and (max-width: 1200px) { font-size: 16px; }
220"A yellow button with large Courier New text, using inline-block layout, aligned to the justify, with none, bounce, and a :hover { background-color: #555; color: white; }.","<button style='background-color: orange; font-size: 22px; font-family: Arial; display: none; text-align: justify; box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.3); animation: bounce 2s; transition: transform 0.2s ease-in-out; :hover { transform: scale(1.1); }'>Sign Up</button> @keyframes spin { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }"
221"A black box with solid border, linear-gradient(to right, red, yellow) background, medium text centered inside, using flex layout, with :hover { box-shadow: 0 0 10px rgba(0, 0, 0, 0.5); } and spin.","<div style='background: radial-gradient(circle, pink, purple); border: 2px solid black; font-size: 16px; text-align: center; display: flex; justify-content: flex-start; align-items: center; animation: bounce 2s; transition: background-color 0.4s ease; :hover { transform: scale(1.1); }'>Enter Your Name</div> @keyframes fade-in { from { opacity: 0; } to { opacity: 1; } }"
222"A large div with white text, Tahoma font, none, and bounce, displayed as block with center, responsive with media queries.",<p style='color: blue; font-size: 14px; font-family: Arial; box-shadow: none; display: block; justify-content: flex-start; animation: slide-up 2s; transition: transform 0.2s ease-in-out;'>Login</p> @keyframes fade-in { from { opacity: 0; } to { opacity: 1; } } @media (min-width: 1200px) { font-size: 18px; }
223"A responsive h1 with a grid layout using template 'repeat(2, 1fr)', containing items with medium text and :hover { transform: scale(1.1); }.","<h3 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 dotted green;'>Login</li><li style='color: pink; border: 1px groove yellow;'>Contact Us</li><li style='color: blue; border: 1px dotted green;'>Login</li><li style='color: red; border: 1px double red;'>Sign Up</li><li style='color: green; border: 1px dashed blue;'>Enter Your Name</li></h3> @keyframes slide-up { from { transform: translateY(100%); } to { transform: translateY(0); } }"
224"A h2 containing a pink button with linear-gradient(to bottom, blue, green) background that says 'Click Me', followed by a medium text description, with fade-in.","<footer><button style='background-color: linear-gradient(to right, red, yellow); font-size: 14px; animation: fade-in 2s;'>Enter Your Name</button><p style='font-size: 14px;'>choose option</p></footer> @keyframes bounce { 0%, 20%, 50%, 80%, 100% { transform: translateY(0); } 40% { transform: translateY(-30px); } 60% { transform: translateY(-15px); } } transition: all 0.3s ease;"
225"A nav containing a yellow button with radial-gradient(circle, pink, purple) background that says 'Enter Your Name', followed by a medium text description, with bounce.","<textarea><button style='background-color: radial-gradient(circle, pink, purple); font-size: 24px; animation: bounce 2s;'>Submit</button><p style='font-size: 24px;'>search</p></textarea> @keyframes spin { from { transform: rotate(0deg); } to { transform: rotate(360deg); } } transition: transform 0.2s ease-in-out;"
226"A small button with green text, Arial font, 2px 2px 5px rgba(0, 0, 0, 0.3), and bounce, displayed as grid with flex-end, responsive with media queries.","<header style='color: orange; font-size: 14px; font-family: Arial; box-shadow: none; display: flex; justify-content: space-between; animation: slide-up 2s; transition: background-color 0.4s ease;'>Click Me</header> @keyframes bounce { 0%, 20%, 50%, 80%, 100% { transform: translateY(0); } 40% { transform: translateY(-30px); } 60% { transform: translateY(-15px); } } @media (min-width: 600px) and (max-width: 1200px) { font-size: 16px; }"
227"A responsive span with a grid layout using template 'repeat(2, 1fr)', containing items with large text and :hover { transform: scale(1.1); }.","<p 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 solid green;'>Sign Up</li><li style='color: pink; border: 1px ridge gray;'>Contact Us</li><li style='color: blue; border: 1px dotted orange;'>Login</li><li style='color: blue; border: 1px double yellow;'>Click Me</li><li style='color: purple; border: 1px solid red;'>Login</li></p> @keyframes slide-up { from { transform: translateY(100%); } to { transform: translateY(0); } }"
228"A yellow box with dotted border, radial-gradient(circle, pink, purple) background, medium text centered inside, using flex layout, with :hover { transform: scale(1.1); } and spin.","<div style='background: radial-gradient(circle, pink, purple); border: 2px double red; font-size: 16px; text-align: center; display: none; justify-content: space-between; align-items: center; animation: slide-up 2s; transition: all 0.3s ease; :hover { transform: scale(1.1); }'>Click Me</div> @keyframes slide-up { from { transform: translateY(100%); } to { transform: translateY(0); } }"
229"A pink button with medium Arial text, using grid layout, aligned to the right, with none, spin, and a :hover { background-color: #555; color: white; }.","<button style='background-color: yellow; font-size: 20px; font-family: Helvetica; display: inline-block; text-align: left; box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); animation: fade-in 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% { transform: translateY(-30px); } 60% { transform: translateY(-15px); } }"
230"A cyan box with dashed border, linear-gradient(to bottom, blue, green) background, large text centered inside, using block layout, with :hover { transform: scale(1.1); } and slide-up.","<div style='background: radial-gradient(circle, pink, purple); border: 2px groove gray; font-size: 12px; text-align: center; display: inline-block; justify-content: flex-start; align-items: center; animation: bounce 2s; transition: all 0.3s ease; :hover { background-color: #555; color: white; }'>Choose Option</div> @keyframes fade-in { from { opacity: 0; } to { opacity: 1; } }"
231"A responsive h2 with a grid layout using template '100px 1fr', containing items with large text and :hover { background-color: #555; color: white; }.","<textarea 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: red; border: 1px dashed gray;'>Login</li><li style='color: green; border: 1px solid green;'>Enter Your Name</li><li style='color: white; border: 1px ridge white;'>Hello World</li><li style='color: gray; border: 1px ridge purple;'>Choose Option</li><li style='color: cyan; border: 1px dashed green;'>Click Me</li></textarea> @keyframes slide-up { from { transform: translateY(100%); } to { transform: translateY(0); } }"
232"A orange button with large Georgia text, using grid layout, aligned to the center, with 2px 2px 5px rgba(0, 0, 0, 0.3), bounce, and a :hover { background-color: #555; color: white; }.",<button style='background-color: cyan; font-size: 20px; font-family: Tahoma; display: none; text-align: justify; box-shadow: none; animation: spin 2s; transition: transform 0.2s ease-in-out; :hover { transform: scale(1.1); }'>Login</button> @keyframes slide-up { from { transform: translateY(100%); } to { transform: translateY(0); } }
233"A input containing a list of options with pink text, each inside a groove box, with none, bounce, and @media (max-width: 600px) { font-size: 14px; }.","<h3><ul style='box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); animation: bounce 1.5s;'><li style='color: pink; border: 1px groove pink;'>Enter Your Name</li><li style='color: red; border: 1px dotted pink;'>Login</li><li style='color: cyan; border: 1px double cyan;'>Search</li><li style='color: pink; border: 1px dotted orange;'>Enter Your Name</li><li style='color: purple; border: 1px dashed pink;'>Contact Us</li></ul></h3> @keyframes fade-in { from { opacity: 0; } to { opacity: 1; } } @media (max-width: 600px) { font-size: 14px; }"
234"A white button with medium Tahoma text, using inline-block layout, aligned to the center, with 0 4px 8px rgba(0, 0, 0, 0.2), spin, and a :hover { box-shadow: 0 0 10px rgba(0, 0, 0, 0.5); }.","<button style='background-color: yellow; font-size: 14px; font-family: Verdana; display: grid; text-align: justify; box-shadow: none; animation: spin 2s; transition: background-color 0.4s ease; :hover { transform: scale(1.1); }'>Choose Option</button> @keyframes bounce { 0%, 20%, 50%, 80%, 100% { transform: translateY(0); } 40% { transform: translateY(-30px); } 60% { transform: translateY(-15px); } }"
235"A select containing a red button with linear-gradient(to right, red, yellow) background that says 'Search', followed by a small text description, with spin.","<p><button style='background-color: linear-gradient(to bottom, blue, green); font-size: 26px; animation: slide-up 2s;'>Login</button><p style='font-size: 26px;'>submit</p></p> @keyframes bounce { 0%, 20%, 50%, 80%, 100% { transform: translateY(0); } 40% { transform: translateY(-30px); } 60% { transform: translateY(-15px); } } transition: background-color 0.4s ease;"
236"A large nav with gray text, Courier New font, 4px 4px 10px rgba(0, 0, 0, 0.5), and bounce, displayed as none with flex-end, responsive with media queries.","<h2 style='color: yellow; font-size: 24px; font-family: Verdana; box-shadow: 4px 4px 10px rgba(0, 0, 0, 0.5); display: block; justify-content: center; animation: spin 2s; transition: transform 0.2s ease-in-out;'>Enter Your Name</h2> @keyframes spin { from { transform: rotate(0deg); } to { transform: rotate(360deg); } } @media (min-width: 1200px) { font-size: 18px; }"
237"A p containing a black button with linear-gradient(to bottom, blue, green) background that says 'Sign Up', followed by a medium text description, with fade-in.","<span><button style='background-color: radial-gradient(circle, pink, purple); font-size: 24px; animation: spin 2s;'>Search</button><p style='font-size: 24px;'>login</p></span> @keyframes spin { from { transform: rotate(0deg); } to { transform: rotate(360deg); } } transition: background-color 0.4s ease;"
238"A pink button with large Tahoma text, using block layout, aligned to the center, with 0 4px 8px rgba(0, 0, 0, 0.2), bounce, and a :hover { transform: scale(1.1); }.","<button style='background-color: black; font-size: 14px; font-family: Times New Roman; display: none; text-align: justify; box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.3); animation: fade-in 2s; transition: transform 0.2s ease-in-out; :hover { transform: scale(1.1); }'>Enter Your Name</button> @keyframes fade-in { from { opacity: 0; } to { opacity: 1; } }"
239"A h3 containing a cyan button with linear-gradient(to right, red, yellow) background that says 'Contact Us', followed by a medium text description, with spin.","<textarea><button style='background-color: radial-gradient(circle, pink, purple); font-size: 30px; animation: bounce 2s;'>Choose Option</button><p style='font-size: 30px;'>sign up</p></textarea> @keyframes spin { from { transform: rotate(0deg); } to { transform: rotate(360deg); } } transition: transform 0.2s ease-in-out;"
240"A gray box with dashed border, radial-gradient(circle, pink, purple) 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 groove purple; font-size: 18px; text-align: center; display: grid; justify-content: center; align-items: center; animation: bounce 2s; transition: background-color 0.4s ease; :hover { box-shadow: 0 0 10px rgba(0, 0, 0, 0.5); }'>Click Me</div> @keyframes bounce { 0%, 20%, 50%, 80%, 100% { transform: translateY(0); } 40% { transform: translateY(-30px); } 60% { transform: translateY(-15px); } }"
241"A medium h3 with purple text, Georgia font, none, and spin, displayed as block with flex-start, responsive with media queries.",<textarea style='color: black; font-size: 18px; font-family: Tahoma; box-shadow: none; display: grid; justify-content: center; animation: fade-in 2s; transition: background-color 0.4s ease;'>Search</textarea> @keyframes spin { from { transform: rotate(0deg); } to { transform: rotate(360deg); } } @media (max-width: 600px) { font-size: 14px; }
242"A header containing a red button with radial-gradient(circle, pink, purple) background that says 'Sign Up', followed by a medium text description, with fade-in.","<h1><button style='background-color: linear-gradient(to bottom, blue, green); font-size: 22px; animation: fade-in 2s;'>Click Me</button><p style='font-size: 22px;'>search</p></h1> @keyframes spin { from { transform: rotate(0deg); } to { transform: rotate(360deg); } } transition: transform 0.2s ease-in-out;"
243"A large nav with blue text, Helvetica font, 0 4px 8px rgba(0, 0, 0, 0.2), and spin, displayed as none with flex-start, responsive with media queries.","<div style='color: pink; font-size: 14px; font-family: Georgia; box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); display: block; justify-content: flex-start; animation: bounce 2s; transition: background-color 0.4s ease;'>Submit</div> @keyframes slide-up { from { transform: translateY(100%); } to { transform: translateY(0); } } @media (max-width: 600px) { font-size: 14px; }"
244"A medium select with purple text, Verdana font, 2px 2px 5px rgba(0, 0, 0, 0.3), and fade-in, displayed as flex with flex-start, responsive with media queries.","<textarea style='color: yellow; font-size: 30px; font-family: Helvetica; box-shadow: 4px 4px 10px rgba(0, 0, 0, 0.5); display: inline-block; justify-content: flex-end; animation: bounce 2s; transition: background-color 0.4s ease;'>Submit</textarea> @keyframes bounce { 0%, 20%, 50%, 80%, 100% { transform: translateY(0); } 40% { transform: translateY(-30px); } 60% { transform: translateY(-15px); } } @media (max-width: 600px) { font-size: 14px; }"
245"A h3 containing a list of options with red text, each inside a dotted box, with 4px 4px 10px rgba(0, 0, 0, 0.5), fade-in, and @media (max-width: 600px) { font-size: 14px; }.","<nav><ul style='box-shadow: 4px 4px 10px rgba(0, 0, 0, 0.5); animation: fade-in 1.5s;'><li style='color: red; border: 1px dotted cyan;'>Submit</li><li style='color: pink; border: 1px groove yellow;'>Contact Us</li><li style='color: red; border: 1px groove red;'>Enter Your Name</li><li style='color: white; border: 1px dotted blue;'>Enter Your Name</li><li style='color: orange; border: 1px dashed blue;'>Choose Option</li></ul></nav> @keyframes bounce { 0%, 20%, 50%, 80%, 100% { transform: translateY(0); } 40% { transform: translateY(-30px); } 60% { transform: translateY(-15px); } } @media (min-width: 600px) and (max-width: 1200px) { font-size: 16px; }"
246"A green button with medium Courier New text, using none layout, aligned to the center, with none, slide-up, and a :hover { transform: scale(1.1); }.",<button style='background-color: cyan; font-size: 24px; font-family: Tahoma; display: inline-block; text-align: justify; box-shadow: none; animation: bounce 2s; transition: all 0.3s ease; :hover { transform: scale(1.1); }'>Hello World</button> @keyframes fade-in { from { opacity: 0; } to { opacity: 1; } }
247"A black button with medium Helvetica text, using block 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: blue; font-size: 16px; font-family: Helvetica; display: grid; text-align: justify; box-shadow: 4px 4px 10px rgba(0, 0, 0, 0.5); animation: fade-in 2s; transition: background-color 0.4s ease; :hover { background-color: #555; color: white; }'>Choose Option</button> @keyframes fade-in { from { opacity: 0; } to { opacity: 1; } }"
248"A responsive h2 with a grid layout using template 'repeat(3, 1fr)', containing items with medium text and :hover { box-shadow: 0 0 10px rgba(0, 0, 0, 0.5); }.","<header style='display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; :hover { background-color: #555; color: white; }'><li style='color: purple; border: 1px dotted green;'>Submit</li><li style='color: white; border: 1px ridge green;'>Login</li><li style='color: red; border: 1px ridge white;'>Submit</li><li style='color: yellow; border: 1px double green;'>Hello World</li><li style='color: orange; border: 1px solid red;'>Login</li></header> @keyframes slide-up { from { transform: translateY(100%); } to { transform: translateY(0); } }"
249"A responsive footer with a grid layout using template '100px 1fr', containing items with large text and :hover { box-shadow: 0 0 10px rgba(0, 0, 0, 0.5); }.","<h3 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: gray; border: 1px groove cyan;'>Hello World</li><li style='color: green; border: 1px solid red;'>Hello World</li><li style='color: black; border: 1px groove pink;'>Contact Us</li><li style='color: white; border: 1px dotted pink;'>Hello World</li><li style='color: white; border: 1px solid purple;'>Sign Up</li></h3> @keyframes bounce { 0%, 20%, 50%, 80%, 100% { transform: translateY(0); } 40% { transform: translateY(-30px); } 60% { transform: translateY(-15px); } }"
250"A blue button with medium Helvetica text, using inline-block layout, aligned to the left, with none, fade-in, and a :hover { background-color: #555; color: white; }.","<button style='background-color: yellow; font-size: 18px; font-family: Georgia; display: grid; text-align: left; box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.3); animation: slide-up 2s; transition: all 0.3s ease; :hover { box-shadow: 0 0 10px rgba(0, 0, 0, 0.5); }'>Submit</button> @keyframes bounce { 0%, 20%, 50%, 80%, 100% { transform: translateY(0); } 40% { transform: translateY(-30px); } 60% { transform: translateY(-15px); } }"
251"A purple box with dashed border, linear-gradient(to bottom, blue, green) background, large text centered inside, using none layout, with :hover { background-color: #555; color: white; } and slide-up.","<div style='background: linear-gradient(to right, red, yellow); border: 2px dotted green; font-size: 16px; text-align: center; display: none; justify-content: flex-start; align-items: center; animation: spin 2s; transition: transform 0.2s ease-in-out; :hover { box-shadow: 0 0 10px rgba(0, 0, 0, 0.5); }'>Search</div> @keyframes spin { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }"
252"A button containing a list of options with green text, each inside a ridge 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: bounce 1.5s;'><li style='color: white; border: 1px ridge pink;'>Submit</li><li style='color: green; border: 1px double black;'>Sign Up</li><li style='color: red; border: 1px dotted cyan;'>Choose Option</li><li style='color: red; border: 1px groove purple;'>Submit</li><li style='color: red; border: 1px ridge yellow;'>Choose Option</li></ul></nav> @keyframes fade-in { from { opacity: 0; } to { opacity: 1; } } @media (max-width: 600px) { font-size: 14px; }"
253"A responsive header with a grid layout using template 'repeat(3, 1fr)', containing items with medium text and :hover { transform: scale(1.1); }.",<textarea style='display: grid; grid-template-columns: 100px 1fr; gap: 10px; :hover { transform: scale(1.1); }'><li style='color: yellow; border: 1px dotted green;'>Submit</li><li style='color: green; border: 1px dashed gray;'>Choose Option</li><li style='color: yellow; border: 1px double pink;'>Sign Up</li><li style='color: pink; border: 1px double pink;'>Enter Your Name</li><li style='color: gray; border: 1px solid white;'>Sign Up</li></textarea> @keyframes fade-in { from { opacity: 0; } to { opacity: 1; } }
254"A div containing a list of options with gray text, each inside a solid box, with none, slide-up, and @media (max-width: 600px) { font-size: 14px; }.","<h1><ul style='box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.3); animation: slide-up 1.5s;'><li style='color: red; border: 1px ridge cyan;'>Hello World</li><li style='color: blue; border: 1px groove green;'>Click Me</li><li style='color: purple; border: 1px ridge yellow;'>Contact Us</li><li style='color: yellow; border: 1px ridge cyan;'>Login</li><li style='color: orange; border: 1px double gray;'>Choose Option</li></ul></h1> @keyframes bounce { 0%, 20%, 50%, 80%, 100% { transform: translateY(0); } 40% { transform: translateY(-30px); } 60% { transform: translateY(-15px); } } @media (min-width: 1200px) { font-size: 18px; }"
255"A input containing a red button with linear-gradient(to bottom, blue, green) background that says 'Contact Us', followed by a small text description, with spin.","<input><button style='background-color: radial-gradient(circle, pink, purple); font-size: 30px; animation: spin 2s;'>Enter Your Name</button><p style='font-size: 30px;'>click me</p></input> @keyframes spin { from { transform: rotate(0deg); } to { transform: rotate(360deg); } } transition: background-color 0.4s ease;"
256"A div containing a yellow button with radial-gradient(circle, pink, purple) background that says 'Sign Up', followed by a medium text description, with fade-in.","<select><button style='background-color: linear-gradient(to right, red, yellow); font-size: 28px; animation: fade-in 2s;'>Sign Up</button><p style='font-size: 28px;'>click me</p></select> @keyframes slide-up { from { transform: translateY(100%); } to { transform: translateY(0); } } transition: background-color 0.4s ease;"
257"A h3 containing a list of options with orange text, each inside a dotted box, with 4px 4px 10px rgba(0, 0, 0, 0.5), bounce, and @media (min-width: 1200px) { font-size: 18px; }.","<div><ul style='box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); animation: bounce 1.5s;'><li style='color: cyan; border: 1px ridge orange;'>Enter Your Name</li><li style='color: purple; border: 1px dashed blue;'>Search</li><li style='color: red; border: 1px dotted green;'>Hello World</li><li style='color: blue; border: 1px solid yellow;'>Enter Your Name</li><li style='color: gray; border: 1px groove white;'>Enter Your Name</li></ul></div> @keyframes bounce { 0%, 20%, 50%, 80%, 100% { transform: translateY(0); } 40% { transform: translateY(-30px); } 60% { transform: translateY(-15px); } } @media (max-width: 600px) { font-size: 14px; }"
258"A purple button with medium Georgia text, using block layout, aligned to the center, with 0 4px 8px rgba(0, 0, 0, 0.2), slide-up, and a :hover { background-color: #555; color: white; }.","<button style='background-color: pink; font-size: 20px; font-family: Verdana; display: inline-block; text-align: center; box-shadow: 4px 4px 10px rgba(0, 0, 0, 0.5); animation: bounce 2s; transition: background-color 0.4s ease; :hover { background-color: #555; color: white; }'>Search</button> @keyframes slide-up { from { transform: translateY(100%); } to { transform: translateY(0); } }"
259"A cyan button with medium Georgia text, using none layout, aligned to the center, 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: 28px; font-family: Courier New; display: inline-block; text-align: justify; box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); animation: fade-in 2s; transition: background-color 0.4s ease; :hover { box-shadow: 0 0 10px rgba(0, 0, 0, 0.5); }'>Hello World</button> @keyframes spin { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }"
260"A yellow box with solid border, radial-gradient(circle, pink, purple) background, medium 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 green; font-size: 30px; text-align: center; display: grid; justify-content: flex-start; align-items: center; animation: slide-up 2s; transition: background-color 0.4s ease; :hover { transform: scale(1.1); }'>Sign Up</div> @keyframes bounce { 0%, 20%, 50%, 80%, 100% { transform: translateY(0); } 40% { transform: translateY(-30px); } 60% { transform: translateY(-15px); } }"
261"A red box with double border, linear-gradient(to bottom, blue, green) background, large text centered inside, using flex 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 double purple; font-size: 26px; text-align: center; display: flex; 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> @keyframes bounce { 0%, 20%, 50%, 80%, 100% { transform: translateY(0); } 40% { transform: translateY(-30px); } 60% { transform: translateY(-15px); } }"
262"A responsive p with a grid layout using template '100px 1fr', containing items with small text and :hover { background-color: #555; color: white; }.","<span style='display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; :hover { background-color: #555; color: white; }'><li style='color: black; border: 1px dotted blue;'>Contact Us</li><li style='color: pink; border: 1px double blue;'>Enter Your Name</li><li style='color: cyan; border: 1px dashed gray;'>Enter Your Name</li><li style='color: black; border: 1px solid blue;'>Enter Your Name</li><li style='color: red; border: 1px dashed red;'>Contact Us</li></span> @keyframes slide-up { from { transform: translateY(100%); } to { transform: translateY(0); } }"
263"A responsive header with a grid layout using template '100px 1fr', containing items with large text and :hover { transform: scale(1.1); }.","<textarea style='display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px; :hover { box-shadow: 0 0 10px rgba(0, 0, 0, 0.5); }'><li style='color: green; border: 1px solid black;'>Search</li><li style='color: blue; border: 1px dotted cyan;'>Choose Option</li><li style='color: purple; border: 1px solid blue;'>Choose Option</li><li style='color: yellow; border: 1px dashed blue;'>Enter Your Name</li><li style='color: orange; border: 1px double black;'>Submit</li></textarea> @keyframes slide-up { from { transform: translateY(100%); } to { transform: translateY(0); } }"
264"A h3 containing a white button with linear-gradient(to bottom, blue, green) background that says 'Login', followed by a medium text description, with slide-up.","<footer><button style='background-color: linear-gradient(to right, red, yellow); font-size: 18px; animation: fade-in 2s;'>Login</button><p style='font-size: 18px;'>hello world</p></footer> @keyframes slide-up { from { transform: translateY(100%); } to { transform: translateY(0); } } transition: background-color 0.4s ease;"
265"A responsive header with a grid layout using template 'repeat(2, 1fr)', containing items with small text and :hover { background-color: #555; color: white; }.",<textarea style='display: grid; grid-template-columns: 1fr 2fr; gap: 10px; :hover { transform: scale(1.1); }'><li style='color: blue; border: 1px double black;'>Enter Your Name</li><li style='color: cyan; border: 1px double orange;'>Click Me</li><li style='color: orange; border: 1px dotted black;'>Submit</li><li style='color: black; border: 1px double black;'>Contact Us</li><li style='color: yellow; border: 1px ridge blue;'>Search</li></textarea> @keyframes spin { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }
266"A h3 containing a white button with linear-gradient(to right, red, yellow) background that says 'Click Me', followed by a medium text description, with spin.","<h1><button style='background-color: radial-gradient(circle, pink, purple); font-size: 18px; animation: slide-up 2s;'>Search</button><p style='font-size: 18px;'>hello world</p></h1> @keyframes spin { from { transform: rotate(0deg); } to { transform: rotate(360deg); } } transition: all 0.3s ease;"
267"A p containing a list of options with pink text, each inside a ridge box, with 2px 2px 5px rgba(0, 0, 0, 0.3), spin, and @media (min-width: 1200px) { font-size: 18px; }.","<p><ul style='box-shadow: none; animation: bounce 1.5s;'><li style='color: black; border: 1px groove white;'>Contact Us</li><li style='color: orange; border: 1px groove yellow;'>Submit</li><li style='color: green; border: 1px groove green;'>Submit</li><li style='color: black; border: 1px solid black;'>Search</li><li style='color: blue; border: 1px ridge purple;'>Click Me</li></ul></p> @keyframes bounce { 0%, 20%, 50%, 80%, 100% { transform: translateY(0); } 40% { transform: translateY(-30px); } 60% { transform: translateY(-15px); } } @media (max-width: 600px) { font-size: 14px; }"
268"A medium footer with pink text, Helvetica font, none, and bounce, displayed as inline-block with center, responsive with media queries.","<button style='color: gray; font-size: 22px; font-family: Courier New; box-shadow: 4px 4px 10px rgba(0, 0, 0, 0.5); display: block; justify-content: center; animation: bounce 2s; transition: all 0.3s ease;'>Click Me</button> @keyframes slide-up { from { transform: translateY(100%); } to { transform: translateY(0); } } @media (max-width: 600px) { font-size: 14px; }"
269"A yellow button with small Tahoma text, using grid layout, aligned to the justify, with 4px 4px 10px rgba(0, 0, 0, 0.5), slide-up, and a :hover { box-shadow: 0 0 10px rgba(0, 0, 0, 0.5); }.","<button style='background-color: black; font-size: 16px; font-family: Times New Roman; display: block; text-align: right; 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; }'>Hello World</button> @keyframes slide-up { from { transform: translateY(100%); } to { transform: translateY(0); } }"
270"A input containing a list of options with gray text, each inside a dotted box, with none, spin, and @media (max-width: 600px) { font-size: 14px; }.","<textarea><ul style='box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); animation: spin 1.5s;'><li style='color: pink; border: 1px dotted blue;'>Choose Option</li><li style='color: orange; border: 1px double cyan;'>Enter Your Name</li><li style='color: pink; border: 1px solid gray;'>Enter Your Name</li><li style='color: pink; border: 1px ridge black;'>Contact Us</li><li style='color: blue; border: 1px ridge red;'>Login</li></ul></textarea> @keyframes slide-up { from { transform: translateY(100%); } to { transform: translateY(0); } } @media (max-width: 600px) { font-size: 14px; }"
271"A yellow button with large Times New Roman text, using flex layout, aligned to the center, 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: white; font-size: 30px; font-family: Georgia; display: flex; text-align: right; box-shadow: none; 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 bounce { 0%, 20%, 50%, 80%, 100% { transform: translateY(0); } 40% { transform: translateY(-30px); } 60% { transform: translateY(-15px); } }"
272"A large h3 with blue text, Georgia font, 2px 2px 5px rgba(0, 0, 0, 0.3), and fade-in, displayed as inline-block with flex-end, responsive with media queries.","<h1 style='color: gray; font-size: 30px; font-family: Tahoma; box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); display: none; justify-content: flex-start; animation: fade-in 2s; transition: background-color 0.4s ease;'>Search</h1> @keyframes bounce { 0%, 20%, 50%, 80%, 100% { transform: translateY(0); } 40% { transform: translateY(-30px); } 60% { transform: translateY(-15px); } } @media (min-width: 600px) and (max-width: 1200px) { font-size: 16px; }"
273"A responsive span with a grid layout using template 'repeat(3, 1fr)', containing items with medium text and :hover { transform: scale(1.1); }.","<div style='display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; :hover { transform: scale(1.1); }'><li style='color: purple; border: 1px dashed orange;'>Click Me</li><li style='color: purple; border: 1px dashed pink;'>Submit</li><li style='color: pink; border: 1px dashed white;'>Enter Your Name</li><li style='color: cyan; border: 1px groove purple;'>Search</li><li style='color: green; border: 1px groove orange;'>Hello World</li></div> @keyframes fade-in { from { opacity: 0; } to { opacity: 1; } }"
274"A responsive input 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); }.","<p style='display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px; :hover { transform: scale(1.1); }'><li style='color: black; border: 1px dashed cyan;'>Contact Us</li><li style='color: pink; border: 1px dotted orange;'>Sign Up</li><li style='color: purple; border: 1px dashed cyan;'>Contact Us</li><li style='color: yellow; border: 1px double orange;'>Search</li><li style='color: black; border: 1px dotted red;'>Enter Your Name</li></p> @keyframes fade-in { from { opacity: 0; } to { opacity: 1; } }"
275"A gray button with large Verdana text, using inline-block layout, aligned to the left, with 0 4px 8px rgba(0, 0, 0, 0.2), fade-in, and a :hover { transform: scale(1.1); }.","<button style='background-color: green; font-size: 28px; font-family: Courier New; display: inline-block; text-align: justify; box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.3); animation: fade-in 2s; transition: all 0.3s ease; :hover { transform: scale(1.1); }'>Login</button> @keyframes slide-up { from { transform: translateY(100%); } to { transform: translateY(0); } }"
276"A nav containing a list of options with purple text, each inside a dashed box, with 4px 4px 10px rgba(0, 0, 0, 0.5), 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: spin 1.5s;'><li style='color: gray; border: 1px dashed yellow;'>Search</li><li style='color: white; border: 1px dashed purple;'>Sign Up</li><li style='color: cyan; border: 1px double gray;'>Click Me</li><li style='color: pink; border: 1px dotted yellow;'>Contact Us</li><li style='color: gray; border: 1px double orange;'>Search</li></ul></span> @keyframes bounce { 0%, 20%, 50%, 80%, 100% { transform: translateY(0); } 40% { transform: translateY(-30px); } 60% { transform: translateY(-15px); } } @media (max-width: 600px) { font-size: 14px; }"
277"A responsive h3 with a grid layout using template 'repeat(3, 1fr)', containing items with large text and :hover { box-shadow: 0 0 10px rgba(0, 0, 0, 0.5); }.","<h1 style='display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px; :hover { transform: scale(1.1); }'><li style='color: pink; border: 1px double black;'>Enter Your Name</li><li style='color: yellow; border: 1px ridge cyan;'>Contact Us</li><li style='color: black; border: 1px dotted blue;'>Sign Up</li><li style='color: red; border: 1px solid purple;'>Hello World</li><li style='color: pink; border: 1px dashed red;'>Choose Option</li></h1> @keyframes spin { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }"
278"A div containing a blue button with linear-gradient(to right, red, yellow) background that says 'Click Me', followed by a large text description, with spin.","<input><button style='background-color: linear-gradient(to right, red, yellow); font-size: 30px; animation: spin 2s;'>Search</button><p style='font-size: 30px;'>contact us</p></input> @keyframes fade-in { from { opacity: 0; } to { opacity: 1; } } transition: transform 0.2s ease-in-out;"
279"A small select with white text, Georgia font, none, and bounce, displayed as grid with space-between, responsive with media queries.","<footer style='color: green; font-size: 30px; font-family: Arial; box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.3); display: block; justify-content: space-between; animation: fade-in 2s; transition: transform 0.2s ease-in-out;'>Click Me</footer> @keyframes slide-up { from { transform: translateY(100%); } to { transform: translateY(0); } } @media (max-width: 600px) { font-size: 14px; }"
280"A textarea containing a list of options with black text, each inside a double box, with none, fade-in, and @media (max-width: 600px) { font-size: 14px; }.","<select><ul style='box-shadow: none; animation: fade-in 1.5s;'><li style='color: green; border: 1px double gray;'>Click Me</li><li style='color: white; border: 1px groove yellow;'>Submit</li><li style='color: orange; border: 1px dashed white;'>Hello World</li><li style='color: orange; border: 1px solid red;'>Submit</li><li style='color: yellow; border: 1px groove orange;'>Submit</li></ul></select> @keyframes bounce { 0%, 20%, 50%, 80%, 100% { transform: translateY(0); } 40% { transform: translateY(-30px); } 60% { transform: translateY(-15px); } } @media (min-width: 600px) and (max-width: 1200px) { font-size: 16px; }"
281"A black box with ridge border, linear-gradient(to right, red, yellow) background, small 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 ridge cyan; font-size: 22px; text-align: center; display: block; justify-content: space-around; align-items: center; animation: slide-up 2s; transition: background-color 0.4s ease; :hover { transform: scale(1.1); }'>Contact Us</div> @keyframes slide-up { from { transform: translateY(100%); } to { transform: translateY(0); } }"
282"A large div with pink text, Courier New font, 2px 2px 5px rgba(0, 0, 0, 0.3), and slide-up, displayed as block with flex-start, responsive with media queries.","<div style='color: red; font-size: 12px; font-family: Arial; box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.3); display: flex; justify-content: center; animation: bounce 2s; transition: transform 0.2s ease-in-out;'>Click Me</div> @keyframes slide-up { from { transform: translateY(100%); } to { transform: translateY(0); } } @media (min-width: 600px) and (max-width: 1200px) { font-size: 16px; }"
283"A blue button with medium Tahoma text, using inline-block layout, aligned to the justify, with none, fade-in, and a :hover { background-color: #555; color: white; }.","<button style='background-color: green; font-size: 24px; font-family: Georgia; display: none; text-align: justify; box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.3); animation: spin 2s; transition: background-color 0.4s ease; :hover { transform: scale(1.1); }'>Enter Your Name</button> @keyframes spin { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }"
284"A header containing a list of options with cyan text, each inside a double box, with 2px 2px 5px rgba(0, 0, 0, 0.3), bounce, and @media (min-width: 600px) and (max-width: 1200px) { font-size: 16px; }.","<h2><ul style='box-shadow: 4px 4px 10px rgba(0, 0, 0, 0.5); animation: bounce 1.5s;'><li style='color: yellow; border: 1px dashed gray;'>Hello World</li><li style='color: blue; border: 1px ridge green;'>Search</li><li style='color: green; border: 1px dashed pink;'>Enter Your Name</li><li style='color: purple; border: 1px solid black;'>Search</li><li style='color: gray; border: 1px dashed black;'>Hello World</li></ul></h2> @keyframes spin { from { transform: rotate(0deg); } to { transform: rotate(360deg); } } @media (min-width: 1200px) { font-size: 18px; }"
285"A gray button with small Helvetica text, using flex layout, aligned to the right, with none, spin, and a :hover { box-shadow: 0 0 10px rgba(0, 0, 0, 0.5); }.","<button style='background-color: yellow; font-size: 24px; font-family: Tahoma; display: block; text-align: justify; box-shadow: 4px 4px 10px rgba(0, 0, 0, 0.5); animation: spin 2s; transition: all 0.3s ease; :hover { box-shadow: 0 0 10px rgba(0, 0, 0, 0.5); }'>Login</button> @keyframes bounce { 0%, 20%, 50%, 80%, 100% { transform: translateY(0); } 40% { transform: translateY(-30px); } 60% { transform: translateY(-15px); } }"
286"A medium select with purple text, Times New Roman font, 4px 4px 10px rgba(0, 0, 0, 0.5), and fade-in, displayed as block with flex-end, responsive with media queries.","<span style='color: green; font-size: 14px; font-family: Verdana; box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.3); display: block; justify-content: flex-start; animation: fade-in 2s; transition: transform 0.2s ease-in-out;'>Click Me</span> @keyframes slide-up { from { transform: translateY(100%); } to { transform: translateY(0); } } @media (min-width: 600px) and (max-width: 1200px) { font-size: 16px; }"
287"A responsive div with a grid layout using template 'repeat(3, 1fr)', containing items with medium text and :hover { background-color: #555; color: white; }.",<h1 style='display: grid; grid-template-columns: 1fr 2fr; gap: 10px; :hover { transform: scale(1.1); }'><li style='color: pink; border: 1px solid blue;'>Submit</li><li style='color: yellow; border: 1px dashed yellow;'>Enter Your Name</li><li style='color: red; border: 1px solid cyan;'>Click Me</li><li style='color: gray; border: 1px double black;'>Contact Us</li><li style='color: green; border: 1px double gray;'>Submit</li></h1> @keyframes spin { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }
288"A h1 containing a white button with linear-gradient(to bottom, blue, green) background that says 'Enter Your Name', followed by a large text description, with fade-in.","<select><button style='background-color: linear-gradient(to right, red, yellow); font-size: 24px; animation: spin 2s;'>Choose Option</button><p style='font-size: 24px;'>submit</p></select> @keyframes fade-in { from { opacity: 0; } to { opacity: 1; } } transition: all 0.3s ease;"
289"A span containing a list of options with black text, each inside a ridge box, with none, bounce, and @media (max-width: 600px) { font-size: 14px; }.","<div><ul style='box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.3); animation: fade-in 1.5s;'><li style='color: purple; border: 1px groove red;'>Contact Us</li><li style='color: white; border: 1px double orange;'>Contact Us</li><li style='color: cyan; border: 1px ridge red;'>Submit</li><li style='color: purple; border: 1px solid green;'>Hello World</li><li style='color: white; border: 1px solid pink;'>Choose Option</li></ul></div> @keyframes spin { from { transform: rotate(0deg); } to { transform: rotate(360deg); } } @media (min-width: 600px) and (max-width: 1200px) { font-size: 16px; }"
290"A select containing a list of options with red text, each inside a solid box, with 2px 2px 5px rgba(0, 0, 0, 0.3), bounce, and @media (min-width: 600px) and (max-width: 1200px) { font-size: 16px; }.",<p><ul style='box-shadow: none; animation: slide-up 1.5s;'><li style='color: red; border: 1px double blue;'>Search</li><li style='color: pink; border: 1px groove gray;'>Login</li><li style='color: green; border: 1px solid yellow;'>Search</li><li style='color: blue; border: 1px solid white;'>Search</li><li style='color: gray; border: 1px double yellow;'>Choose Option</li></ul></p> @keyframes spin { from { transform: rotate(0deg); } to { transform: rotate(360deg); } } @media (min-width: 600px) and (max-width: 1200px) { font-size: 16px; }
291"A select containing a list of options with red text, each inside a dashed box, with 0 4px 8px rgba(0, 0, 0, 0.2), spin, and @media (min-width: 1200px) { font-size: 18px; }.","<h2><ul style='box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); animation: slide-up 1.5s;'><li style='color: blue; border: 1px dashed yellow;'>Hello World</li><li style='color: green; border: 1px ridge pink;'>Submit</li><li style='color: yellow; border: 1px dotted black;'>Click Me</li><li style='color: yellow; border: 1px dashed green;'>Contact Us</li><li style='color: green; border: 1px dashed blue;'>Choose Option</li></ul></h2> @keyframes spin { from { transform: rotate(0deg); } to { transform: rotate(360deg); } } @media (max-width: 600px) { font-size: 14px; }"
292"A responsive h1 with a grid layout using template 'repeat(3, 1fr)', containing items with small text and :hover { box-shadow: 0 0 10px rgba(0, 0, 0, 0.5); }.",<header style='display: grid; grid-template-columns: 1fr 2fr; gap: 10px; :hover { background-color: #555; color: white; }'><li style='color: orange; border: 1px dashed white;'>Login</li><li style='color: orange; border: 1px double purple;'>Submit</li><li style='color: black; border: 1px dotted red;'>Hello World</li><li style='color: yellow; border: 1px groove orange;'>Submit</li><li style='color: pink; border: 1px solid red;'>Hello World</li></header> @keyframes spin { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }
293"A medium textarea with cyan text, Courier New font, 2px 2px 5px rgba(0, 0, 0, 0.3), and slide-up, displayed as inline-block with flex-start, responsive with media queries.",<div style='color: pink; font-size: 20px; font-family: Verdana; box-shadow: none; display: flex; justify-content: flex-end; animation: fade-in 2s; transition: transform 0.2s ease-in-out;'>Login</div> @keyframes slide-up { from { transform: translateY(100%); } to { transform: translateY(0); } } @media (min-width: 1200px) { font-size: 18px; }
294"A medium p with pink text, Helvetica font, 4px 4px 10px rgba(0, 0, 0, 0.5), and bounce, displayed as grid with space-between, responsive with media queries.","<h2 style='color: pink; font-size: 12px; font-family: Verdana; box-shadow: none; display: grid; justify-content: flex-start; animation: slide-up 2s; transition: background-color 0.4s ease;'>Sign Up</h2> @keyframes bounce { 0%, 20%, 50%, 80%, 100% { transform: translateY(0); } 40% { transform: translateY(-30px); } 60% { transform: translateY(-15px); } } @media (max-width: 600px) { font-size: 14px; }"
295"A span containing a list of options with orange 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; }.","<textarea><ul style='box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.3); animation: bounce 1.5s;'><li style='color: pink; border: 1px groove blue;'>Hello World</li><li style='color: gray; border: 1px dashed red;'>Click Me</li><li style='color: orange; border: 1px solid red;'>Enter Your Name</li><li style='color: blue; border: 1px dashed yellow;'>Hello World</li><li style='color: blue; border: 1px dashed yellow;'>Choose Option</li></ul></textarea> @keyframes bounce { 0%, 20%, 50%, 80%, 100% { transform: translateY(0); } 40% { transform: translateY(-30px); } 60% { transform: translateY(-15px); } } @media (min-width: 1200px) { font-size: 18px; }"
296"A responsive button with a grid layout using template '100px 1fr', containing items with large text and :hover { box-shadow: 0 0 10px rgba(0, 0, 0, 0.5); }.","<h3 style='display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px; :hover { background-color: #555; color: white; }'><li style='color: orange; border: 1px ridge blue;'>Search</li><li style='color: pink; border: 1px dashed green;'>Choose Option</li><li style='color: red; border: 1px solid orange;'>Enter Your Name</li><li style='color: gray; border: 1px dotted red;'>Click Me</li><li style='color: red; border: 1px dotted red;'>Sign Up</li></h3> @keyframes slide-up { from { transform: translateY(100%); } to { transform: translateY(0); } }"
297"A h1 containing a yellow button with linear-gradient(to right, red, yellow) background that says 'Click Me', followed by a small text description, with slide-up.","<select><button style='background-color: radial-gradient(circle, pink, purple); font-size: 28px; animation: fade-in 2s;'>Enter Your Name</button><p style='font-size: 28px;'>enter your name</p></select> @keyframes bounce { 0%, 20%, 50%, 80%, 100% { transform: translateY(0); } 40% { transform: translateY(-30px); } 60% { transform: translateY(-15px); } } transition: background-color 0.4s ease;"
298"A select containing a gray button with linear-gradient(to right, red, yellow) background that says 'Click Me', followed by a medium text description, with spin.","<header><button style='background-color: radial-gradient(circle, pink, purple); font-size: 28px; animation: bounce 2s;'>Search</button><p style='font-size: 28px;'>contact us</p></header> @keyframes slide-up { from { transform: translateY(100%); } to { transform: translateY(0); } } transition: all 0.3s ease;"
299"A responsive nav with a grid layout using template 'repeat(3, 1fr)', containing items with medium text and :hover { background-color: #555; color: white; }.","<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: black; border: 1px groove gray;'>Choose Option</li><li style='color: purple; border: 1px double gray;'>Search</li><li style='color: green; border: 1px ridge yellow;'>Search</li><li style='color: pink; border: 1px ridge blue;'>Click Me</li><li style='color: purple; border: 1px dashed blue;'>Enter Your Name</li></input> @keyframes spin { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }"
300"A h1 containing a orange button with radial-gradient(circle, pink, purple) background that says 'Choose Option', followed by a small text description, with spin.","<button><button style='background-color: linear-gradient(to right, red, yellow); font-size: 16px; animation: spin 2s;'>Sign Up</button><p style='font-size: 16px;'>click me</p></button> @keyframes slide-up { from { transform: translateY(100%); } to { transform: translateY(0); } } transition: background-color 0.4s ease;"
301"A small input with pink text, Georgia font, none, and slide-up, displayed as none with flex-end, responsive with media queries.","<header style='color: red; font-size: 24px; font-family: Courier New; box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.3); display: block; justify-content: flex-start; animation: fade-in 2s; transition: background-color 0.4s ease;'>Submit</header> @keyframes fade-in { from { opacity: 0; } to { opacity: 1; } } @media (min-width: 600px) and (max-width: 1200px) { font-size: 16px; }"
302"A input containing a list of options with white text, each inside a groove box, with 2px 2px 5px rgba(0, 0, 0, 0.3), fade-in, and @media (max-width: 600px) { font-size: 14px; }.","<button><ul style='box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); animation: bounce 1.5s;'><li style='color: red; border: 1px dotted cyan;'>Click Me</li><li style='color: white; border: 1px ridge pink;'>Choose Option</li><li style='color: black; border: 1px solid purple;'>Hello World</li><li style='color: purple; border: 1px double cyan;'>Enter Your Name</li><li style='color: green; border: 1px groove orange;'>Login</li></ul></button> @keyframes slide-up { from { transform: translateY(100%); } to { transform: translateY(0); } } @media (min-width: 600px) and (max-width: 1200px) { font-size: 16px; }"
303"A black button with medium Tahoma text, using inline-block layout, aligned to the right, with 0 4px 8px rgba(0, 0, 0, 0.2), fade-in, and a :hover { transform: scale(1.1); }.","<button style='background-color: white; font-size: 22px; font-family: Courier New; display: none; text-align: right; box-shadow: 4px 4px 10px rgba(0, 0, 0, 0.5); animation: spin 2s; transition: all 0.3s ease; :hover { box-shadow: 0 0 10px rgba(0, 0, 0, 0.5); }'>Click Me</button> @keyframes spin { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }"
304"A small textarea with orange text, Courier New font, 2px 2px 5px rgba(0, 0, 0, 0.3), and slide-up, displayed as none with center, responsive with media queries.","<span style='color: red; font-size: 12px; font-family: Courier New; box-shadow: none; display: none; justify-content: flex-end; animation: spin 2s; transition: all 0.3s ease;'>Hello World</span> @keyframes bounce { 0%, 20%, 50%, 80%, 100% { transform: translateY(0); } 40% { transform: translateY(-30px); } 60% { transform: translateY(-15px); } } @media (min-width: 600px) and (max-width: 1200px) { font-size: 16px; }"
305"A large h2 with yellow text, Courier New font, none, and bounce, displayed as inline-block with center, responsive with media queries.","<input style='color: orange; font-size: 18px; font-family: Verdana; box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.3); display: block; justify-content: flex-end; animation: slide-up 2s; transition: transform 0.2s ease-in-out;'>Enter Your Name</input> @keyframes spin { from { transform: rotate(0deg); } to { transform: rotate(360deg); } } @media (min-width: 1200px) { font-size: 18px; }"
306"A small h2 with cyan text, Verdana font, 4px 4px 10px rgba(0, 0, 0, 0.5), and fade-in, displayed as inline-block with center, responsive with media queries.",<select style='color: yellow; font-size: 24px; font-family: Verdana; box-shadow: none; display: grid; justify-content: flex-start; animation: fade-in 2s; transition: transform 0.2s ease-in-out;'>Submit</select> @keyframes spin { from { transform: rotate(0deg); } to { transform: rotate(360deg); } } @media (max-width: 600px) { font-size: 14px; }
307"A medium p with green text, Arial font, 0 4px 8px rgba(0, 0, 0, 0.2), and spin, displayed as grid with space-between, responsive with media queries.","<textarea style='color: yellow; font-size: 30px; font-family: Courier New; 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;'>Click Me</textarea> @keyframes spin { from { transform: rotate(0deg); } to { transform: rotate(360deg); } } @media (max-width: 600px) { font-size: 14px; }"
308"A responsive input with a grid layout using template 'repeat(2, 1fr)', containing items with small text and :hover { background-color: #555; color: white; }.","<textarea 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: blue; border: 1px dotted white;'>Click Me</li><li style='color: blue; border: 1px solid gray;'>Hello World</li><li style='color: green; border: 1px solid blue;'>Submit</li><li style='color: purple; border: 1px groove cyan;'>Contact Us</li><li style='color: blue; border: 1px ridge green;'>Choose Option</li></textarea> @keyframes bounce { 0%, 20%, 50%, 80%, 100% { transform: translateY(0); } 40% { transform: translateY(-30px); } 60% { transform: translateY(-15px); } }"
309"A responsive h2 with a grid layout using template 'repeat(3, 1fr)', containing items with medium text and :hover { box-shadow: 0 0 10px rgba(0, 0, 0, 0.5); }.","<footer style='display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; :hover { background-color: #555; color: white; }'><li style='color: cyan; border: 1px dotted red;'>Hello World</li><li style='color: blue; border: 1px groove black;'>Search</li><li style='color: yellow; border: 1px groove yellow;'>Sign Up</li><li style='color: blue; border: 1px solid gray;'>Login</li><li style='color: yellow; border: 1px groove yellow;'>Sign Up</li></footer> @keyframes bounce { 0%, 20%, 50%, 80%, 100% { transform: translateY(0); } 40% { transform: translateY(-30px); } 60% { transform: translateY(-15px); } }"
310"A white button with large Courier New text, using inline-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: orange; font-size: 28px; font-family: Times New Roman; display: block; text-align: right; box-shadow: 4px 4px 10px rgba(0, 0, 0, 0.5); animation: slide-up 2s; transition: all 0.3s ease; :hover { box-shadow: 0 0 10px rgba(0, 0, 0, 0.5); }'>Submit</button> @keyframes slide-up { from { transform: translateY(100%); } to { transform: translateY(0); } }"
311"A medium h1 with blue text, Courier New font, 4px 4px 10px rgba(0, 0, 0, 0.5), and spin, displayed as block with flex-end, responsive with media queries.","<footer style='color: cyan; font-size: 12px; font-family: Arial; box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.3); display: flex; justify-content: flex-start; animation: bounce 2s; transition: transform 0.2s ease-in-out;'>Submit</footer> @keyframes spin { from { transform: rotate(0deg); } to { transform: rotate(360deg); } } @media (min-width: 1200px) { font-size: 18px; }"
312"A large select with white text, Verdana font, 0 4px 8px rgba(0, 0, 0, 0.2), and spin, displayed as block with flex-end, responsive with media queries.",<input style='color: green; font-size: 28px; font-family: Arial; box-shadow: none; display: grid; justify-content: space-around; animation: bounce 2s; transition: transform 0.2s ease-in-out;'>Sign Up</input> @keyframes spin { from { transform: rotate(0deg); } to { transform: rotate(360deg); } } @media (min-width: 600px) and (max-width: 1200px) { font-size: 16px; }
313"A black button with medium Times New Roman text, using grid layout, aligned to the justify, with 2px 2px 5px rgba(0, 0, 0, 0.3), 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: Courier New; display: block; text-align: left; box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); animation: slide-up 2s; transition: background-color 0.4s ease; :hover { background-color: #555; color: white; }'>Choose Option</button> @keyframes fade-in { from { opacity: 0; } to { opacity: 1; } }"
314"A header containing a list of options with purple text, each inside a groove box, with 2px 2px 5px rgba(0, 0, 0, 0.3), fade-in, and @media (max-width: 600px) { font-size: 14px; }.","<header><ul style='box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.3); animation: bounce 1.5s;'><li style='color: cyan; border: 1px double green;'>Search</li><li style='color: yellow; border: 1px groove white;'>Submit</li><li style='color: yellow; border: 1px dashed black;'>Submit</li><li style='color: orange; border: 1px ridge green;'>Choose Option</li><li style='color: blue; border: 1px double pink;'>Enter Your Name</li></ul></header> @keyframes spin { from { transform: rotate(0deg); } to { transform: rotate(360deg); } } @media (min-width: 600px) and (max-width: 1200px) { font-size: 16px; }"
315"A small footer with pink text, Verdana font, 4px 4px 10px rgba(0, 0, 0, 0.5), and spin, displayed as inline-block with space-between, responsive with media queries.","<button style='color: purple; font-size: 28px; font-family: Helvetica; box-shadow: 4px 4px 10px rgba(0, 0, 0, 0.5); display: none; justify-content: space-around; animation: bounce 2s; transition: all 0.3s ease;'>Enter Your Name</button> @keyframes bounce { 0%, 20%, 50%, 80%, 100% { transform: translateY(0); } 40% { transform: translateY(-30px); } 60% { transform: translateY(-15px); } } @media (max-width: 600px) { font-size: 14px; }"
316"A large select with red text, Courier New font, 4px 4px 10px rgba(0, 0, 0, 0.5), and slide-up, displayed as inline-block with space-around, responsive with media queries.","<nav style='color: purple; font-size: 24px; font-family: Georgia; box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); display: flex; justify-content: flex-start; animation: slide-up 2s; transition: background-color 0.4s ease;'>Click Me</nav> @keyframes spin { from { transform: rotate(0deg); } to { transform: rotate(360deg); } } @media (min-width: 1200px) { font-size: 18px; }"
317"A div containing a list of options with yellow text, each inside a ridge box, with 2px 2px 5px rgba(0, 0, 0, 0.3), bounce, and @media (max-width: 600px) { font-size: 14px; }.","<textarea><ul style='box-shadow: 4px 4px 10px rgba(0, 0, 0, 0.5); animation: slide-up 1.5s;'><li style='color: green; border: 1px dashed black;'>Login</li><li style='color: pink; border: 1px dashed blue;'>Submit</li><li style='color: white; border: 1px dotted gray;'>Sign Up</li><li style='color: green; border: 1px dashed white;'>Sign Up</li><li style='color: white; border: 1px double black;'>Sign Up</li></ul></textarea> @keyframes slide-up { from { transform: translateY(100%); } to { transform: translateY(0); } } @media (max-width: 600px) { font-size: 14px; }"
318"A span containing a list of options with white text, each inside a groove box, with 4px 4px 10px rgba(0, 0, 0, 0.5), spin, and @media (min-width: 1200px) { font-size: 18px; }.","<p><ul style='box-shadow: none; animation: bounce 1.5s;'><li style='color: gray; border: 1px dotted gray;'>Contact Us</li><li style='color: orange; border: 1px dashed cyan;'>Click Me</li><li style='color: purple; border: 1px double orange;'>Hello World</li><li style='color: yellow; border: 1px groove cyan;'>Enter Your Name</li><li style='color: yellow; border: 1px solid orange;'>Choose Option</li></ul></p> @keyframes bounce { 0%, 20%, 50%, 80%, 100% { transform: translateY(0); } 40% { transform: translateY(-30px); } 60% { transform: translateY(-15px); } } @media (min-width: 600px) and (max-width: 1200px) { font-size: 16px; }"
319"A small p with gray text, Georgia font, 2px 2px 5px rgba(0, 0, 0, 0.3), and fade-in, displayed as inline-block with space-around, responsive with media queries.","<nav style='color: white; font-size: 14px; font-family: Times New Roman; box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.3); display: flex; justify-content: space-between; animation: slide-up 2s; transition: all 0.3s ease;'>Contact Us</nav> @keyframes slide-up { from { transform: translateY(100%); } to { transform: translateY(0); } } @media (min-width: 600px) and (max-width: 1200px) { font-size: 16px; }"
320"A h2 containing a orange button with linear-gradient(to bottom, blue, green) background that says 'Submit', followed by a medium text description, with bounce.","<p><button style='background-color: linear-gradient(to right, red, yellow); font-size: 16px; animation: slide-up 2s;'>Submit</button><p style='font-size: 16px;'>hello world</p></p> @keyframes fade-in { from { opacity: 0; } to { opacity: 1; } } transition: transform 0.2s ease-in-out;"
321"A button containing a blue button with linear-gradient(to right, red, yellow) background that says 'Sign Up', followed by a large text description, with fade-in.","<button><button style='background-color: linear-gradient(to bottom, blue, green); font-size: 28px; animation: fade-in 2s;'>Login</button><p style='font-size: 28px;'>choose option</p></button> @keyframes slide-up { from { transform: translateY(100%); } to { transform: translateY(0); } } transition: transform 0.2s ease-in-out;"
322"A span containing a list of options with orange text, each inside a double box, with none, slide-up, and @media (min-width: 1200px) { font-size: 18px; }.","<header><ul style='box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); animation: slide-up 1.5s;'><li style='color: green; border: 1px groove gray;'>Click Me</li><li style='color: cyan; border: 1px groove black;'>Hello World</li><li style='color: red; border: 1px groove pink;'>Enter Your Name</li><li style='color: green; border: 1px ridge green;'>Choose Option</li><li style='color: black; border: 1px solid gray;'>Hello World</li></ul></header> @keyframes bounce { 0%, 20%, 50%, 80%, 100% { transform: translateY(0); } 40% { transform: translateY(-30px); } 60% { transform: translateY(-15px); } } @media (max-width: 600px) { font-size: 14px; }"
323"A responsive h2 with a grid layout using template 'repeat(2, 1fr)', containing items with small text and :hover { transform: scale(1.1); }.","<button style='display: grid; grid-template-columns: 100px 1fr; gap: 10px; :hover { transform: scale(1.1); }'><li style='color: cyan; border: 1px groove yellow;'>Search</li><li style='color: white; border: 1px groove yellow;'>Hello World</li><li style='color: cyan; border: 1px dashed red;'>Search</li><li style='color: white; border: 1px groove pink;'>Contact Us</li><li style='color: blue; border: 1px dashed white;'>Click Me</li></button> @keyframes bounce { 0%, 20%, 50%, 80%, 100% { transform: translateY(0); } 40% { transform: translateY(-30px); } 60% { transform: translateY(-15px); } }"
324"A responsive p with a grid layout using template 'repeat(3, 1fr)', containing items with small text and :hover { box-shadow: 0 0 10px rgba(0, 0, 0, 0.5); }.","<p 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: yellow; border: 1px solid orange;'>Search</li><li style='color: green; border: 1px groove red;'>Login</li><li style='color: yellow; border: 1px dashed blue;'>Contact Us</li><li style='color: gray; border: 1px ridge green;'>Login</li><li style='color: orange; border: 1px double red;'>Click Me</li></p> @keyframes spin { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }"
325"A black button with small Tahoma text, using inline-block layout, aligned to the center, with 0 4px 8px rgba(0, 0, 0, 0.2), fade-in, and a :hover { background-color: #555; color: white; }.","<button style='background-color: purple; font-size: 12px; font-family: Tahoma; display: inline-block; text-align: right; box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); animation: slide-up 2s; transition: all 0.3s ease; :hover { background-color: #555; color: white; }'>Enter Your Name</button> @keyframes spin { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }"
326"A pink button with medium Times New Roman text, using block layout, aligned to the left, with none, fade-in, and a :hover { background-color: #555; color: white; }.","<button style='background-color: black; font-size: 16px; font-family: Arial; display: block; text-align: justify; 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; }'>Sign Up</button> @keyframes fade-in { from { opacity: 0; } to { opacity: 1; } }"
327"A button containing a list of options with red text, each inside a double box, with 0 4px 8px rgba(0, 0, 0, 0.2), fade-in, and @media (min-width: 600px) and (max-width: 1200px) { font-size: 16px; }.","<h1><ul style='box-shadow: none; animation: fade-in 1.5s;'><li style='color: green; border: 1px dashed blue;'>Contact Us</li><li style='color: purple; border: 1px double green;'>Search</li><li style='color: green; border: 1px dashed purple;'>Enter Your Name</li><li style='color: purple; border: 1px double gray;'>Search</li><li style='color: blue; border: 1px dashed orange;'>Contact Us</li></ul></h1> @keyframes bounce { 0%, 20%, 50%, 80%, 100% { transform: translateY(0); } 40% { transform: translateY(-30px); } 60% { transform: translateY(-15px); } } @media (min-width: 600px) and (max-width: 1200px) { font-size: 16px; }"
328"A footer containing a list of options with purple text, each inside a double box, with 2px 2px 5px rgba(0, 0, 0, 0.3), fade-in, and @media (min-width: 600px) and (max-width: 1200px) { font-size: 16px; }.","<h3><ul style='box-shadow: none; animation: fade-in 1.5s;'><li style='color: green; border: 1px groove orange;'>Sign Up</li><li style='color: white; border: 1px solid gray;'>Choose Option</li><li style='color: white; border: 1px ridge white;'>Sign Up</li><li style='color: white; border: 1px groove green;'>Contact Us</li><li style='color: white; border: 1px dotted green;'>Hello World</li></ul></h3> @keyframes bounce { 0%, 20%, 50%, 80%, 100% { transform: translateY(0); } 40% { transform: translateY(-30px); } 60% { transform: translateY(-15px); } } @media (min-width: 1200px) { font-size: 18px; }"
329"A footer containing a purple button with linear-gradient(to right, red, yellow) background that says 'Contact Us', followed by a small text description, with fade-in.","<h1><button style='background-color: linear-gradient(to right, red, yellow); font-size: 30px; animation: fade-in 2s;'>Submit</button><p style='font-size: 30px;'>submit</p></h1> @keyframes fade-in { from { opacity: 0; } to { opacity: 1; } } transition: all 0.3s ease;"
330"A red button with medium Courier New text, using block layout, aligned to the center, with 0 4px 8px rgba(0, 0, 0, 0.2), spin, and a :hover { transform: scale(1.1); }.","<button style='background-color: blue; font-size: 12px; font-family: Times New Roman; display: none; text-align: right; box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); animation: slide-up 2s; transition: background-color 0.4s ease; :hover { box-shadow: 0 0 10px rgba(0, 0, 0, 0.5); }'>Sign Up</button> @keyframes slide-up { from { transform: translateY(100%); } to { transform: translateY(0); } }"
331"A pink button with large Verdana text, using block layout, aligned to the right, 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: green; font-size: 20px; font-family: Courier New; display: grid; text-align: center; box-shadow: none; animation: slide-up 2s; transition: transform 0.2s ease-in-out; :hover { box-shadow: 0 0 10px rgba(0, 0, 0, 0.5); }'>Choose Option</button> @keyframes spin { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }"
332"A nav containing a list of options with pink text, each inside a ridge box, with 2px 2px 5px rgba(0, 0, 0, 0.3), fade-in, and @media (min-width: 1200px) { font-size: 18px; }.","<input><ul style='box-shadow: 4px 4px 10px rgba(0, 0, 0, 0.5); animation: fade-in 1.5s;'><li style='color: black; border: 1px solid red;'>Enter Your Name</li><li style='color: yellow; border: 1px ridge purple;'>Click Me</li><li style='color: cyan; border: 1px solid white;'>Login</li><li style='color: black; border: 1px groove cyan;'>Hello World</li><li style='color: green; border: 1px double green;'>Choose Option</li></ul></input> @keyframes bounce { 0%, 20%, 50%, 80%, 100% { transform: translateY(0); } 40% { transform: translateY(-30px); } 60% { transform: translateY(-15px); } } @media (min-width: 1200px) { font-size: 18px; }"
333"A p containing a green button with linear-gradient(to bottom, blue, green) background that says 'Search', followed by a large text description, with spin.","<textarea><button style='background-color: linear-gradient(to bottom, blue, green); font-size: 16px; animation: fade-in 2s;'>Contact Us</button><p style='font-size: 16px;'>submit</p></textarea> @keyframes spin { from { transform: rotate(0deg); } to { transform: rotate(360deg); } } transition: background-color 0.4s ease;"
334"A cyan box with dotted border, radial-gradient(circle, pink, purple) background, small text centered inside, using grid layout, with :hover { transform: scale(1.1); } and bounce.","<div style='background: radial-gradient(circle, pink, purple); border: 2px ridge gray; font-size: 24px; text-align: center; display: grid; justify-content: center; align-items: center; animation: bounce 2s; transition: transform 0.2s ease-in-out; :hover { transform: scale(1.1); }'>Submit</div> @keyframes fade-in { from { opacity: 0; } to { opacity: 1; } }"
335"A button containing a list of options with black text, each inside a ridge box, with 4px 4px 10px rgba(0, 0, 0, 0.5), fade-in, and @media (max-width: 600px) { font-size: 14px; }.","<input><ul style='box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.3); animation: fade-in 1.5s;'><li style='color: gray; border: 1px groove purple;'>Search</li><li style='color: blue; border: 1px dotted cyan;'>Click Me</li><li style='color: white; border: 1px double red;'>Hello World</li><li style='color: black; border: 1px dashed orange;'>Sign Up</li><li style='color: black; border: 1px double pink;'>Click Me</li></ul></input> @keyframes slide-up { from { transform: translateY(100%); } to { transform: translateY(0); } } @media (max-width: 600px) { font-size: 14px; }"
336"A medium footer with cyan text, Arial font, 2px 2px 5px rgba(0, 0, 0, 0.3), and bounce, displayed as inline-block with flex-end, responsive with media queries.","<input style='color: pink; font-size: 16px; font-family: Verdana; box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); display: flex; justify-content: flex-start; animation: bounce 2s; transition: background-color 0.4s ease;'>Enter Your Name</input> @keyframes spin { from { transform: rotate(0deg); } to { transform: rotate(360deg); } } @media (min-width: 600px) and (max-width: 1200px) { font-size: 16px; }"
337"A purple box with dotted border, linear-gradient(to right, red, yellow) background, small text centered inside, using grid 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 solid pink; font-size: 14px; text-align: center; display: block; justify-content: flex-start; align-items: center; animation: slide-up 2s; transition: all 0.3s ease; :hover { box-shadow: 0 0 10px rgba(0, 0, 0, 0.5); }'>Enter Your Name</div> @keyframes slide-up { from { transform: translateY(100%); } to { transform: translateY(0); } }"
338"A pink button with small Times New Roman text, using flex layout, aligned to the justify, with 2px 2px 5px rgba(0, 0, 0, 0.3), fade-in, and a :hover { transform: scale(1.1); }.","<button style='background-color: gray; font-size: 26px; font-family: Verdana; display: none; text-align: left; box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); animation: slide-up 2s; transition: transform 0.2s ease-in-out; :hover { background-color: #555; color: white; }'>Click Me</button> @keyframes slide-up { from { transform: translateY(100%); } to { transform: translateY(0); } }"
339"A white box with solid border, linear-gradient(to bottom, blue, green) background, large text centered inside, using grid layout, with :hover { transform: scale(1.1); } and bounce.","<div style='background: linear-gradient(to bottom, blue, green); border: 2px ridge black; font-size: 30px; text-align: center; display: none; justify-content: center; 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); }'>Hello World</div> @keyframes fade-in { from { opacity: 0; } to { opacity: 1; } }"
340"A black box with double border, radial-gradient(circle, pink, purple) background, medium text centered inside, using flex layout, with :hover { box-shadow: 0 0 10px rgba(0, 0, 0, 0.5); } and spin.","<div style='background: linear-gradient(to bottom, blue, green); border: 2px dashed gray; font-size: 20px; text-align: center; display: grid; justify-content: flex-start; align-items: center; animation: fade-in 2s; transition: background-color 0.4s ease; :hover { box-shadow: 0 0 10px rgba(0, 0, 0, 0.5); }'>Click Me</div> @keyframes fade-in { from { opacity: 0; } to { opacity: 1; } }"
341"A footer containing a list of options with green text, each inside a double box, with 0 4px 8px rgba(0, 0, 0, 0.2), bounce, and @media (max-width: 600px) { font-size: 14px; }.","<h2><ul style='box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.3); animation: fade-in 1.5s;'><li style='color: gray; border: 1px dotted cyan;'>Hello World</li><li style='color: green; border: 1px double cyan;'>Login</li><li style='color: white; border: 1px dotted pink;'>Login</li><li style='color: pink; border: 1px ridge gray;'>Hello World</li><li style='color: gray; border: 1px dashed blue;'>Enter Your Name</li></ul></h2> @keyframes spin { from { transform: rotate(0deg); } to { transform: rotate(360deg); } } @media (min-width: 600px) and (max-width: 1200px) { font-size: 16px; }"
342"A responsive textarea with a grid layout using template '100px 1fr', containing items with medium 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: green; border: 1px dotted black;'>Click Me</li><li style='color: green; border: 1px groove purple;'>Search</li><li style='color: pink; border: 1px ridge purple;'>Search</li><li style='color: gray; border: 1px dotted red;'>Hello World</li><li style='color: cyan; border: 1px solid orange;'>Hello World</li></h1> @keyframes spin { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }"
343"A purple box with ridge border, linear-gradient(to right, red, yellow) background, medium text centered inside, using flex layout, with :hover { transform: scale(1.1); } and bounce.","<div style='background: linear-gradient(to right, red, yellow); border: 2px ridge black; font-size: 24px; text-align: center; display: grid; justify-content: space-between; align-items: center; animation: spin 2s; transition: background-color 0.4s ease; :hover { transform: scale(1.1); }'>Hello World</div> @keyframes spin { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }"
344"A red button with large Verdana text, using block layout, aligned to the center, with 4px 4px 10px rgba(0, 0, 0, 0.5), bounce, and a :hover { transform: scale(1.1); }.","<button style='background-color: cyan; font-size: 30px; font-family: Arial; display: block; text-align: left; box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.3); animation: fade-in 2s; transition: transform 0.2s ease-in-out; :hover { box-shadow: 0 0 10px rgba(0, 0, 0, 0.5); }'>Search</button> @keyframes bounce { 0%, 20%, 50%, 80%, 100% { transform: translateY(0); } 40% { transform: translateY(-30px); } 60% { transform: translateY(-15px); } }"
345"A span containing a green button with linear-gradient(to bottom, blue, green) background that says 'Contact Us', followed by a medium text description, with slide-up.","<textarea><button style='background-color: radial-gradient(circle, pink, purple); font-size: 14px; animation: spin 2s;'>Login</button><p style='font-size: 14px;'>enter your name</p></textarea> @keyframes fade-in { from { opacity: 0; } to { opacity: 1; } } transition: transform 0.2s ease-in-out;"
346"A responsive p with a grid layout using template '100px 1fr', containing items with large text and :hover { background-color: #555; color: white; }.",<header style='display: grid; grid-template-columns: 1fr 2fr; gap: 10px; :hover { background-color: #555; color: white; }'><li style='color: green; border: 1px ridge yellow;'>Login</li><li style='color: yellow; border: 1px groove orange;'>Choose Option</li><li style='color: cyan; border: 1px dotted purple;'>Click Me</li><li style='color: purple; border: 1px dotted yellow;'>Login</li><li style='color: yellow; border: 1px solid orange;'>Search</li></header> @keyframes slide-up { from { transform: translateY(100%); } to { transform: translateY(0); } }
347"A large button with yellow text, Helvetica font, 2px 2px 5px rgba(0, 0, 0, 0.3), and bounce, displayed as inline-block with center, responsive with media queries.","<footer style='color: gray; font-size: 18px; font-family: Georgia; box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); display: grid; justify-content: flex-start; animation: slide-up 2s; transition: background-color 0.4s ease;'>Submit</footer> @keyframes bounce { 0%, 20%, 50%, 80%, 100% { transform: translateY(0); } 40% { transform: translateY(-30px); } 60% { transform: translateY(-15px); } } @media (min-width: 600px) and (max-width: 1200px) { font-size: 16px; }"
348"A header containing a list of options with red text, each inside a groove box, with 4px 4px 10px rgba(0, 0, 0, 0.5), fade-in, and @media (min-width: 1200px) { font-size: 18px; }.","<nav><ul style='box-shadow: 4px 4px 10px rgba(0, 0, 0, 0.5); animation: fade-in 1.5s;'><li style='color: blue; border: 1px ridge pink;'>Search</li><li style='color: pink; border: 1px dashed green;'>Enter Your Name</li><li style='color: black; border: 1px solid cyan;'>Sign Up</li><li style='color: pink; border: 1px groove pink;'>Enter Your Name</li><li style='color: white; border: 1px solid purple;'>Login</li></ul></nav> @keyframes spin { from { transform: rotate(0deg); } to { transform: rotate(360deg); } } @media (max-width: 600px) { font-size: 14px; }"
349"A white box with groove border, linear-gradient(to bottom, blue, green) background, small text centered inside, using grid layout, with :hover { background-color: #555; color: white; } and fade-in.","<div style='background: linear-gradient(to right, red, yellow); border: 2px dashed green; font-size: 16px; text-align: center; display: block; justify-content: flex-start; align-items: center; animation: slide-up 2s; transition: transform 0.2s ease-in-out; :hover { box-shadow: 0 0 10px rgba(0, 0, 0, 0.5); }'>Choose Option</div> @keyframes bounce { 0%, 20%, 50%, 80%, 100% { transform: translateY(0); } 40% { transform: translateY(-30px); } 60% { transform: translateY(-15px); } }"
350"A black box with ridge border, linear-gradient(to right, red, yellow) background, medium text centered inside, using flex layout, with :hover { background-color: #555; color: white; } and slide-up.","<div style='background: linear-gradient(to right, red, yellow); border: 2px double red; font-size: 28px; text-align: center; display: grid; justify-content: center; align-items: center; animation: spin 2s; transition: transform 0.2s ease-in-out; :hover { background-color: #555; color: white; }'>Choose Option</div> @keyframes spin { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }"
351"A blue button with medium Helvetica text, using block layout, aligned to the justify, with 2px 2px 5px rgba(0, 0, 0, 0.3), spin, and a :hover { transform: scale(1.1); }.","<button style='background-color: gray; font-size: 12px; font-family: Arial; display: inline-block; text-align: center; box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.3); animation: bounce 2s; transition: background-color 0.4s ease; :hover { box-shadow: 0 0 10px rgba(0, 0, 0, 0.5); }'>Submit</button> @keyframes fade-in { from { opacity: 0; } to { opacity: 1; } }"
352"A orange box with dashed border, radial-gradient(circle, pink, purple) background, medium text centered inside, using grid layout, with :hover { background-color: #555; color: white; } and spin.","<div style='background: radial-gradient(circle, pink, purple); border: 2px groove purple; font-size: 12px; text-align: center; display: flex; justify-content: space-between; align-items: center; animation: bounce 2s; transition: background-color 0.4s ease; :hover { transform: scale(1.1); }'>Contact Us</div> @keyframes bounce { 0%, 20%, 50%, 80%, 100% { transform: translateY(0); } 40% { transform: translateY(-30px); } 60% { transform: translateY(-15px); } }"
353"A large h2 with cyan text, Courier New font, none, and bounce, displayed as block with space-between, responsive with media queries.",<h3 style='color: gray; font-size: 18px; font-family: Helvetica; box-shadow: none; display: flex; justify-content: flex-end; animation: fade-in 2s; transition: transform 0.2s ease-in-out;'>Choose Option</h3> @keyframes spin { from { transform: rotate(0deg); } to { transform: rotate(360deg); } } @media (min-width: 1200px) { font-size: 18px; }
354"A red button with medium Verdana text, using none layout, aligned to the right, with 0 4px 8px rgba(0, 0, 0, 0.2), slide-up, and a :hover { background-color: #555; color: white; }.","<button style='background-color: white; font-size: 12px; font-family: Courier New; display: flex; text-align: center; box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); animation: spin 2s; transition: transform 0.2s ease-in-out; :hover { box-shadow: 0 0 10px rgba(0, 0, 0, 0.5); }'>Choose Option</button> @keyframes slide-up { from { transform: translateY(100%); } to { transform: translateY(0); } }"
355"A span containing a list of options with red text, each inside a solid box, with none, bounce, and @media (max-width: 600px) { font-size: 14px; }.","<button><ul style='box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); animation: bounce 1.5s;'><li style='color: purple; border: 1px double pink;'>Submit</li><li style='color: orange; border: 1px dotted red;'>Enter Your Name</li><li style='color: cyan; border: 1px dashed cyan;'>Choose Option</li><li style='color: cyan; border: 1px dotted orange;'>Hello World</li><li style='color: orange; border: 1px ridge red;'>Submit</li></ul></button> @keyframes spin { from { transform: rotate(0deg); } to { transform: rotate(360deg); } } @media (min-width: 600px) and (max-width: 1200px) { font-size: 16px; }"
356"A h3 containing a list of options with purple text, each inside a double box, with 2px 2px 5px rgba(0, 0, 0, 0.3), bounce, and @media (min-width: 600px) and (max-width: 1200px) { font-size: 16px; }.","<footer><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 yellow;'>Choose Option</li><li style='color: black; border: 1px dotted black;'>Submit</li><li style='color: pink; border: 1px dotted green;'>Click Me</li><li style='color: blue; border: 1px double white;'>Submit</li><li style='color: orange; border: 1px double pink;'>Choose Option</li></ul></footer> @keyframes bounce { 0%, 20%, 50%, 80%, 100% { transform: translateY(0); } 40% { transform: translateY(-30px); } 60% { transform: translateY(-15px); } } @media (min-width: 600px) and (max-width: 1200px) { font-size: 16px; }"
357"A white button with large Georgia text, using none layout, aligned to the left, with 2px 2px 5px rgba(0, 0, 0, 0.3), fade-in, and a :hover { background-color: #555; color: white; }.","<button style='background-color: yellow; font-size: 22px; font-family: Courier New; display: none; text-align: right; box-shadow: 4px 4px 10px rgba(0, 0, 0, 0.5); animation: fade-in 2s; transition: background-color 0.4s ease; :hover { box-shadow: 0 0 10px rgba(0, 0, 0, 0.5); }'>Sign Up</button> @keyframes spin { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }"
358"A yellow button with large Verdana text, using grid layout, aligned to the justify, with 4px 4px 10px rgba(0, 0, 0, 0.5), spin, and a :hover { background-color: #555; color: white; }.",<button style='background-color: black; font-size: 26px; font-family: Times New Roman; display: none; text-align: left; box-shadow: none; animation: fade-in 2s; transition: all 0.3s ease; :hover { transform: scale(1.1); }'>Sign Up</button> @keyframes slide-up { from { transform: translateY(100%); } to { transform: translateY(0); } }
359"A nav containing a black button with linear-gradient(to bottom, blue, green) background that says 'Click Me', followed by a small text description, with bounce.","<span><button style='background-color: linear-gradient(to bottom, blue, green); font-size: 22px; animation: slide-up 2s;'>Sign Up</button><p style='font-size: 22px;'>search</p></span> @keyframes fade-in { from { opacity: 0; } to { opacity: 1; } } transition: all 0.3s ease;"
360"A cyan box with solid border, linear-gradient(to right, red, yellow) background, large text centered inside, using inline-block layout, with :hover { transform: scale(1.1); } and bounce.","<div style='background: linear-gradient(to right, red, yellow); border: 2px groove blue; font-size: 26px; text-align: center; display: grid; justify-content: center; align-items: center; animation: spin 2s; transition: all 0.3s ease; :hover { background-color: #555; color: white; }'>Choose Option</div> @keyframes bounce { 0%, 20%, 50%, 80%, 100% { transform: translateY(0); } 40% { transform: translateY(-30px); } 60% { transform: translateY(-15px); } }"
361"A footer containing a list of options with cyan text, each inside a dashed box, with 2px 2px 5px rgba(0, 0, 0, 0.3), slide-up, and @media (max-width: 600px) { font-size: 14px; }.","<input><ul style='box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); animation: bounce 1.5s;'><li style='color: orange; border: 1px ridge blue;'>Search</li><li style='color: purple; border: 1px ridge green;'>Choose Option</li><li style='color: pink; border: 1px double white;'>Sign Up</li><li style='color: cyan; border: 1px dotted pink;'>Submit</li><li style='color: purple; border: 1px dotted red;'>Hello World</li></ul></input> @keyframes spin { from { transform: rotate(0deg); } to { transform: rotate(360deg); } } @media (max-width: 600px) { font-size: 14px; }"
362"A input containing a gray button with radial-gradient(circle, pink, purple) background that says 'Sign Up', followed by a medium text description, with slide-up.","<header><button style='background-color: linear-gradient(to bottom, blue, green); font-size: 28px; animation: slide-up 2s;'>Choose Option</button><p style='font-size: 28px;'>click me</p></header> @keyframes slide-up { from { transform: translateY(100%); } to { transform: translateY(0); } } transition: background-color 0.4s ease;"
363"A medium button with gray text, Arial font, 0 4px 8px rgba(0, 0, 0, 0.2), and bounce, displayed as flex with space-around, responsive with media queries.","<div style='color: cyan; font-size: 24px; font-family: Helvetica; box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.3); display: block; justify-content: space-between; animation: spin 2s; transition: transform 0.2s ease-in-out;'>Login</div> @keyframes spin { from { transform: rotate(0deg); } to { transform: rotate(360deg); } } @media (max-width: 600px) { font-size: 14px; }"
364"A input containing a red button with radial-gradient(circle, pink, purple) background that says 'Enter Your Name', followed by a large text description, with spin.","<h3><button style='background-color: linear-gradient(to right, red, yellow); font-size: 14px; animation: spin 2s;'>Submit</button><p style='font-size: 14px;'>sign up</p></h3> @keyframes fade-in { from { opacity: 0; } to { opacity: 1; } } transition: transform 0.2s ease-in-out;"
365"A red button with small Courier New text, using inline-block layout, aligned to the right, with none, slide-up, and a :hover { transform: scale(1.1); }.","<button style='background-color: white; font-size: 16px; font-family: Verdana; display: block; text-align: right; box-shadow: none; animation: spin 2s; transition: all 0.3s ease; :hover { box-shadow: 0 0 10px rgba(0, 0, 0, 0.5); }'>Hello World</button> @keyframes fade-in { from { opacity: 0; } to { opacity: 1; } }"
366"A gray button with small Times New Roman text, using none layout, aligned to the left, with 0 4px 8px rgba(0, 0, 0, 0.2), slide-up, and a :hover { box-shadow: 0 0 10px rgba(0, 0, 0, 0.5); }.","<button style='background-color: pink; font-size: 12px; font-family: Verdana; display: grid; text-align: justify; box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.3); animation: bounce 2s; transition: background-color 0.4s ease; :hover { background-color: #555; color: white; }'>Enter Your Name</button> @keyframes spin { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }"
367"A h1 containing a list of options with white text, each inside a solid box, with none, fade-in, and @media (min-width: 1200px) { font-size: 18px; }.","<div><ul style='box-shadow: 4px 4px 10px rgba(0, 0, 0, 0.5); animation: slide-up 1.5s;'><li style='color: green; border: 1px dashed gray;'>Search</li><li style='color: green; border: 1px solid blue;'>Hello World</li><li style='color: green; border: 1px dashed cyan;'>Hello World</li><li style='color: orange; border: 1px solid cyan;'>Enter Your Name</li><li style='color: red; border: 1px double yellow;'>Hello World</li></ul></div> @keyframes fade-in { from { opacity: 0; } to { opacity: 1; } } @media (max-width: 600px) { font-size: 14px; }"
368"A yellow box with ridge 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 slide-up.","<div style='background: radial-gradient(circle, pink, purple); border: 2px dashed gray; font-size: 28px; text-align: center; display: block; justify-content: center; align-items: center; animation: fade-in 2s; transition: all 0.3s ease; :hover { transform: scale(1.1); }'>Submit</div> @keyframes spin { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }"
369"A responsive textarea with a grid layout using template '100px 1fr', containing items with large text and :hover { transform: scale(1.1); }.","<textarea style='display: grid; grid-template-columns: 100px 1fr; gap: 10px; :hover { transform: scale(1.1); }'><li style='color: orange; border: 1px dashed yellow;'>Hello World</li><li style='color: purple; border: 1px dotted green;'>Login</li><li style='color: gray; border: 1px ridge orange;'>Search</li><li style='color: red; border: 1px dashed orange;'>Enter Your Name</li><li style='color: black; border: 1px solid black;'>Hello World</li></textarea> @keyframes bounce { 0%, 20%, 50%, 80%, 100% { transform: translateY(0); } 40% { transform: translateY(-30px); } 60% { transform: translateY(-15px); } }"
370"A red button with medium Times New Roman text, using grid layout, aligned to the justify, with 0 4px 8px rgba(0, 0, 0, 0.2), fade-in, and a :hover { background-color: #555; color: white; }.","<button style='background-color: gray; font-size: 22px; font-family: Arial; display: inline-block; text-align: left; box-shadow: 4px 4px 10px rgba(0, 0, 0, 0.5); animation: slide-up 2s; transition: background-color 0.4s ease; :hover { background-color: #555; color: white; }'>Hello World</button> @keyframes bounce { 0%, 20%, 50%, 80%, 100% { transform: translateY(0); } 40% { transform: translateY(-30px); } 60% { transform: translateY(-15px); } }"
371"A h2 containing a list of options with gray text, each inside a ridge box, with 4px 4px 10px rgba(0, 0, 0, 0.5), fade-in, and @media (max-width: 600px) { font-size: 14px; }.","<nav><ul style='box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.3); animation: slide-up 1.5s;'><li style='color: pink; border: 1px ridge purple;'>Search</li><li style='color: white; border: 1px ridge white;'>Submit</li><li style='color: orange; border: 1px ridge pink;'>Click Me</li><li style='color: yellow; border: 1px double red;'>Sign Up</li><li style='color: purple; border: 1px solid cyan;'>Sign Up</li></ul></nav> @keyframes spin { from { transform: rotate(0deg); } to { transform: rotate(360deg); } } @media (min-width: 600px) and (max-width: 1200px) { font-size: 16px; }"
372"A black box with double border, radial-gradient(circle, pink, purple) 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 dashed blue; font-size: 18px; text-align: center; display: grid; justify-content: space-around; align-items: center; animation: bounce 2s; transition: background-color 0.4s ease; :hover { transform: scale(1.1); }'>Sign Up</div> @keyframes fade-in { from { opacity: 0; } to { opacity: 1; } }"
373"A h3 containing a green button with radial-gradient(circle, pink, purple) background that says 'Sign Up', followed by a small text description, with spin.","<textarea><button style='background-color: linear-gradient(to bottom, blue, green); font-size: 20px; animation: fade-in 2s;'>Submit</button><p style='font-size: 20px;'>hello world</p></textarea> @keyframes fade-in { from { opacity: 0; } to { opacity: 1; } } transition: background-color 0.4s ease;"
374"A gray button with small Georgia text, using grid layout, aligned to the justify, with 0 4px 8px rgba(0, 0, 0, 0.2), slide-up, and a :hover { box-shadow: 0 0 10px rgba(0, 0, 0, 0.5); }.","<button style='background-color: purple; font-size: 12px; font-family: Georgia; display: block; text-align: justify; box-shadow: 4px 4px 10px rgba(0, 0, 0, 0.5); animation: fade-in 2s; transition: all 0.3s ease; :hover { background-color: #555; color: white; }'>Login</button> @keyframes slide-up { from { transform: translateY(100%); } to { transform: translateY(0); } }"
375"A h1 containing a yellow button with linear-gradient(to right, red, yellow) background that says 'Enter Your Name', followed by a large text description, with bounce.","<nav><button style='background-color: radial-gradient(circle, pink, purple); font-size: 16px; animation: slide-up 2s;'>Sign Up</button><p style='font-size: 16px;'>enter your name</p></nav> @keyframes fade-in { from { opacity: 0; } to { opacity: 1; } } transition: all 0.3s ease;"
376"A responsive input with a grid layout using template '100px 1fr', containing items with large text and :hover { transform: scale(1.1); }.","<textarea style='display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px; :hover { box-shadow: 0 0 10px rgba(0, 0, 0, 0.5); }'><li style='color: yellow; border: 1px solid black;'>Enter Your Name</li><li style='color: pink; border: 1px dotted red;'>Enter Your Name</li><li style='color: cyan; border: 1px groove green;'>Click Me</li><li style='color: blue; border: 1px double blue;'>Sign Up</li><li style='color: yellow; border: 1px dashed pink;'>Submit</li></textarea> @keyframes spin { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }"
377"A pink box with double 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 bounce.","<div style='background: linear-gradient(to bottom, blue, green); border: 2px solid gray; font-size: 24px; text-align: center; display: block; justify-content: flex-end; align-items: center; animation: fade-in 2s; transition: background-color 0.4s ease; :hover { background-color: #555; color: white; }'>Click Me</div> @keyframes fade-in { from { opacity: 0; } to { opacity: 1; } }"
378"A header containing a white button with radial-gradient(circle, pink, purple) background that says 'Sign Up', followed by a medium text description, with spin.","<div><button style='background-color: linear-gradient(to bottom, blue, green); font-size: 20px; animation: fade-in 2s;'>Login</button><p style='font-size: 20px;'>login</p></div> @keyframes bounce { 0%, 20%, 50%, 80%, 100% { transform: translateY(0); } 40% { transform: translateY(-30px); } 60% { transform: translateY(-15px); } } transition: transform 0.2s ease-in-out;"
379"A gray box with double border, linear-gradient(to bottom, blue, green) background, small text centered inside, using block layout, with :hover { transform: scale(1.1); } and bounce.","<div style='background: linear-gradient(to right, red, yellow); border: 2px ridge yellow; font-size: 26px; text-align: center; display: none; justify-content: space-between; align-items: center; animation: fade-in 2s; transition: background-color 0.4s ease; :hover { background-color: #555; color: white; }'>Sign Up</div> @keyframes fade-in { from { opacity: 0; } to { opacity: 1; } }"
380"A cyan button with large Helvetica text, using flex layout, aligned to the justify, with 2px 2px 5px rgba(0, 0, 0, 0.3), fade-in, and a :hover { transform: scale(1.1); }.","<button style='background-color: purple; font-size: 30px; font-family: Arial; display: inline-block; text-align: center; box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); animation: fade-in 2s; transition: all 0.3s ease; :hover { background-color: #555; color: white; }'>Contact Us</button> @keyframes bounce { 0%, 20%, 50%, 80%, 100% { transform: translateY(0); } 40% { transform: translateY(-30px); } 60% { transform: translateY(-15px); } }"
381"A red box with solid border, linear-gradient(to right, red, yellow) background, medium text centered inside, using flex layout, with :hover { background-color: #555; color: white; } and slide-up.","<div style='background: linear-gradient(to bottom, blue, green); border: 2px dashed white; font-size: 18px; text-align: center; display: flex; justify-content: center; align-items: center; animation: slide-up 2s; transition: background-color 0.4s ease; :hover { background-color: #555; color: white; }'>Enter Your Name</div> @keyframes fade-in { from { opacity: 0; } to { opacity: 1; } }"
382"A responsive span 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); }.","<span 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: yellow; border: 1px solid gray;'>Enter Your Name</li><li style='color: pink; border: 1px solid cyan;'>Choose Option</li><li style='color: green; border: 1px dashed pink;'>Contact Us</li><li style='color: cyan; border: 1px solid yellow;'>Login</li><li style='color: gray; border: 1px double red;'>Sign Up</li></span> @keyframes spin { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }"
383"A orange button with medium Georgia text, using none layout, aligned to the right, with 0 4px 8px rgba(0, 0, 0, 0.2), bounce, and a :hover { box-shadow: 0 0 10px rgba(0, 0, 0, 0.5); }.","<button style='background-color: cyan; font-size: 26px; font-family: Georgia; display: inline-block; text-align: center; box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.3); animation: bounce 2s; transition: background-color 0.4s ease; :hover { background-color: #555; color: white; }'>Sign Up</button> @keyframes bounce { 0%, 20%, 50%, 80%, 100% { transform: translateY(0); } 40% { transform: translateY(-30px); } 60% { transform: translateY(-15px); } }"
384"A input containing a list of options with yellow text, each inside a groove box, with 2px 2px 5px rgba(0, 0, 0, 0.3), bounce, and @media (min-width: 600px) and (max-width: 1200px) { font-size: 16px; }.",<p><ul style='box-shadow: none; animation: spin 1.5s;'><li style='color: red; border: 1px groove white;'>Hello World</li><li style='color: blue; border: 1px ridge white;'>Submit</li><li style='color: orange; border: 1px groove pink;'>Choose Option</li><li style='color: orange; border: 1px solid pink;'>Login</li><li style='color: yellow; border: 1px dashed gray;'>Sign Up</li></ul></p> @keyframes slide-up { from { transform: translateY(100%); } to { transform: translateY(0); } } @media (min-width: 1200px) { font-size: 18px; }
385"A responsive button with a grid layout using template 'repeat(3, 1fr)', containing items with small text and :hover { transform: scale(1.1); }.","<button style='display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px; :hover { box-shadow: 0 0 10px rgba(0, 0, 0, 0.5); }'><li style='color: cyan; border: 1px dotted red;'>Contact Us</li><li style='color: green; border: 1px double gray;'>Submit</li><li style='color: orange; border: 1px solid purple;'>Hello World</li><li style='color: gray; border: 1px solid red;'>Click Me</li><li style='color: red; border: 1px ridge black;'>Search</li></button> @keyframes bounce { 0%, 20%, 50%, 80%, 100% { transform: translateY(0); } 40% { transform: translateY(-30px); } 60% { transform: translateY(-15px); } }"
386"A responsive input with a grid layout using template 'repeat(2, 1fr)', containing items with large text and :hover { transform: scale(1.1); }.",<div style='display: grid; grid-template-columns: 1fr 2fr; gap: 10px; :hover { background-color: #555; color: white; }'><li style='color: white; border: 1px double black;'>Choose Option</li><li style='color: white; border: 1px groove red;'>Login</li><li style='color: green; border: 1px ridge gray;'>Enter Your Name</li><li style='color: orange; border: 1px dotted blue;'>Click Me</li><li style='color: blue; border: 1px solid orange;'>Contact Us</li></div> @keyframes fade-in { from { opacity: 0; } to { opacity: 1; } }
387"A purple button with large Times New Roman text, using flex layout, aligned to the left, with 2px 2px 5px rgba(0, 0, 0, 0.3), spin, and a :hover { transform: scale(1.1); }.","<button style='background-color: yellow; font-size: 12px; font-family: Courier New; display: flex; text-align: left; box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); animation: spin 2s; transition: all 0.3s ease; :hover { box-shadow: 0 0 10px rgba(0, 0, 0, 0.5); }'>Submit</button> @keyframes fade-in { from { opacity: 0; } to { opacity: 1; } }"
388"A responsive select with a grid layout using template '100px 1fr', containing items with small text and :hover { background-color: #555; color: white; }.","<button style='display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px; :hover { background-color: #555; color: white; }'><li style='color: cyan; border: 1px solid purple;'>Click Me</li><li style='color: green; border: 1px dashed orange;'>Hello World</li><li style='color: green; border: 1px double black;'>Click Me</li><li style='color: cyan; border: 1px solid gray;'>Search</li><li style='color: green; border: 1px solid pink;'>Hello World</li></button> @keyframes bounce { 0%, 20%, 50%, 80%, 100% { transform: translateY(0); } 40% { transform: translateY(-30px); } 60% { transform: translateY(-15px); } }"
389"A medium nav with green text, Courier New font, 0 4px 8px rgba(0, 0, 0, 0.2), and spin, displayed as block with flex-end, responsive with media queries.",<nav style='color: green; font-size: 20px; font-family: Verdana; box-shadow: none; display: block; justify-content: space-between; animation: spin 2s; transition: all 0.3s ease;'>Sign Up</nav> @keyframes spin { from { transform: rotate(0deg); } to { transform: rotate(360deg); } } @media (min-width: 600px) and (max-width: 1200px) { font-size: 16px; }
390"A responsive h2 with a grid layout using template '100px 1fr', containing items with small text and :hover { transform: scale(1.1); }.","<p style='display: grid; grid-template-columns: 100px 1fr; gap: 10px; :hover { transform: scale(1.1); }'><li style='color: white; border: 1px ridge blue;'>Login</li><li style='color: white; border: 1px ridge cyan;'>Contact Us</li><li style='color: yellow; border: 1px groove white;'>Choose Option</li><li style='color: yellow; border: 1px dotted white;'>Sign Up</li><li style='color: red; border: 1px solid red;'>Search</li></p> @keyframes bounce { 0%, 20%, 50%, 80%, 100% { transform: translateY(0); } 40% { transform: translateY(-30px); } 60% { transform: translateY(-15px); } }"
391"A input containing a list of options with yellow text, each inside a double box, with 0 4px 8px rgba(0, 0, 0, 0.2), slide-up, and @media (min-width: 1200px) { font-size: 18px; }.","<button><ul style='box-shadow: 4px 4px 10px rgba(0, 0, 0, 0.5); animation: bounce 1.5s;'><li style='color: blue; border: 1px solid cyan;'>Hello World</li><li style='color: white; border: 1px dotted purple;'>Sign Up</li><li style='color: gray; border: 1px groove orange;'>Submit</li><li style='color: yellow; border: 1px double gray;'>Submit</li><li style='color: blue; border: 1px ridge green;'>Choose Option</li></ul></button> @keyframes spin { from { transform: rotate(0deg); } to { transform: rotate(360deg); } } @media (min-width: 600px) and (max-width: 1200px) { font-size: 16px; }"
392"A nav containing a yellow button with linear-gradient(to right, red, yellow) background that says 'Choose Option', followed by a medium text description, with fade-in.","<input><button style='background-color: linear-gradient(to bottom, blue, green); font-size: 26px; animation: bounce 2s;'>Click Me</button><p style='font-size: 26px;'>hello world</p></input> @keyframes slide-up { from { transform: translateY(100%); } to { transform: translateY(0); } } transition: background-color 0.4s ease;"
393"A blue button with small Helvetica text, using grid layout, aligned to the right, with 2px 2px 5px rgba(0, 0, 0, 0.3), spin, and a :hover { transform: scale(1.1); }.",<button style='background-color: blue; font-size: 16px; font-family: Georgia; display: grid; text-align: center; box-shadow: none; animation: spin 2s; transition: all 0.3s ease; :hover { transform: scale(1.1); }'>Login</button> @keyframes fade-in { from { opacity: 0; } to { opacity: 1; } }
394"A blue box with dashed border, radial-gradient(circle, pink, purple) background, large text centered inside, using flex layout, with :hover { box-shadow: 0 0 10px rgba(0, 0, 0, 0.5); } and spin.","<div style='background: linear-gradient(to bottom, blue, green); border: 2px solid yellow; font-size: 22px; text-align: center; display: flex; justify-content: flex-end; align-items: center; animation: fade-in 2s; transition: background-color 0.4s ease; :hover { box-shadow: 0 0 10px rgba(0, 0, 0, 0.5); }'>Choose Option</div> @keyframes fade-in { from { opacity: 0; } to { opacity: 1; } }"
395"A red box with solid border, linear-gradient(to bottom, blue, green) background, small text centered inside, using none layout, with :hover { background-color: #555; color: white; } and slide-up.","<div style='background: radial-gradient(circle, pink, purple); border: 2px groove yellow; font-size: 24px; text-align: center; display: grid; justify-content: flex-end; align-items: center; animation: spin 2s; transition: all 0.3s ease; :hover { transform: scale(1.1); }'>Search</div> @keyframes spin { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }"
396"A medium textarea with cyan text, Verdana font, none, and spin, displayed as block with flex-end, responsive with media queries.",<h1 style='color: blue; font-size: 16px; font-family: Georgia; box-shadow: none; display: grid; justify-content: flex-end; animation: slide-up 2s; transition: background-color 0.4s ease;'>Submit</h1> @keyframes fade-in { from { opacity: 0; } to { opacity: 1; } } @media (max-width: 600px) { font-size: 14px; }
397"A responsive nav with a grid layout using template '100px 1fr', containing items with small text and :hover { box-shadow: 0 0 10px rgba(0, 0, 0, 0.5); }.",<header style='display: grid; grid-template-columns: 1fr 2fr; gap: 10px; :hover { background-color: #555; color: white; }'><li style='color: red; border: 1px dotted yellow;'>Search</li><li style='color: black; border: 1px double orange;'>Enter Your Name</li><li style='color: blue; border: 1px double red;'>Login</li><li style='color: pink; border: 1px groove yellow;'>Sign Up</li><li style='color: yellow; border: 1px dotted gray;'>Enter Your Name</li></header> @keyframes fade-in { from { opacity: 0; } to { opacity: 1; } }
398"A red box with double border, linear-gradient(to right, red, yellow) background, large text centered inside, using inline-block layout, with :hover { box-shadow: 0 0 10px rgba(0, 0, 0, 0.5); } and slide-up.","<div style='background: linear-gradient(to bottom, blue, green); border: 2px dotted cyan; font-size: 14px; text-align: center; display: none; justify-content: flex-start; align-items: center; animation: spin 2s; transition: background-color 0.4s ease; :hover { background-color: #555; color: white; }'>Contact Us</div> @keyframes spin { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }"
399"A h2 containing a white button with radial-gradient(circle, pink, purple) background that says 'Click Me', followed by a large text description, with spin.","<input><button style='background-color: radial-gradient(circle, pink, purple); font-size: 24px; animation: spin 2s;'>Submit</button><p style='font-size: 24px;'>choose option</p></input> @keyframes fade-in { from { opacity: 0; } to { opacity: 1; } } transition: transform 0.2s ease-in-out;"
400"A responsive h2 with a grid layout using template 'repeat(3, 1fr)', containing items with large text and :hover { box-shadow: 0 0 10px rgba(0, 0, 0, 0.5); }.","<select style='display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px; :hover { background-color: #555; color: white; }'><li style='color: gray; border: 1px dashed purple;'>Choose Option</li><li style='color: cyan; border: 1px dashed cyan;'>Submit</li><li style='color: orange; border: 1px dashed yellow;'>Enter Your Name</li><li style='color: pink; border: 1px dotted blue;'>Submit</li><li style='color: black; border: 1px ridge pink;'>Sign Up</li></select> @keyframes fade-in { from { opacity: 0; } to { opacity: 1; } }"
401"A cyan box with dashed border, linear-gradient(to right, red, yellow) background, medium text centered inside, using none layout, with :hover { transform: scale(1.1); } and slide-up.","<div style='background: linear-gradient(to bottom, blue, green); border: 2px double orange; font-size: 28px; text-align: center; display: flex; justify-content: flex-start; align-items: center; animation: bounce 2s; transition: background-color 0.4s ease; :hover { background-color: #555; color: white; }'>Sign Up</div> @keyframes bounce { 0%, 20%, 50%, 80%, 100% { transform: translateY(0); } 40% { transform: translateY(-30px); } 60% { transform: translateY(-15px); } }"
402"A span containing a list of options with gray text, each inside a dashed box, with none, spin, and @media (min-width: 1200px) { font-size: 18px; }.","<div><ul style='box-shadow: 4px 4px 10px rgba(0, 0, 0, 0.5); animation: bounce 1.5s;'><li style='color: yellow; border: 1px dotted gray;'>Click Me</li><li style='color: orange; border: 1px groove red;'>Click Me</li><li style='color: yellow; border: 1px dashed orange;'>Submit</li><li style='color: green; border: 1px dotted red;'>Login</li><li style='color: orange; border: 1px dotted blue;'>Sign Up</li></ul></div> @keyframes bounce { 0%, 20%, 50%, 80%, 100% { transform: translateY(0); } 40% { transform: translateY(-30px); } 60% { transform: translateY(-15px); } } @media (min-width: 1200px) { font-size: 18px; }"
403"A responsive h2 with a grid layout using template '1fr 2fr', containing items with large text and :hover { box-shadow: 0 0 10px rgba(0, 0, 0, 0.5); }.",<div style='display: grid; grid-template-columns: 100px 1fr; gap: 10px; :hover { transform: scale(1.1); }'><li style='color: red; border: 1px dotted gray;'>Enter Your Name</li><li style='color: red; border: 1px ridge blue;'>Search</li><li style='color: gray; border: 1px dotted gray;'>Sign Up</li><li style='color: purple; border: 1px groove gray;'>Contact Us</li><li style='color: purple; border: 1px solid red;'>Sign Up</li></div> @keyframes fade-in { from { opacity: 0; } to { opacity: 1; } }
404"A orange box with dotted border, linear-gradient(to right, red, yellow) background, large text centered inside, using grid 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 double orange; font-size: 20px; text-align: center; display: block; justify-content: flex-end; align-items: center; animation: bounce 2s; transition: background-color 0.4s ease; :hover { box-shadow: 0 0 10px rgba(0, 0, 0, 0.5); }'>Enter Your Name</div> @keyframes fade-in { from { opacity: 0; } to { opacity: 1; } }"
405"A div containing a pink button with linear-gradient(to bottom, blue, green) background that says 'Click Me', followed by a small text description, with bounce.","<h2><button style='background-color: linear-gradient(to right, red, yellow); font-size: 28px; animation: slide-up 2s;'>Enter Your Name</button><p style='font-size: 28px;'>hello world</p></h2> @keyframes slide-up { from { transform: translateY(100%); } to { transform: translateY(0); } } transition: transform 0.2s ease-in-out;"
406"A orange button with medium Courier New text, using grid 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: yellow; font-size: 28px; font-family: Georgia; display: inline-block; text-align: center; box-shadow: none; animation: slide-up 2s; transition: transform 0.2s ease-in-out; :hover { box-shadow: 0 0 10px rgba(0, 0, 0, 0.5); }'>Choose Option</button> @keyframes fade-in { from { opacity: 0; } to { opacity: 1; } }"
407"A p containing a purple button with linear-gradient(to bottom, blue, green) background that says 'Click Me', followed by a large text description, with spin.","<p><button style='background-color: linear-gradient(to bottom, blue, green); font-size: 26px; animation: fade-in 2s;'>Search</button><p style='font-size: 26px;'>hello world</p></p> @keyframes spin { from { transform: rotate(0deg); } to { transform: rotate(360deg); } } transition: transform 0.2s ease-in-out;"
408"A footer containing a blue button with linear-gradient(to bottom, blue, green) background that says 'Sign Up', followed by a small text description, with bounce.","<span><button style='background-color: linear-gradient(to bottom, blue, green); font-size: 24px; animation: spin 2s;'>Enter Your Name</button><p style='font-size: 24px;'>click me</p></span> @keyframes bounce { 0%, 20%, 50%, 80%, 100% { transform: translateY(0); } 40% { transform: translateY(-30px); } 60% { transform: translateY(-15px); } } transition: background-color 0.4s ease;"
409"A button containing a purple button with linear-gradient(to right, red, yellow) background that says 'Click Me', followed by a small text description, with bounce.","<p><button style='background-color: linear-gradient(to right, red, yellow); font-size: 20px; animation: slide-up 2s;'>Search</button><p style='font-size: 20px;'>click me</p></p> @keyframes spin { from { transform: rotate(0deg); } to { transform: rotate(360deg); } } transition: background-color 0.4s ease;"
410"A orange box with double border, linear-gradient(to right, red, yellow) background, small text centered inside, using inline-block layout, with :hover { background-color: #555; color: white; } and fade-in.","<div style='background: linear-gradient(to right, red, yellow); border: 2px dotted green; font-size: 22px; text-align: center; display: block; justify-content: space-between; align-items: center; animation: bounce 2s; transition: all 0.3s ease; :hover { background-color: #555; color: white; }'>Contact Us</div> @keyframes slide-up { from { transform: translateY(100%); } to { transform: translateY(0); } }"
411"A yellow box with ridge border, linear-gradient(to bottom, blue, green) background, medium text centered inside, using grid layout, with :hover { transform: scale(1.1); } and slide-up.","<div style='background: radial-gradient(circle, pink, purple); border: 2px groove gray; font-size: 28px; text-align: center; display: inline-block; justify-content: center; 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); }'>Submit</div> @keyframes fade-in { from { opacity: 0; } to { opacity: 1; } }"
412"A h1 containing a list of options with purple text, each inside a double box, with 2px 2px 5px rgba(0, 0, 0, 0.3), fade-in, and @media (min-width: 1200px) { font-size: 18px; }.","<footer><ul style='box-shadow: none; animation: slide-up 1.5s;'><li style='color: cyan; border: 1px ridge purple;'>Choose Option</li><li style='color: cyan; border: 1px double gray;'>Submit</li><li style='color: purple; border: 1px dashed pink;'>Contact Us</li><li style='color: pink; border: 1px dashed cyan;'>Login</li><li style='color: blue; border: 1px double pink;'>Submit</li></ul></footer> @keyframes bounce { 0%, 20%, 50%, 80%, 100% { transform: translateY(0); } 40% { transform: translateY(-30px); } 60% { transform: translateY(-15px); } } @media (min-width: 600px) and (max-width: 1200px) { font-size: 16px; }"
413"A purple button with medium Tahoma text, using grid layout, aligned to the center, with 2px 2px 5px rgba(0, 0, 0, 0.3), bounce, and a :hover { box-shadow: 0 0 10px rgba(0, 0, 0, 0.5); }.","<button style='background-color: white; font-size: 30px; font-family: Courier New; display: none; text-align: center; box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); animation: fade-in 2s; transition: all 0.3s ease; :hover { box-shadow: 0 0 10px rgba(0, 0, 0, 0.5); }'>Click Me</button> @keyframes slide-up { from { transform: translateY(100%); } to { transform: translateY(0); } }"
414"A select containing a list of options with gray text, each inside a dotted box, with 4px 4px 10px rgba(0, 0, 0, 0.5), slide-up, 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: yellow; border: 1px dotted cyan;'>Contact Us</li><li style='color: pink; border: 1px dashed pink;'>Submit</li><li style='color: cyan; border: 1px dashed black;'>Enter Your Name</li><li style='color: blue; border: 1px solid red;'>Submit</li><li style='color: white; border: 1px dashed black;'>Sign Up</li></ul></p> @keyframes fade-in { from { opacity: 0; } to { opacity: 1; } } @media (min-width: 1200px) { font-size: 18px; }"
415"A large h1 with green text, Verdana font, 0 4px 8px rgba(0, 0, 0, 0.2), and fade-in, displayed as flex with space-between, responsive with media queries.","<select style='color: cyan; font-size: 20px; font-family: Courier New; box-shadow: 4px 4px 10px rgba(0, 0, 0, 0.5); display: block; justify-content: flex-end; animation: bounce 2s; transition: transform 0.2s ease-in-out;'>Login</select> @keyframes fade-in { from { opacity: 0; } to { opacity: 1; } } @media (max-width: 600px) { font-size: 14px; }"
416"A pink 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: radial-gradient(circle, pink, purple); border: 2px ridge black; font-size: 28px; text-align: center; display: inline-block; justify-content: flex-end; align-items: center; animation: bounce 2s; transition: background-color 0.4s ease; :hover { box-shadow: 0 0 10px rgba(0, 0, 0, 0.5); }'>Login</div> @keyframes slide-up { from { transform: translateY(100%); } to { transform: translateY(0); } }"
417"A pink box with double 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 bottom, blue, green); border: 2px ridge purple; font-size: 18px; text-align: center; display: flex; justify-content: flex-start; align-items: center; animation: slide-up 2s; transition: transform 0.2s ease-in-out; :hover { transform: scale(1.1); }'>Hello World</div> @keyframes fade-in { from { opacity: 0; } to { opacity: 1; } }"
418"A large h2 with blue text, Arial font, none, and spin, displayed as grid with space-around, responsive with media queries.","<nav style='color: gray; font-size: 12px; font-family: Times New Roman; box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.3); display: inline-block; justify-content: flex-start; animation: bounce 2s; transition: all 0.3s ease;'>Submit</nav> @keyframes spin { from { transform: rotate(0deg); } to { transform: rotate(360deg); } } @media (min-width: 600px) and (max-width: 1200px) { font-size: 16px; }"
419"A select containing a gray button with radial-gradient(circle, pink, purple) background that says 'Click Me', followed by a small text description, with slide-up.","<div><button style='background-color: linear-gradient(to bottom, blue, green); font-size: 18px; animation: slide-up 2s;'>Hello World</button><p style='font-size: 18px;'>enter your name</p></div> @keyframes slide-up { from { transform: translateY(100%); } to { transform: translateY(0); } } transition: transform 0.2s ease-in-out;"
420"A yellow button with medium Tahoma text, using block layout, aligned to the center, with 0 4px 8px rgba(0, 0, 0, 0.2), bounce, and a :hover { box-shadow: 0 0 10px rgba(0, 0, 0, 0.5); }.","<button style='background-color: white; font-size: 14px; font-family: Helvetica; display: flex; text-align: center; box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); animation: slide-up 2s; transition: background-color 0.4s ease; :hover { transform: scale(1.1); }'>Submit</button> @keyframes fade-in { from { opacity: 0; } to { opacity: 1; } }"
421"A header containing a yellow button with radial-gradient(circle, pink, purple) background that says 'Login', followed by a large text description, with fade-in.","<button><button style='background-color: linear-gradient(to bottom, blue, green); font-size: 30px; animation: bounce 2s;'>Submit</button><p style='font-size: 30px;'>login</p></button> @keyframes fade-in { from { opacity: 0; } to { opacity: 1; } } transition: all 0.3s ease;"
422"A header containing a gray button with radial-gradient(circle, pink, purple) background that says 'Click Me', followed by a medium text description, with slide-up.","<h1><button style='background-color: linear-gradient(to bottom, blue, green); font-size: 28px; animation: spin 2s;'>Click Me</button><p style='font-size: 28px;'>click me</p></h1> @keyframes slide-up { from { transform: translateY(100%); } to { transform: translateY(0); } } transition: all 0.3s ease;"
423"A pink button with large Times New Roman text, using 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: gray; font-size: 30px; font-family: Times New Roman; display: inline-block; text-align: center; box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); animation: spin 2s; transition: all 0.3s ease; :hover { box-shadow: 0 0 10px rgba(0, 0, 0, 0.5); }'>Login</button> @keyframes bounce { 0%, 20%, 50%, 80%, 100% { transform: translateY(0); } 40% { transform: translateY(-30px); } 60% { transform: translateY(-15px); } }"
424"A white button with small Times New Roman text, using flex layout, aligned to the justify, with 4px 4px 10px rgba(0, 0, 0, 0.5), fade-in, and a :hover { background-color: #555; color: white; }.","<button style='background-color: orange; font-size: 28px; font-family: Tahoma; display: inline-block; text-align: left; box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); animation: bounce 2s; transition: transform 0.2s ease-in-out; :hover { background-color: #555; color: white; }'>Login</button> @keyframes slide-up { from { transform: translateY(100%); } to { transform: translateY(0); } }"
425"A gray box with solid border, linear-gradient(to right, red, yellow) background, small text centered inside, using inline-block layout, with :hover { background-color: #555; color: white; } and spin.","<div style='background: linear-gradient(to bottom, blue, green); border: 2px groove black; font-size: 28px; text-align: center; display: inline-block; justify-content: flex-end; align-items: center; animation: fade-in 2s; transition: background-color 0.4s ease; :hover { transform: scale(1.1); }'>Search</div> @keyframes bounce { 0%, 20%, 50%, 80%, 100% { transform: translateY(0); } 40% { transform: translateY(-30px); } 60% { transform: translateY(-15px); } }"
426"A responsive div with a grid layout using template 'repeat(3, 1fr)', containing items with medium text and :hover { transform: scale(1.1); }.","<select style='display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; :hover { transform: scale(1.1); }'><li style='color: white; border: 1px groove yellow;'>Enter Your Name</li><li style='color: green; border: 1px dotted red;'>Enter Your Name</li><li style='color: yellow; border: 1px groove gray;'>Search</li><li style='color: cyan; border: 1px groove red;'>Click Me</li><li style='color: cyan; border: 1px solid pink;'>Enter Your Name</li></select> @keyframes bounce { 0%, 20%, 50%, 80%, 100% { transform: translateY(0); } 40% { transform: translateY(-30px); } 60% { transform: translateY(-15px); } }"
427"A h3 containing a list of options with red 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: 4px 4px 10px rgba(0, 0, 0, 0.5); animation: fade-in 1.5s;'><li style='color: black; border: 1px groove cyan;'>Choose Option</li><li style='color: gray; border: 1px double pink;'>Login</li><li style='color: orange; border: 1px solid black;'>Contact Us</li><li style='color: yellow; border: 1px dashed white;'>Enter Your Name</li><li style='color: red; border: 1px solid gray;'>Login</li></ul></span> @keyframes spin { from { transform: rotate(0deg); } to { transform: rotate(360deg); } } @media (max-width: 600px) { font-size: 14px; }"
428"A nav containing a list of options with black text, each inside a dotted box, with 4px 4px 10px rgba(0, 0, 0, 0.5), bounce, and @media (min-width: 600px) and (max-width: 1200px) { font-size: 16px; }.",<input><ul style='box-shadow: none; animation: spin 1.5s;'><li style='color: green; border: 1px groove green;'>Click Me</li><li style='color: green; border: 1px ridge green;'>Submit</li><li style='color: red; border: 1px groove purple;'>Choose Option</li><li style='color: black; border: 1px groove purple;'>Hello World</li><li style='color: white; border: 1px groove red;'>Choose Option</li></ul></input> @keyframes spin { from { transform: rotate(0deg); } to { transform: rotate(360deg); } } @media (min-width: 600px) and (max-width: 1200px) { font-size: 16px; }
429"A footer containing a yellow button with linear-gradient(to right, red, yellow) background that says 'Contact Us', followed by a small text description, with fade-in.","<div><button style='background-color: linear-gradient(to right, red, yellow); font-size: 26px; animation: slide-up 2s;'>Sign Up</button><p style='font-size: 26px;'>sign up</p></div> @keyframes fade-in { from { opacity: 0; } to { opacity: 1; } } transition: transform 0.2s ease-in-out;"
430"A h3 containing a list of options with yellow text, each inside a dotted box, with 0 4px 8px rgba(0, 0, 0, 0.2), bounce, and @media (min-width: 1200px) { font-size: 18px; }.","<footer><ul style='box-shadow: 4px 4px 10px rgba(0, 0, 0, 0.5); animation: bounce 1.5s;'><li style='color: green; border: 1px dotted gray;'>Login</li><li style='color: black; border: 1px double orange;'>Enter Your Name</li><li style='color: orange; border: 1px dotted black;'>Contact Us</li><li style='color: yellow; border: 1px dotted green;'>Search</li><li style='color: pink; border: 1px groove purple;'>Search</li></ul></footer> @keyframes bounce { 0%, 20%, 50%, 80%, 100% { transform: translateY(0); } 40% { transform: translateY(-30px); } 60% { transform: translateY(-15px); } } @media (min-width: 1200px) { font-size: 18px; }"
431"A responsive h3 with a grid layout using template '100px 1fr', containing items with medium text and :hover { box-shadow: 0 0 10px rgba(0, 0, 0, 0.5); }.","<span style='display: grid; grid-template-columns: 1fr 2fr; gap: 10px; :hover { transform: scale(1.1); }'><li style='color: pink; border: 1px double cyan;'>Search</li><li style='color: gray; border: 1px ridge orange;'>Login</li><li style='color: white; border: 1px double gray;'>Search</li><li style='color: pink; border: 1px solid blue;'>Enter Your Name</li><li style='color: orange; border: 1px dashed purple;'>Choose Option</li></span> @keyframes bounce { 0%, 20%, 50%, 80%, 100% { transform: translateY(0); } 40% { transform: translateY(-30px); } 60% { transform: translateY(-15px); } }"
432"A select containing a list of options with gray text, each inside a dotted box, with 0 4px 8px rgba(0, 0, 0, 0.2), fade-in, and @media (min-width: 600px) and (max-width: 1200px) { font-size: 16px; }.","<span><ul style='box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.3); animation: bounce 1.5s;'><li style='color: blue; border: 1px dotted pink;'>Submit</li><li style='color: cyan; border: 1px ridge blue;'>Contact Us</li><li style='color: cyan; border: 1px groove blue;'>Enter Your Name</li><li style='color: gray; border: 1px double gray;'>Hello World</li><li style='color: gray; border: 1px ridge white;'>Search</li></ul></span> @keyframes slide-up { from { transform: translateY(100%); } to { transform: translateY(0); } } @media (min-width: 1200px) { font-size: 18px; }"
433"A h3 containing a list of options with white text, each inside a solid box, with 0 4px 8px rgba(0, 0, 0, 0.2), spin, and @media (max-width: 600px) { font-size: 14px; }.","<h2><ul style='box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.3); animation: fade-in 1.5s;'><li style='color: orange; border: 1px dashed gray;'>Submit</li><li style='color: cyan; border: 1px double yellow;'>Hello World</li><li style='color: orange; border: 1px groove yellow;'>Hello World</li><li style='color: white; border: 1px dashed cyan;'>Submit</li><li style='color: red; border: 1px dotted cyan;'>Submit</li></ul></h2> @keyframes fade-in { from { opacity: 0; } to { opacity: 1; } } @media (min-width: 600px) and (max-width: 1200px) { font-size: 16px; }"
434"A medium select with black text, Times New Roman font, 2px 2px 5px rgba(0, 0, 0, 0.3), and slide-up, displayed as grid with flex-end, responsive with media queries.",<header style='color: blue; font-size: 24px; font-family: Courier New; box-shadow: none; display: inline-block; justify-content: space-around; animation: bounce 2s; transition: background-color 0.4s ease;'>Enter Your Name</header> @keyframes slide-up { from { transform: translateY(100%); } to { transform: translateY(0); } } @media (max-width: 600px) { font-size: 14px; }
435"A responsive h1 with a grid layout using template '1fr 2fr', containing items with large text and :hover { box-shadow: 0 0 10px rgba(0, 0, 0, 0.5); }.","<header style='display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px; :hover { transform: scale(1.1); }'><li style='color: black; border: 1px double cyan;'>Submit</li><li style='color: green; border: 1px dashed yellow;'>Choose Option</li><li style='color: red; border: 1px ridge blue;'>Enter Your Name</li><li style='color: yellow; border: 1px dashed orange;'>Submit</li><li style='color: green; border: 1px ridge white;'>Hello World</li></header> @keyframes spin { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }"
436"A responsive textarea with a grid layout using template '1fr 2fr', containing items with large text and :hover { box-shadow: 0 0 10px rgba(0, 0, 0, 0.5); }.","<p 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: pink; border: 1px solid yellow;'>Choose Option</li><li style='color: white; border: 1px dotted gray;'>Login</li><li style='color: blue; border: 1px dotted white;'>Search</li><li style='color: black; border: 1px solid orange;'>Login</li><li style='color: blue; border: 1px dashed green;'>Enter Your Name</li></p> @keyframes bounce { 0%, 20%, 50%, 80%, 100% { transform: translateY(0); } 40% { transform: translateY(-30px); } 60% { transform: translateY(-15px); } }"
437"A h3 containing a list of options with purple text, each inside a dotted box, with 2px 2px 5px rgba(0, 0, 0, 0.3), fade-in, and @media (max-width: 600px) { font-size: 14px; }.",<button><ul style='box-shadow: none; animation: fade-in 1.5s;'><li style='color: yellow; border: 1px solid cyan;'>Enter Your Name</li><li style='color: gray; border: 1px solid blue;'>Submit</li><li style='color: cyan; border: 1px ridge orange;'>Submit</li><li style='color: blue; border: 1px groove pink;'>Search</li><li style='color: yellow; border: 1px solid white;'>Login</li></ul></button> @keyframes fade-in { from { opacity: 0; } to { opacity: 1; } } @media (min-width: 600px) and (max-width: 1200px) { font-size: 16px; }
438"A blue button with medium Tahoma text, using inline-block layout, aligned to the left, with 0 4px 8px rgba(0, 0, 0, 0.2), slide-up, and a :hover { transform: scale(1.1); }.","<button style='background-color: orange; font-size: 28px; font-family: Helvetica; display: grid; text-align: justify; box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); animation: spin 2s; transition: all 0.3s ease; :hover { background-color: #555; color: white; }'>Sign Up</button> @keyframes spin { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }"
439"A gray box with groove border, linear-gradient(to bottom, blue, green) background, small text centered inside, using block layout, with :hover { box-shadow: 0 0 10px rgba(0, 0, 0, 0.5); } and bounce.","<div style='background: linear-gradient(to bottom, blue, green); border: 2px double red; font-size: 14px; text-align: center; display: block; justify-content: flex-start; align-items: center; animation: fade-in 2s; transition: all 0.3s ease; :hover { box-shadow: 0 0 10px rgba(0, 0, 0, 0.5); }'>Submit</div> @keyframes bounce { 0%, 20%, 50%, 80%, 100% { transform: translateY(0); } 40% { transform: translateY(-30px); } 60% { transform: translateY(-15px); } }"
440"A responsive h2 with a grid layout using template '1fr 2fr', containing items with small text and :hover { transform: scale(1.1); }.","<select style='display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px; :hover { transform: scale(1.1); }'><li style='color: purple; border: 1px groove red;'>Submit</li><li style='color: green; border: 1px dashed yellow;'>Contact Us</li><li style='color: black; border: 1px groove red;'>Hello World</li><li style='color: gray; border: 1px ridge black;'>Login</li><li style='color: cyan; border: 1px dashed purple;'>Submit</li></select> @keyframes spin { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }"
441"A yellow box with double border, linear-gradient(to bottom, blue, green) background, small 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: linear-gradient(to right, red, yellow); border: 2px double green; font-size: 26px; text-align: center; display: grid; justify-content: center; align-items: center; animation: fade-in 2s; transition: all 0.3s ease; :hover { box-shadow: 0 0 10px rgba(0, 0, 0, 0.5); }'>Search</div> @keyframes slide-up { from { transform: translateY(100%); } to { transform: translateY(0); } }"
442"A textarea containing a list of options with red text, each inside a solid box, with 4px 4px 10px rgba(0, 0, 0, 0.5), spin, and @media (max-width: 600px) { font-size: 14px; }.",<header><ul style='box-shadow: none; animation: fade-in 1.5s;'><li style='color: pink; border: 1px groove blue;'>Contact Us</li><li style='color: white; border: 1px dashed red;'>Submit</li><li style='color: pink; border: 1px dashed orange;'>Sign Up</li><li style='color: cyan; border: 1px dotted black;'>Choose Option</li><li style='color: cyan; border: 1px solid blue;'>Search</li></ul></header> @keyframes fade-in { from { opacity: 0; } to { opacity: 1; } } @media (max-width: 600px) { font-size: 14px; }
443"A red button with small Courier New text, using none layout, aligned to the left, with 4px 4px 10px rgba(0, 0, 0, 0.5), bounce, and a :hover { box-shadow: 0 0 10px rgba(0, 0, 0, 0.5); }.","<button style='background-color: red; font-size: 30px; font-family: Georgia; display: inline-block; text-align: justify; box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.3); animation: spin 2s; transition: transform 0.2s ease-in-out; :hover { background-color: #555; color: white; }'>Enter Your Name</button> @keyframes spin { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }"
444"A yellow box with dashed border, radial-gradient(circle, pink, purple) background, medium text centered inside, using flex layout, with :hover { transform: scale(1.1); } and spin.","<div style='background: radial-gradient(circle, pink, purple); border: 2px double pink; font-size: 12px; text-align: center; display: grid; justify-content: center; align-items: center; animation: bounce 2s; transition: all 0.3s ease; :hover { transform: scale(1.1); }'>Choose Option</div> @keyframes fade-in { from { opacity: 0; } to { opacity: 1; } }"
445"A black button with medium Helvetica text, using flex layout, aligned to the center, with 2px 2px 5px rgba(0, 0, 0, 0.3), spin, and a :hover { box-shadow: 0 0 10px rgba(0, 0, 0, 0.5); }.","<button style='background-color: red; font-size: 14px; font-family: Courier New; display: block; text-align: left; box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.3); animation: spin 2s; transition: all 0.3s ease; :hover { background-color: #555; color: white; }'>Hello World</button> @keyframes fade-in { from { opacity: 0; } to { opacity: 1; } }"
446"A responsive h1 with a grid layout using template '100px 1fr', containing items with small text and :hover { transform: scale(1.1); }.",<p style='display: grid; grid-template-columns: 100px 1fr; gap: 10px; :hover { transform: scale(1.1); }'><li style='color: blue; border: 1px dashed purple;'>Submit</li><li style='color: cyan; border: 1px double cyan;'>Choose Option</li><li style='color: blue; border: 1px dashed yellow;'>Contact Us</li><li style='color: black; border: 1px ridge gray;'>Sign Up</li><li style='color: blue; border: 1px groove blue;'>Sign Up</li></p> @keyframes fade-in { from { opacity: 0; } to { opacity: 1; } }
447"A green box with dotted border, linear-gradient(to bottom, blue, green) background, small text centered inside, using inline-block layout, with :hover { background-color: #555; color: white; } and fade-in.","<div style='background: radial-gradient(circle, pink, purple); border: 2px double gray; font-size: 26px; text-align: center; display: grid; justify-content: space-between; align-items: center; animation: slide-up 2s; transition: background-color 0.4s ease; :hover { background-color: #555; color: white; }'>Contact Us</div> @keyframes fade-in { from { opacity: 0; } to { opacity: 1; } }"
448"A large nav with blue text, Tahoma font, 2px 2px 5px rgba(0, 0, 0, 0.3), and fade-in, displayed as grid with center, responsive with media queries.","<h2 style='color: yellow; font-size: 22px; font-family: Arial; box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.3); display: none; justify-content: space-around; animation: slide-up 2s; transition: transform 0.2s ease-in-out;'>Login</h2> @keyframes bounce { 0%, 20%, 50%, 80%, 100% { transform: translateY(0); } 40% { transform: translateY(-30px); } 60% { transform: translateY(-15px); } } @media (max-width: 600px) { font-size: 14px; }"
449"A cyan button with large Verdana text, using flex layout, aligned to the left, with none, spin, and a :hover { transform: scale(1.1); }.","<button style='background-color: green; font-size: 12px; font-family: Times New Roman; display: block; text-align: center; box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.3); 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 { transform: rotate(360deg); } }"
450"A span containing a yellow button with linear-gradient(to bottom, blue, green) background that says 'Enter Your Name', followed by a large text description, with slide-up.","<h3><button style='background-color: linear-gradient(to right, red, yellow); font-size: 30px; animation: fade-in 2s;'>Sign Up</button><p style='font-size: 30px;'>hello world</p></h3> @keyframes fade-in { from { opacity: 0; } to { opacity: 1; } } transition: transform 0.2s ease-in-out;"
451"A cyan button with large Verdana text, using inline-block layout, aligned to the center, with 2px 2px 5px rgba(0, 0, 0, 0.3), spin, and a :hover { box-shadow: 0 0 10px rgba(0, 0, 0, 0.5); }.",<button style='background-color: gray; font-size: 26px; font-family: Georgia; display: flex; text-align: justify; box-shadow: none; animation: fade-in 2s; transition: transform 0.2s ease-in-out; :hover { background-color: #555; color: white; }'>Enter Your Name</button> @keyframes spin { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }
452"A medium button with green text, Times New Roman font, none, and bounce, displayed as block with space-between, responsive with media queries.",<select style='color: white; font-size: 16px; font-family: Georgia; box-shadow: none; display: flex; justify-content: space-between; animation: fade-in 2s; transition: background-color 0.4s ease;'>Click Me</select> @keyframes slide-up { from { transform: translateY(100%); } to { transform: translateY(0); } } @media (min-width: 1200px) { font-size: 18px; }
453"A textarea containing a blue button with linear-gradient(to bottom, blue, green) background that says 'Choose Option', followed by a small text description, with fade-in.","<footer><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;'>submit</p></footer> @keyframes bounce { 0%, 20%, 50%, 80%, 100% { transform: translateY(0); } 40% { transform: translateY(-30px); } 60% { transform: translateY(-15px); } } transition: transform 0.2s ease-in-out;"
454"A small h1 with green text, Times New Roman font, none, and bounce, displayed as block with flex-start, responsive with media queries.","<p style='color: yellow; font-size: 22px; font-family: Helvetica; box-shadow: 4px 4px 10px rgba(0, 0, 0, 0.5); display: flex; justify-content: flex-end; animation: fade-in 2s; transition: background-color 0.4s ease;'>Hello World</p> @keyframes spin { from { transform: rotate(0deg); } to { transform: rotate(360deg); } } @media (max-width: 600px) { font-size: 14px; }"
455"A small div with white text, Verdana font, none, and fade-in, displayed as none with flex-start, responsive with media queries.","<span style='color: cyan; font-size: 30px; font-family: Arial; box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); display: flex; justify-content: center; animation: spin 2s; transition: background-color 0.4s ease;'>Search</span> @keyframes fade-in { from { opacity: 0; } to { opacity: 1; } } @media (min-width: 600px) and (max-width: 1200px) { font-size: 16px; }"
456"A footer containing a list of options with gray text, each inside a double box, with 4px 4px 10px rgba(0, 0, 0, 0.5), bounce, and @media (min-width: 600px) and (max-width: 1200px) { font-size: 16px; }.","<footer><ul style='box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); animation: slide-up 1.5s;'><li style='color: cyan; border: 1px dotted gray;'>Search</li><li style='color: gray; border: 1px groove yellow;'>Login</li><li style='color: orange; border: 1px dotted blue;'>Login</li><li style='color: white; border: 1px ridge yellow;'>Enter Your Name</li><li style='color: gray; border: 1px double orange;'>Login</li></ul></footer> @keyframes fade-in { from { opacity: 0; } to { opacity: 1; } } @media (max-width: 600px) { font-size: 14px; }"
457"A medium h3 with purple text, Courier New font, none, and slide-up, displayed as flex with center, responsive with media queries.","<h2 style='color: yellow; font-size: 20px; font-family: Courier New; box-shadow: 4px 4px 10px rgba(0, 0, 0, 0.5); display: flex; justify-content: center; animation: fade-in 2s; transition: background-color 0.4s ease;'>Contact Us</h2> @keyframes fade-in { from { opacity: 0; } to { opacity: 1; } } @media (max-width: 600px) { font-size: 14px; }"
458"A white box with ridge border, linear-gradient(to bottom, blue, green) background, medium text centered inside, using flex layout, with :hover { transform: scale(1.1); } and spin.","<div style='background: linear-gradient(to bottom, blue, green); border: 2px groove cyan; font-size: 24px; text-align: center; display: grid; justify-content: center; align-items: center; animation: spin 2s; transition: transform 0.2s ease-in-out; :hover { box-shadow: 0 0 10px rgba(0, 0, 0, 0.5); }'>Choose Option</div> @keyframes bounce { 0%, 20%, 50%, 80%, 100% { transform: translateY(0); } 40% { transform: translateY(-30px); } 60% { transform: translateY(-15px); } }"
459"A large header with red text, Arial font, 4px 4px 10px rgba(0, 0, 0, 0.5), and spin, displayed as inline-block with flex-start, responsive with media queries.","<select style='color: yellow; font-size: 18px; font-family: Tahoma; box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); display: none; justify-content: space-between; animation: slide-up 2s; transition: all 0.3s ease;'>Sign Up</select> @keyframes fade-in { from { opacity: 0; } to { opacity: 1; } } @media (min-width: 600px) and (max-width: 1200px) { font-size: 16px; }"
460"A pink button with large Times New Roman text, using inline-block layout, aligned to the justify, with 2px 2px 5px rgba(0, 0, 0, 0.3), spin, and a :hover { box-shadow: 0 0 10px rgba(0, 0, 0, 0.5); }.","<button style='background-color: cyan; font-size: 12px; font-family: Georgia; display: inline-block; text-align: right; box-shadow: 4px 4px 10px rgba(0, 0, 0, 0.5); animation: fade-in 2s; transition: transform 0.2s ease-in-out; :hover { background-color: #555; color: white; }'>Choose Option</button> @keyframes bounce { 0%, 20%, 50%, 80%, 100% { transform: translateY(0); } 40% { transform: translateY(-30px); } 60% { transform: translateY(-15px); } }"
461"A medium h3 with blue text, Courier New font, 0 4px 8px rgba(0, 0, 0, 0.2), and fade-in, displayed as inline-block with space-around, responsive with media queries.",<h1 style='color: orange; font-size: 18px; font-family: Times New Roman; box-shadow: none; display: inline-block; justify-content: flex-end; animation: slide-up 2s; transition: background-color 0.4s ease;'>Hello World</h1> @keyframes slide-up { from { transform: translateY(100%); } to { transform: translateY(0); } } @media (min-width: 600px) and (max-width: 1200px) { font-size: 16px; }
462"A small header with cyan text, Arial font, 4px 4px 10px rgba(0, 0, 0, 0.5), and bounce, displayed as inline-block with flex-start, responsive with media queries.","<input style='color: pink; font-size: 18px; font-family: Georgia; box-shadow: 4px 4px 10px rgba(0, 0, 0, 0.5); display: grid; justify-content: flex-start; animation: spin 2s; transition: all 0.3s ease;'>Click Me</input> @keyframes fade-in { from { opacity: 0; } to { opacity: 1; } } @media (max-width: 600px) { font-size: 14px; }"
463"A blue button with large Courier New text, using inline-block layout, aligned to the justify, with 2px 2px 5px rgba(0, 0, 0, 0.3), slide-up, and a :hover { transform: scale(1.1); }.","<button style='background-color: cyan; font-size: 30px; font-family: Helvetica; display: flex; text-align: left; box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); animation: spin 2s; transition: transform 0.2s ease-in-out; :hover { transform: scale(1.1); }'>Contact Us</button> @keyframes spin { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }"
464"A black box with double border, radial-gradient(circle, pink, purple) background, large text centered inside, using flex layout, with :hover { transform: scale(1.1); } and spin.","<div style='background: linear-gradient(to right, red, yellow); border: 2px solid white; font-size: 12px; text-align: center; display: block; justify-content: space-around; align-items: center; animation: fade-in 2s; transition: background-color 0.4s ease; :hover { background-color: #555; color: white; }'>Login</div> @keyframes slide-up { from { transform: translateY(100%); } to { transform: translateY(0); } }"
465"A h3 containing a gray button with linear-gradient(to right, red, yellow) background that says 'Login', followed by a small text description, with spin.","<h2><button style='background-color: linear-gradient(to bottom, blue, green); font-size: 12px; animation: bounce 2s;'>Contact Us</button><p style='font-size: 12px;'>sign up</p></h2> @keyframes slide-up { from { transform: translateY(100%); } to { transform: translateY(0); } } transition: background-color 0.4s ease;"
466"A white box with dotted border, linear-gradient(to bottom, blue, green) background, small text centered inside, using none layout, with :hover { transform: scale(1.1); } and bounce.","<div style='background: radial-gradient(circle, pink, purple); border: 2px groove blue; font-size: 16px; text-align: center; display: inline-block; justify-content: center; align-items: center; animation: spin 2s; transition: all 0.3s ease; :hover { transform: scale(1.1); }'>Login</div> @keyframes spin { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }"
467"A small h1 with black text, Courier New font, none, and bounce, displayed as flex with space-around, responsive with media queries.","<p style='color: orange; font-size: 16px; font-family: Tahoma; box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); display: none; justify-content: flex-end; animation: fade-in 2s; transition: background-color 0.4s ease;'>Contact Us</p> @keyframes fade-in { from { opacity: 0; } to { opacity: 1; } } @media (min-width: 1200px) { font-size: 18px; }"
468"A large div with green text, Georgia font, 2px 2px 5px rgba(0, 0, 0, 0.3), and slide-up, displayed as inline-block with flex-end, responsive with media queries.",<textarea style='color: gray; font-size: 30px; font-family: Helvetica; box-shadow: none; display: block; justify-content: flex-end; animation: fade-in 2s; transition: all 0.3s ease;'>Click Me</textarea> @keyframes slide-up { from { transform: translateY(100%); } to { transform: translateY(0); } } @media (min-width: 1200px) { font-size: 18px; }
469"A p containing a yellow button with linear-gradient(to bottom, blue, green) background that says 'Search', followed by a large text description, with bounce.","<input><button style='background-color: linear-gradient(to right, red, yellow); font-size: 24px; animation: fade-in 2s;'>Contact Us</button><p style='font-size: 24px;'>contact us</p></input> @keyframes fade-in { from { opacity: 0; } to { opacity: 1; } } transition: all 0.3s ease;"
470"A purple box with groove border, radial-gradient(circle, pink, purple) background, small text centered inside, using none layout, with :hover { background-color: #555; color: white; } and fade-in.","<div style='background: radial-gradient(circle, pink, purple); border: 2px dotted purple; font-size: 14px; text-align: center; display: flex; justify-content: space-around; align-items: center; animation: spin 2s; transition: transform 0.2s ease-in-out; :hover { background-color: #555; color: white; }'>Search</div> @keyframes fade-in { from { opacity: 0; } to { opacity: 1; } }"
471"A medium p with orange text, Verdana font, 0 4px 8px rgba(0, 0, 0, 0.2), and fade-in, displayed as inline-block with flex-start, responsive with media queries.","<span style='color: yellow; font-size: 12px; font-family: Helvetica; box-shadow: 4px 4px 10px rgba(0, 0, 0, 0.5); display: flex; justify-content: center; animation: bounce 2s; transition: all 0.3s ease;'>Choose Option</span> @keyframes slide-up { from { transform: translateY(100%); } to { transform: translateY(0); } } @media (min-width: 1200px) { font-size: 18px; }"
472"A red button with small Tahoma text, using block layout, aligned to the left, with 0 4px 8px rgba(0, 0, 0, 0.2), spin, and a :hover { background-color: #555; color: white; }.","<button style='background-color: green; font-size: 22px; font-family: Courier New; display: flex; text-align: justify; box-shadow: 4px 4px 10px rgba(0, 0, 0, 0.5); animation: fade-in 2s; transition: all 0.3s ease; :hover { transform: scale(1.1); }'>Enter Your Name</button> @keyframes bounce { 0%, 20%, 50%, 80%, 100% { transform: translateY(0); } 40% { transform: translateY(-30px); } 60% { transform: translateY(-15px); } }"
473"A responsive header with a grid layout using template '1fr 2fr', containing items with medium text and :hover { background-color: #555; color: white; }.","<header style='display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px; :hover { transform: scale(1.1); }'><li style='color: cyan; border: 1px dashed blue;'>Choose Option</li><li style='color: pink; border: 1px dotted black;'>Hello World</li><li style='color: pink; border: 1px solid white;'>Submit</li><li style='color: purple; border: 1px dotted cyan;'>Hello World</li><li style='color: black; border: 1px double purple;'>Choose Option</li></header> @keyframes fade-in { from { opacity: 0; } to { opacity: 1; } }"
474"A responsive h2 with a grid layout using template '100px 1fr', containing items with small text and :hover { background-color: #555; color: white; }.",<textarea style='display: grid; grid-template-columns: 100px 1fr; gap: 10px; :hover { transform: scale(1.1); }'><li style='color: yellow; border: 1px groove blue;'>Contact Us</li><li style='color: orange; border: 1px dashed black;'>Login</li><li style='color: blue; border: 1px solid purple;'>Choose Option</li><li style='color: purple; border: 1px groove blue;'>Submit</li><li style='color: orange; border: 1px groove blue;'>Sign Up</li></textarea> @keyframes slide-up { from { transform: translateY(100%); } to { transform: translateY(0); } }
475"A orange button with small Times New Roman text, using flex layout, aligned to the left, with none, slide-up, and a :hover { box-shadow: 0 0 10px rgba(0, 0, 0, 0.5); }.","<button style='background-color: green; font-size: 28px; font-family: Tahoma; display: grid; text-align: center; box-shadow: 4px 4px 10px rgba(0, 0, 0, 0.5); animation: fade-in 2s; transition: transform 0.2s ease-in-out; :hover { background-color: #555; color: white; }'>Submit</button> @keyframes spin { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }"
476"A responsive input with a grid layout using template 'repeat(3, 1fr)', containing items with medium text and :hover { box-shadow: 0 0 10px rgba(0, 0, 0, 0.5); }.","<h2 style='display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px; :hover { transform: scale(1.1); }'><li style='color: orange; border: 1px ridge gray;'>Click Me</li><li style='color: yellow; border: 1px dotted orange;'>Login</li><li style='color: white; border: 1px dotted black;'>Choose Option</li><li style='color: gray; border: 1px solid red;'>Sign Up</li><li style='color: purple; border: 1px dashed gray;'>Hello World</li></h2> @keyframes slide-up { from { transform: translateY(100%); } to { transform: translateY(0); } }"
477"A pink box with double border, linear-gradient(to bottom, blue, green) background, small text centered inside, using none layout, with :hover { background-color: #555; color: white; } and spin.","<div style='background: linear-gradient(to right, red, yellow); border: 2px dashed green; font-size: 26px; text-align: center; display: none; justify-content: flex-start; align-items: center; animation: bounce 2s; transition: all 0.3s ease; :hover { transform: scale(1.1); }'>Search</div> @keyframes fade-in { from { opacity: 0; } to { opacity: 1; } }"
478"A blue button with medium Times New Roman text, using grid layout, aligned to the justify, with none, bounce, and a :hover { box-shadow: 0 0 10px rgba(0, 0, 0, 0.5); }.","<button style='background-color: orange; font-size: 16px; font-family: Helvetica; display: inline-block; text-align: left; box-shadow: none; animation: bounce 2s; transition: transform 0.2s ease-in-out; :hover { transform: scale(1.1); }'>Enter Your Name</button> @keyframes bounce { 0%, 20%, 50%, 80%, 100% { transform: translateY(0); } 40% { transform: translateY(-30px); } 60% { transform: translateY(-15px); } }"
479"A responsive input 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); }.","<header 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: white; border: 1px groove white;'>Sign Up</li><li style='color: blue; border: 1px dashed pink;'>Sign Up</li><li style='color: black; border: 1px dotted orange;'>Submit</li><li style='color: green; border: 1px dashed red;'>Sign Up</li><li style='color: cyan; border: 1px ridge green;'>Login</li></header> @keyframes fade-in { from { opacity: 0; } to { opacity: 1; } }"
480"A orange box with solid border, linear-gradient(to bottom, blue, green) background, small text centered inside, using block layout, with :hover { transform: scale(1.1); } and spin.","<div style='background: linear-gradient(to bottom, blue, green); border: 2px groove cyan; font-size: 18px; text-align: center; display: flex; justify-content: center; align-items: center; animation: fade-in 2s; transition: all 0.3s ease; :hover { transform: scale(1.1); }'>Click Me</div> @keyframes fade-in { from { opacity: 0; } to { opacity: 1; } }"
481"A small div with pink text, Courier New font, none, and slide-up, displayed as inline-block with center, responsive with media queries.","<div style='color: cyan; font-size: 22px; font-family: Helvetica; box-shadow: 4px 4px 10px rgba(0, 0, 0, 0.5); display: block; justify-content: flex-start; animation: slide-up 2s; transition: transform 0.2s ease-in-out;'>Click Me</div> @keyframes slide-up { from { transform: translateY(100%); } to { transform: translateY(0); } } @media (min-width: 1200px) { font-size: 18px; }"
482"A textarea containing a yellow button with linear-gradient(to right, red, yellow) background that says 'Sign Up', followed by a small text description, with spin.","<textarea><button style='background-color: radial-gradient(circle, pink, purple); font-size: 16px; animation: fade-in 2s;'>Search</button><p style='font-size: 16px;'>choose option</p></textarea> @keyframes bounce { 0%, 20%, 50%, 80%, 100% { transform: translateY(0); } 40% { transform: translateY(-30px); } 60% { transform: translateY(-15px); } } transition: transform 0.2s ease-in-out;"
483"A input containing a list of options with gray text, each inside a double box, with 4px 4px 10px rgba(0, 0, 0, 0.5), fade-in, and @media (min-width: 1200px) { font-size: 18px; }.",<h1><ul style='box-shadow: none; animation: spin 1.5s;'><li style='color: purple; border: 1px ridge cyan;'>Enter Your Name</li><li style='color: purple; border: 1px ridge red;'>Click Me</li><li style='color: green; border: 1px double green;'>Sign Up</li><li style='color: blue; border: 1px groove purple;'>Submit</li><li style='color: black; border: 1px double yellow;'>Hello World</li></ul></h1> @keyframes spin { from { transform: rotate(0deg); } to { transform: rotate(360deg); } } @media (min-width: 600px) and (max-width: 1200px) { font-size: 16px; }
484"A pink box with solid border, radial-gradient(circle, pink, purple) background, small text centered inside, using inline-block layout, with :hover { background-color: #555; color: white; } and bounce.","<div style='background: radial-gradient(circle, pink, purple); border: 2px dotted white; font-size: 26px; text-align: center; display: inline-block; justify-content: space-between; align-items: center; animation: fade-in 2s; transition: all 0.3s ease; :hover { background-color: #555; color: white; }'>Submit</div> @keyframes spin { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }"
485"A responsive footer with a grid layout using template 'repeat(3, 1fr)', containing items with large text and :hover { transform: scale(1.1); }.",<textarea style='display: grid; grid-template-columns: 1fr 2fr; gap: 10px; :hover { background-color: #555; color: white; }'><li style='color: purple; border: 1px solid green;'>Contact Us</li><li style='color: cyan; border: 1px dotted red;'>Contact Us</li><li style='color: black; border: 1px double red;'>Enter Your Name</li><li style='color: orange; border: 1px groove blue;'>Enter Your Name</li><li style='color: cyan; border: 1px double cyan;'>Hello World</li></textarea> @keyframes spin { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }
486"A purple button with large Tahoma text, using none layout, aligned to the right, with 0 4px 8px rgba(0, 0, 0, 0.2), spin, and a :hover { transform: scale(1.1); }.","<button style='background-color: red; font-size: 28px; font-family: Arial; display: inline-block; text-align: justify; box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.3); animation: fade-in 2s; transition: transform 0.2s ease-in-out; :hover { transform: scale(1.1); }'>Contact Us</button> @keyframes bounce { 0%, 20%, 50%, 80%, 100% { transform: translateY(0); } 40% { transform: translateY(-30px); } 60% { transform: translateY(-15px); } }"
487"A h2 containing a list of options with orange text, each inside a solid box, with 4px 4px 10px rgba(0, 0, 0, 0.5), bounce, and @media (max-width: 600px) { font-size: 14px; }.","<h2><ul style='box-shadow: 4px 4px 10px rgba(0, 0, 0, 0.5); animation: fade-in 1.5s;'><li style='color: gray; border: 1px dashed cyan;'>Click Me</li><li style='color: red; border: 1px groove white;'>Choose Option</li><li style='color: purple; border: 1px ridge green;'>Login</li><li style='color: green; border: 1px groove yellow;'>Enter Your Name</li><li style='color: cyan; border: 1px ridge blue;'>Hello World</li></ul></h2> @keyframes bounce { 0%, 20%, 50%, 80%, 100% { transform: translateY(0); } 40% { transform: translateY(-30px); } 60% { transform: translateY(-15px); } } @media (min-width: 1200px) { font-size: 18px; }"
488"A red button with large Helvetica text, using flex layout, aligned to the justify, with 4px 4px 10px rgba(0, 0, 0, 0.5), fade-in, and a :hover { background-color: #555; color: white; }.","<button style='background-color: gray; font-size: 22px; font-family: Helvetica; display: grid; text-align: center; box-shadow: 4px 4px 10px rgba(0, 0, 0, 0.5); animation: fade-in 2s; transition: background-color 0.4s ease; :hover { transform: scale(1.1); }'>Enter Your Name</button> @keyframes fade-in { from { opacity: 0; } to { opacity: 1; } }"
489"A textarea containing a list of options with red text, each inside a groove box, with none, spin, and @media (min-width: 600px) and (max-width: 1200px) { font-size: 16px; }.","<p><ul style='box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); animation: bounce 1.5s;'><li style='color: yellow; border: 1px groove cyan;'>Login</li><li style='color: blue; border: 1px double blue;'>Submit</li><li style='color: gray; border: 1px dotted cyan;'>Sign Up</li><li style='color: pink; border: 1px dashed cyan;'>Click Me</li><li style='color: gray; border: 1px ridge gray;'>Sign Up</li></ul></p> @keyframes fade-in { from { opacity: 0; } to { opacity: 1; } } @media (max-width: 600px) { font-size: 14px; }"
490"A h1 containing a list of options with blue 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; }.","<select><ul style='box-shadow: 4px 4px 10px rgba(0, 0, 0, 0.5); animation: fade-in 1.5s;'><li style='color: white; border: 1px dashed purple;'>Enter Your Name</li><li style='color: red; border: 1px dashed red;'>Login</li><li style='color: white; border: 1px dotted black;'>Choose Option</li><li style='color: blue; border: 1px dotted orange;'>Sign Up</li><li style='color: red; border: 1px groove gray;'>Enter Your Name</li></ul></select> @keyframes fade-in { from { opacity: 0; } to { opacity: 1; } } @media (min-width: 600px) and (max-width: 1200px) { font-size: 16px; }"
491"A responsive h2 with a grid layout using template 'repeat(2, 1fr)', containing items with large text and :hover { background-color: #555; color: white; }.","<header style='display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; :hover { background-color: #555; color: white; }'><li style='color: blue; border: 1px ridge red;'>Click Me</li><li style='color: blue; border: 1px dotted gray;'>Hello World</li><li style='color: black; border: 1px solid red;'>Login</li><li style='color: red; border: 1px solid white;'>Click Me</li><li style='color: black; border: 1px solid orange;'>Contact Us</li></header> @keyframes fade-in { from { opacity: 0; } to { opacity: 1; } }"
492"A responsive h3 with a grid layout using template '1fr 2fr', containing items with medium text and :hover { transform: scale(1.1); }.","<input style='display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px; :hover { transform: scale(1.1); }'><li style='color: black; border: 1px ridge yellow;'>Choose Option</li><li style='color: orange; border: 1px ridge black;'>Enter Your Name</li><li style='color: gray; border: 1px double blue;'>Submit</li><li style='color: yellow; border: 1px double purple;'>Login</li><li style='color: black; border: 1px solid white;'>Sign Up</li></input> @keyframes slide-up { from { transform: translateY(100%); } to { transform: translateY(0); } }"
493"A input containing a cyan button with radial-gradient(circle, pink, purple) background that says 'Search', followed by a medium text description, with slide-up.","<span><button style='background-color: linear-gradient(to right, red, yellow); font-size: 16px; animation: slide-up 2s;'>Login</button><p style='font-size: 16px;'>login</p></span> @keyframes slide-up { from { transform: translateY(100%); } to { transform: translateY(0); } } transition: all 0.3s ease;"
494"A button containing a black button with linear-gradient(to bottom, blue, green) background that says 'Choose Option', followed by a small text description, with slide-up.","<input><button style='background-color: radial-gradient(circle, pink, purple); font-size: 20px; animation: spin 2s;'>Hello World</button><p style='font-size: 20px;'>click me</p></input> @keyframes bounce { 0%, 20%, 50%, 80%, 100% { transform: translateY(0); } 40% { transform: translateY(-30px); } 60% { transform: translateY(-15px); } } transition: all 0.3s ease;"
495"A h2 containing a list of options with yellow text, each inside a dashed box, with 0 4px 8px rgba(0, 0, 0, 0.2), fade-in, and @media (min-width: 600px) and (max-width: 1200px) { font-size: 16px; }.",<header><ul style='box-shadow: none; animation: spin 1.5s;'><li style='color: purple; border: 1px dashed gray;'>Submit</li><li style='color: yellow; border: 1px dashed red;'>Search</li><li style='color: cyan; border: 1px groove white;'>Contact Us</li><li style='color: pink; border: 1px double blue;'>Choose Option</li><li style='color: pink; border: 1px dotted white;'>Sign Up</li></ul></header> @keyframes slide-up { from { transform: translateY(100%); } to { transform: translateY(0); } } @media (min-width: 1200px) { font-size: 18px; }
496"A button containing a pink button with linear-gradient(to right, red, yellow) background that says 'Sign Up', followed by a small text description, with bounce.","<span><button style='background-color: radial-gradient(circle, pink, purple); font-size: 18px; animation: fade-in 2s;'>Search</button><p style='font-size: 18px;'>choose option</p></span> @keyframes fade-in { from { opacity: 0; } to { opacity: 1; } } transition: background-color 0.4s ease;"
497"A div containing a list of options with pink text, each inside a solid box, with 2px 2px 5px rgba(0, 0, 0, 0.3), fade-in, and @media (min-width: 1200px) { font-size: 18px; }.","<textarea><ul style='box-shadow: 4px 4px 10px rgba(0, 0, 0, 0.5); animation: fade-in 1.5s;'><li style='color: blue; border: 1px ridge black;'>Enter Your Name</li><li style='color: white; border: 1px ridge yellow;'>Enter Your Name</li><li style='color: orange; border: 1px groove pink;'>Contact Us</li><li style='color: orange; border: 1px dashed gray;'>Enter Your Name</li><li style='color: green; border: 1px solid white;'>Click Me</li></ul></textarea> @keyframes fade-in { from { opacity: 0; } to { opacity: 1; } } @media (max-width: 600px) { font-size: 14px; }"
498"A pink button with large Courier New text, using none layout, aligned to the justify, with 2px 2px 5px rgba(0, 0, 0, 0.3), fade-in, and a :hover { transform: scale(1.1); }.","<button style='background-color: white; font-size: 18px; font-family: Courier New; display: flex; text-align: justify; box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.3); animation: bounce 2s; transition: all 0.3s ease; :hover { transform: scale(1.1); }'>Hello World</button> @keyframes spin { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }"
499"A responsive select with a grid layout using template 'repeat(2, 1fr)', containing items with medium text and :hover { transform: scale(1.1); }.","<input style='display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px; :hover { box-shadow: 0 0 10px rgba(0, 0, 0, 0.5); }'><li style='color: green; border: 1px solid black;'>Sign Up</li><li style='color: purple; border: 1px groove red;'>Sign Up</li><li style='color: black; border: 1px solid pink;'>Submit</li><li style='color: blue; border: 1px dashed green;'>Login</li><li style='color: black; border: 1px ridge green;'>Choose Option</li></input> @keyframes bounce { 0%, 20%, 50%, 80%, 100% { transform: translateY(0); } 40% { transform: translateY(-30px); } 60% { transform: translateY(-15px); } }"
500"A span containing a purple button with radial-gradient(circle, pink, purple) background that says 'Submit', followed by a large text description, with slide-up.","<textarea><button style='background-color: radial-gradient(circle, pink, purple); font-size: 14px; animation: slide-up 2s;'>Login</button><p style='font-size: 14px;'>hello world</p></textarea> @keyframes slide-up { from { transform: translateY(100%); } to { transform: translateY(0); } } transition: all 0.3s ease;"
501"A responsive h2 with a grid layout using template 'repeat(3, 1fr)', containing items with large text and :hover { background-color: #555; color: white; }.",<button style='display: grid; grid-template-columns: 100px 1fr; gap: 10px; :hover { transform: scale(1.1); }'><li style='color: yellow; border: 1px dashed gray;'>Search</li><li style='color: orange; border: 1px dotted red;'>Sign Up</li><li style='color: red; border: 1px dotted cyan;'>Search</li><li style='color: cyan; border: 1px dashed pink;'>Search</li><li style='color: green; border: 1px groove orange;'>Submit</li></button> @keyframes slide-up { from { transform: translateY(100%); } to { transform: translateY(0); } }
502"A yellow button with medium Verdana text, using flex layout, aligned to the justify, with none, slide-up, and a :hover { box-shadow: 0 0 10px rgba(0, 0, 0, 0.5); }.","<button style='background-color: purple; font-size: 26px; font-family: Helvetica; display: grid; text-align: justify; box-shadow: 4px 4px 10px rgba(0, 0, 0, 0.5); animation: slide-up 2s; transition: background-color 0.4s ease; :hover { transform: scale(1.1); }'>Contact Us</button> @keyframes spin { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }"
503"A h3 containing a list of options with orange text, each inside a dashed box, with none, fade-in, and @media (max-width: 600px) { font-size: 14px; }.",<span><ul style='box-shadow: none; animation: spin 1.5s;'><li style='color: purple; border: 1px dotted white;'>Hello World</li><li style='color: gray; border: 1px dashed purple;'>Contact Us</li><li style='color: cyan; border: 1px dotted purple;'>Enter Your Name</li><li style='color: black; border: 1px dashed pink;'>Contact Us</li><li style='color: black; border: 1px dashed white;'>Click Me</li></ul></span> @keyframes fade-in { from { opacity: 0; } to { opacity: 1; } } @media (max-width: 600px) { font-size: 14px; }
504"A span containing a list of options with white text, each inside a dotted 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: none; animation: slide-up 1.5s;'><li style='color: blue; border: 1px double gray;'>Enter Your Name</li><li style='color: green; border: 1px ridge cyan;'>Contact Us</li><li style='color: blue; border: 1px double blue;'>Choose Option</li><li style='color: purple; border: 1px dashed blue;'>Contact Us</li><li style='color: cyan; border: 1px dotted yellow;'>Click Me</li></ul></select> @keyframes slide-up { from { transform: translateY(100%); } to { transform: translateY(0); } } @media (min-width: 600px) and (max-width: 1200px) { font-size: 16px; }
505"A h1 containing a white button with radial-gradient(circle, pink, purple) background that says 'Login', followed by a large text description, with slide-up.","<span><button style='background-color: linear-gradient(to right, red, yellow); font-size: 30px; animation: bounce 2s;'>Login</button><p style='font-size: 30px;'>submit</p></span> @keyframes bounce { 0%, 20%, 50%, 80%, 100% { transform: translateY(0); } 40% { transform: translateY(-30px); } 60% { transform: translateY(-15px); } } transition: transform 0.2s ease-in-out;"
506"A span containing a black button with radial-gradient(circle, pink, purple) background that says 'Choose Option', followed by a medium text description, with slide-up.","<h3><button style='background-color: linear-gradient(to bottom, blue, green); font-size: 16px; animation: spin 2s;'>Enter Your Name</button><p style='font-size: 16px;'>click me</p></h3> @keyframes fade-in { from { opacity: 0; } to { opacity: 1; } } transition: all 0.3s ease;"
507"A green button with medium Times New Roman text, using block layout, aligned to the right, with 2px 2px 5px rgba(0, 0, 0, 0.3), bounce, and a :hover { transform: scale(1.1); }.","<button style='background-color: white; font-size: 14px; font-family: Courier New; display: inline-block; text-align: justify; 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); }'>Choose Option</button> @keyframes bounce { 0%, 20%, 50%, 80%, 100% { transform: translateY(0); } 40% { transform: translateY(-30px); } 60% { transform: translateY(-15px); } }"
508"A small header with pink text, Georgia font, 0 4px 8px rgba(0, 0, 0, 0.2), and spin, displayed as none with flex-start, responsive with media queries.","<footer style='color: gray; font-size: 12px; font-family: Verdana; box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); display: block; justify-content: flex-end; animation: spin 2s; transition: all 0.3s ease;'>Login</footer> @keyframes bounce { 0%, 20%, 50%, 80%, 100% { transform: translateY(0); } 40% { transform: translateY(-30px); } 60% { transform: translateY(-15px); } } @media (min-width: 1200px) { font-size: 18px; }"
509"A responsive nav with a grid layout using template '100px 1fr', containing items with large text and :hover { background-color: #555; color: white; }.","<div style='display: grid; grid-template-columns: 100px 1fr; gap: 10px; :hover { transform: scale(1.1); }'><li style='color: red; border: 1px ridge yellow;'>Enter Your Name</li><li style='color: red; border: 1px solid blue;'>Click Me</li><li style='color: gray; border: 1px groove purple;'>Submit</li><li style='color: pink; border: 1px dotted pink;'>Enter Your Name</li><li style='color: white; border: 1px solid gray;'>Click Me</li></div> @keyframes bounce { 0%, 20%, 50%, 80%, 100% { transform: translateY(0); } 40% { transform: translateY(-30px); } 60% { transform: translateY(-15px); } }"
510"A white button with large Georgia text, using block layout, aligned to the center, with 4px 4px 10px rgba(0, 0, 0, 0.5), spin, and a :hover { transform: scale(1.1); }.","<button style='background-color: gray; font-size: 22px; font-family: Times New Roman; display: flex; text-align: right; box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.3); animation: fade-in 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 spin { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }"
511"A footer containing a list of options with red text, each inside a ridge 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: 2px 2px 5px rgba(0, 0, 0, 0.3); animation: bounce 1.5s;'><li style='color: red; border: 1px groove pink;'>Submit</li><li style='color: gray; border: 1px dotted pink;'>Enter Your Name</li><li style='color: orange; border: 1px double red;'>Login</li><li style='color: purple; border: 1px dashed white;'>Contact Us</li><li style='color: purple; border: 1px groove green;'>Hello World</li></ul></header> @keyframes fade-in { from { opacity: 0; } to { opacity: 1; } } @media (max-width: 600px) { font-size: 14px; }"
512"A medium select with black text, Tahoma font, 0 4px 8px rgba(0, 0, 0, 0.2), and spin, displayed as none with space-around, responsive with media queries.","<nav style='color: white; font-size: 12px; font-family: Georgia; box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.3); display: block; justify-content: space-between; animation: bounce 2s; transition: background-color 0.4s ease;'>Enter Your Name</nav> @keyframes slide-up { from { transform: translateY(100%); } to { transform: translateY(0); } } @media (max-width: 600px) { font-size: 14px; }"
513"A p containing a orange button with linear-gradient(to bottom, blue, green) background that says 'Click Me', followed by a medium text description, with bounce.","<h1><button style='background-color: radial-gradient(circle, pink, purple); font-size: 24px; animation: fade-in 2s;'>Hello World</button><p style='font-size: 24px;'>choose option</p></h1> @keyframes fade-in { from { opacity: 0; } to { opacity: 1; } } transition: transform 0.2s ease-in-out;"
514"A h2 containing a list of options with white text, each inside a solid box, with none, slide-up, and @media (min-width: 600px) and (max-width: 1200px) { font-size: 16px; }.","<footer><ul style='box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.3); animation: fade-in 1.5s;'><li style='color: red; border: 1px solid black;'>Enter Your Name</li><li style='color: green; border: 1px groove orange;'>Login</li><li style='color: cyan; border: 1px groove cyan;'>Hello World</li><li style='color: orange; border: 1px ridge pink;'>Contact Us</li><li style='color: cyan; border: 1px groove blue;'>Search</li></ul></footer> @keyframes fade-in { from { opacity: 0; } to { opacity: 1; } } @media (max-width: 600px) { font-size: 14px; }"
515"A red button with medium Times New Roman text, using flex layout, aligned to the left, with 0 4px 8px rgba(0, 0, 0, 0.2), slide-up, and a :hover { box-shadow: 0 0 10px rgba(0, 0, 0, 0.5); }.",<button style='background-color: green; font-size: 16px; font-family: Courier New; display: inline-block; text-align: right; box-shadow: none; animation: fade-in 2s; transition: transform 0.2s ease-in-out; :hover { transform: scale(1.1); }'>Login</button> @keyframes slide-up { from { transform: translateY(100%); } to { transform: translateY(0); } }
516"A textarea containing a white button with linear-gradient(to bottom, blue, green) background that says 'Login', followed by a small text description, with slide-up.","<p><button style='background-color: radial-gradient(circle, pink, purple); font-size: 26px; animation: bounce 2s;'>Search</button><p style='font-size: 26px;'>click me</p></p> @keyframes bounce { 0%, 20%, 50%, 80%, 100% { transform: translateY(0); } 40% { transform: translateY(-30px); } 60% { transform: translateY(-15px); } } transition: background-color 0.4s ease;"
517"A h3 containing a list of options with white text, each inside a ridge box, with 4px 4px 10px rgba(0, 0, 0, 0.5), bounce, and @media (min-width: 600px) and (max-width: 1200px) { font-size: 16px; }.","<header><ul style='box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); animation: slide-up 1.5s;'><li style='color: purple; border: 1px ridge yellow;'>Search</li><li style='color: white; border: 1px solid orange;'>Login</li><li style='color: cyan; border: 1px groove white;'>Choose Option</li><li style='color: cyan; border: 1px dotted purple;'>Contact Us</li><li style='color: gray; border: 1px dotted yellow;'>Sign Up</li></ul></header> @keyframes spin { from { transform: rotate(0deg); } to { transform: rotate(360deg); } } @media (min-width: 1200px) { font-size: 18px; }"
518"A footer containing a white button with linear-gradient(to bottom, blue, green) background that says 'Click Me', followed by a small text description, with bounce.","<h3><button style='background-color: linear-gradient(to right, red, yellow); font-size: 22px; animation: bounce 2s;'>Search</button><p style='font-size: 22px;'>enter your name</p></h3> @keyframes fade-in { from { opacity: 0; } to { opacity: 1; } } transition: transform 0.2s ease-in-out;"
519"A small textarea with yellow text, Georgia font, 4px 4px 10px rgba(0, 0, 0, 0.5), and spin, displayed as grid with center, responsive with media queries.","<footer style='color: yellow; font-size: 26px; font-family: Georgia; box-shadow: 4px 4px 10px rgba(0, 0, 0, 0.5); display: none; justify-content: center; animation: fade-in 2s; transition: background-color 0.4s ease;'>Submit</footer> @keyframes fade-in { from { opacity: 0; } to { opacity: 1; } } @media (min-width: 600px) and (max-width: 1200px) { font-size: 16px; }"
520"A footer containing a list of options with black text, each inside a groove box, with none, fade-in, and @media (max-width: 600px) { font-size: 14px; }.",<h1><ul style='box-shadow: none; animation: slide-up 1.5s;'><li style='color: yellow; border: 1px dotted cyan;'>Submit</li><li style='color: yellow; border: 1px double green;'>Click Me</li><li style='color: orange; border: 1px groove purple;'>Search</li><li style='color: blue; border: 1px groove red;'>Contact Us</li><li style='color: green; border: 1px dotted yellow;'>Hello World</li></ul></h1> @keyframes fade-in { from { opacity: 0; } to { opacity: 1; } } @media (min-width: 1200px) { font-size: 18px; }
521"A textarea containing a list of options with blue text, each inside a dotted box, with 4px 4px 10px rgba(0, 0, 0, 0.5), bounce, and @media (min-width: 600px) and (max-width: 1200px) { font-size: 16px; }.","<textarea><ul style='box-shadow: 4px 4px 10px rgba(0, 0, 0, 0.5); animation: fade-in 1.5s;'><li style='color: black; border: 1px dotted purple;'>Hello World</li><li style='color: purple; border: 1px dotted purple;'>Submit</li><li style='color: white; border: 1px ridge black;'>Enter Your Name</li><li style='color: orange; border: 1px solid purple;'>Sign Up</li><li style='color: blue; border: 1px groove red;'>Sign Up</li></ul></textarea> @keyframes bounce { 0%, 20%, 50%, 80%, 100% { transform: translateY(0); } 40% { transform: translateY(-30px); } 60% { transform: translateY(-15px); } } @media (min-width: 1200px) { font-size: 18px; }"
522"A select containing a yellow button with radial-gradient(circle, pink, purple) background that says 'Choose Option', followed by a large text description, with spin.","<select><button style='background-color: linear-gradient(to right, red, yellow); font-size: 30px; animation: slide-up 2s;'>Login</button><p style='font-size: 30px;'>click me</p></select> @keyframes bounce { 0%, 20%, 50%, 80%, 100% { transform: translateY(0); } 40% { transform: translateY(-30px); } 60% { transform: translateY(-15px); } } transition: all 0.3s ease;"
523"A red box with double border, radial-gradient(circle, pink, purple) background, small text centered inside, using flex layout, with :hover { transform: scale(1.1); } and spin.","<div style='background: linear-gradient(to right, red, yellow); border: 2px dotted orange; font-size: 28px; text-align: center; display: block; justify-content: space-between; align-items: center; animation: spin 2s; transition: background-color 0.4s ease; :hover { transform: scale(1.1); }'>Sign Up</div> @keyframes fade-in { from { opacity: 0; } to { opacity: 1; } }"
524"A responsive select with a grid layout using template 'repeat(2, 1fr)', containing items with large text and :hover { background-color: #555; color: white; }.","<input style='display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; :hover { transform: scale(1.1); }'><li style='color: pink; border: 1px solid green;'>Login</li><li style='color: white; border: 1px dashed white;'>Hello World</li><li style='color: blue; border: 1px groove purple;'>Search</li><li style='color: blue; border: 1px groove yellow;'>Submit</li><li style='color: white; border: 1px dashed blue;'>Enter Your Name</li></input> @keyframes bounce { 0%, 20%, 50%, 80%, 100% { transform: translateY(0); } 40% { transform: translateY(-30px); } 60% { transform: translateY(-15px); } }"
525"A select containing a white button with linear-gradient(to bottom, blue, green) background that says 'Contact Us', followed by a large text description, with fade-in.","<span><button style='background-color: linear-gradient(to bottom, blue, green); font-size: 12px; animation: fade-in 2s;'>Submit</button><p style='font-size: 12px;'>contact us</p></span> @keyframes fade-in { from { opacity: 0; } to { opacity: 1; } } transition: all 0.3s ease;"
526"A textarea containing a gray button with radial-gradient(circle, pink, purple) background that says 'Hello World', followed by a medium text description, with spin.","<header><button style='background-color: radial-gradient(circle, pink, purple); font-size: 28px; animation: bounce 2s;'>Login</button><p style='font-size: 28px;'>click me</p></header> @keyframes bounce { 0%, 20%, 50%, 80%, 100% { transform: translateY(0); } 40% { transform: translateY(-30px); } 60% { transform: translateY(-15px); } } transition: all 0.3s ease;"
527"A responsive h1 with a grid layout using template 'repeat(3, 1fr)', containing items with small text and :hover { transform: scale(1.1); }.","<button style='display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; :hover { transform: scale(1.1); }'><li style='color: yellow; border: 1px dashed black;'>Choose Option</li><li style='color: pink; border: 1px double yellow;'>Hello World</li><li style='color: gray; border: 1px dotted white;'>Choose Option</li><li style='color: purple; border: 1px solid red;'>Contact Us</li><li style='color: pink; border: 1px groove purple;'>Contact Us</li></button> @keyframes spin { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }"
528"A responsive button with a grid layout using template 'repeat(3, 1fr)', containing items with medium text and :hover { background-color: #555; color: white; }.","<nav style='display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; :hover { background-color: #555; color: white; }'><li style='color: purple; border: 1px dashed white;'>Sign Up</li><li style='color: cyan; border: 1px solid green;'>Login</li><li style='color: red; border: 1px groove gray;'>Choose Option</li><li style='color: yellow; border: 1px double blue;'>Click Me</li><li style='color: cyan; border: 1px groove cyan;'>Choose Option</li></nav> @keyframes bounce { 0%, 20%, 50%, 80%, 100% { transform: translateY(0); } 40% { transform: translateY(-30px); } 60% { transform: translateY(-15px); } }"
529"A small h3 with white text, Arial font, 4px 4px 10px rgba(0, 0, 0, 0.5), and spin, displayed as grid with flex-end, responsive with media queries.","<select style='color: yellow; font-size: 24px; font-family: Times New Roman; box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.3); display: none; justify-content: space-around; animation: fade-in 2s; transition: transform 0.2s ease-in-out;'>Click Me</select> @keyframes fade-in { from { opacity: 0; } to { opacity: 1; } } @media (max-width: 600px) { font-size: 14px; }"
530"A large span with yellow text, Arial font, none, and spin, displayed as block with flex-start, responsive with media queries.","<span style='color: purple; font-size: 26px; font-family: Georgia; box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); display: block; justify-content: space-between; animation: bounce 2s; transition: all 0.3s ease;'>Sign Up</span> @keyframes slide-up { from { transform: translateY(100%); } to { transform: translateY(0); } } @media (min-width: 1200px) { font-size: 18px; }"
531"A responsive button with a grid layout using template 'repeat(2, 1fr)', containing items with large text and :hover { background-color: #555; color: white; }.",<button style='display: grid; grid-template-columns: 1fr 2fr; gap: 10px; :hover { background-color: #555; color: white; }'><li style='color: white; border: 1px dashed purple;'>Choose Option</li><li style='color: pink; border: 1px dotted purple;'>Search</li><li style='color: purple; border: 1px double black;'>Enter Your Name</li><li style='color: pink; border: 1px solid cyan;'>Login</li><li style='color: yellow; border: 1px double red;'>Choose Option</li></button> @keyframes spin { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }
532"A div containing a list of options with orange text, each inside a dotted box, with 2px 2px 5px rgba(0, 0, 0, 0.3), spin, and @media (max-width: 600px) { font-size: 14px; }.","<select><ul style='box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); animation: slide-up 1.5s;'><li style='color: pink; border: 1px dashed red;'>Hello World</li><li style='color: white; border: 1px ridge black;'>Contact Us</li><li style='color: blue; border: 1px double cyan;'>Hello World</li><li style='color: black; border: 1px double white;'>Enter Your Name</li><li style='color: gray; border: 1px ridge black;'>Contact Us</li></ul></select> @keyframes bounce { 0%, 20%, 50%, 80%, 100% { transform: translateY(0); } 40% { transform: translateY(-30px); } 60% { transform: translateY(-15px); } } @media (max-width: 600px) { font-size: 14px; }"
533"A button containing a orange button with radial-gradient(circle, pink, purple) background that says 'Choose Option', followed by a medium text description, with bounce.","<textarea><button style='background-color: linear-gradient(to right, red, yellow); font-size: 12px; animation: slide-up 2s;'>Sign Up</button><p style='font-size: 12px;'>search</p></textarea> @keyframes slide-up { from { transform: translateY(100%); } to { transform: translateY(0); } } transition: transform 0.2s ease-in-out;"
534"A textarea containing a purple button with linear-gradient(to bottom, blue, green) background that says 'Search', followed by a medium text description, with bounce.","<h3><button style='background-color: linear-gradient(to bottom, blue, green); font-size: 28px; animation: spin 2s;'>Enter Your Name</button><p style='font-size: 28px;'>hello world</p></h3> @keyframes fade-in { from { opacity: 0; } to { opacity: 1; } } transition: transform 0.2s ease-in-out;"
535"A pink box with double border, linear-gradient(to bottom, blue, green) background, medium text centered inside, using none layout, with :hover { transform: scale(1.1); } and fade-in.","<div style='background: linear-gradient(to right, red, yellow); border: 2px groove pink; font-size: 22px; text-align: center; display: block; justify-content: flex-start; align-items: center; animation: spin 2s; transition: transform 0.2s ease-in-out; :hover { transform: scale(1.1); }'>Sign Up</div> @keyframes slide-up { from { transform: translateY(100%); } to { transform: translateY(0); } }"
536"A purple button with large Tahoma text, using none layout, aligned to the right, with none, spin, and a :hover { transform: scale(1.1); }.","<button style='background-color: white; font-size: 24px; font-family: Arial; display: none; text-align: right; box-shadow: 4px 4px 10px rgba(0, 0, 0, 0.5); animation: bounce 2s; transition: all 0.3s ease; :hover { box-shadow: 0 0 10px rgba(0, 0, 0, 0.5); }'>Choose Option</button> @keyframes spin { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }"
537"A cyan box with dotted border, radial-gradient(circle, pink, purple) background, large text centered inside, using grid 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 solid green; font-size: 30px; text-align: center; display: grid; justify-content: flex-end; 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); }'>Login</div> @keyframes bounce { 0%, 20%, 50%, 80%, 100% { transform: translateY(0); } 40% { transform: translateY(-30px); } 60% { transform: translateY(-15px); } }"
538"A small h2 with orange text, Times New Roman font, 0 4px 8px rgba(0, 0, 0, 0.2), and spin, displayed as flex with space-between, responsive with media queries.","<button style='color: white; font-size: 20px; font-family: Tahoma; box-shadow: 4px 4px 10px rgba(0, 0, 0, 0.5); display: none; justify-content: space-around; animation: fade-in 2s; transition: all 0.3s ease;'>Submit</button> @keyframes slide-up { from { transform: translateY(100%); } to { transform: translateY(0); } } @media (min-width: 600px) and (max-width: 1200px) { font-size: 16px; }"
539"A yellow button with small Verdana text, using inline-block layout, aligned to the left, with 4px 4px 10px rgba(0, 0, 0, 0.5), fade-in, and a :hover { transform: scale(1.1); }.","<button style='background-color: pink; font-size: 28px; font-family: Tahoma; display: grid; text-align: right; box-shadow: none; animation: slide-up 2s; transition: transform 0.2s ease-in-out; :hover { box-shadow: 0 0 10px rgba(0, 0, 0, 0.5); }'>Submit</button> @keyframes spin { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }"
540"A h2 containing a blue button with linear-gradient(to right, red, yellow) background that says 'Submit', followed by a large text description, with fade-in.","<textarea><button style='background-color: linear-gradient(to right, red, yellow); font-size: 16px; animation: spin 2s;'>Search</button><p style='font-size: 16px;'>submit</p></textarea> @keyframes slide-up { from { transform: translateY(100%); } to { transform: translateY(0); } } transition: background-color 0.4s ease;"
541"A green box with double border, radial-gradient(circle, pink, purple) background, large text centered inside, using grid layout, with :hover { box-shadow: 0 0 10px rgba(0, 0, 0, 0.5); } and slide-up.","<div style='background: linear-gradient(to bottom, blue, green); border: 2px solid blue; font-size: 12px; text-align: center; display: inline-block; justify-content: center; align-items: center; animation: spin 2s; transition: all 0.3s ease; :hover { background-color: #555; color: white; }'>Login</div> @keyframes spin { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }"
542"A white box with double border, linear-gradient(to bottom, blue, green) background, large text centered inside, using grid layout, with :hover { transform: scale(1.1); } and fade-in.","<div style='background: radial-gradient(circle, pink, purple); border: 2px solid gray; font-size: 18px; text-align: center; display: none; justify-content: space-around; align-items: center; animation: spin 2s; transition: transform 0.2s ease-in-out; :hover { box-shadow: 0 0 10px rgba(0, 0, 0, 0.5); }'>Enter Your Name</div> @keyframes spin { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }"
543"A responsive h1 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); }.","<header 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: orange; border: 1px dotted green;'>Login</li><li style='color: cyan; border: 1px dashed blue;'>Choose Option</li><li style='color: white; border: 1px ridge gray;'>Contact Us</li><li style='color: purple; border: 1px dotted green;'>Contact Us</li><li style='color: red; border: 1px double black;'>Search</li></header> @keyframes bounce { 0%, 20%, 50%, 80%, 100% { transform: translateY(0); } 40% { transform: translateY(-30px); } 60% { transform: translateY(-15px); } }"
544"A red box with solid border, linear-gradient(to bottom, blue, green) background, large text centered inside, using block layout, with :hover { box-shadow: 0 0 10px rgba(0, 0, 0, 0.5); } and slide-up.","<div style='background: linear-gradient(to bottom, blue, green); border: 2px dashed cyan; font-size: 24px; text-align: center; display: block; justify-content: flex-start; align-items: center; animation: fade-in 2s; transition: background-color 0.4s ease; :hover { transform: scale(1.1); }'>Enter Your Name</div> @keyframes slide-up { from { transform: translateY(100%); } to { transform: translateY(0); } }"
545"A gray box with groove border, linear-gradient(to right, red, yellow) background, small text centered inside, using grid layout, with :hover { transform: scale(1.1); } and fade-in.","<div style='background: linear-gradient(to bottom, blue, green); border: 2px ridge gray; font-size: 30px; text-align: center; display: flex; justify-content: flex-end; align-items: center; animation: spin 2s; transition: all 0.3s ease; :hover { background-color: #555; color: white; }'>Click Me</div> @keyframes bounce { 0%, 20%, 50%, 80%, 100% { transform: translateY(0); } 40% { transform: translateY(-30px); } 60% { transform: translateY(-15px); } }"
546"A responsive span with a grid layout using template 'repeat(2, 1fr)', containing items with medium text and :hover { transform: scale(1.1); }.","<h3 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: red; border: 1px ridge purple;'>Search</li><li style='color: pink; border: 1px double orange;'>Submit</li><li style='color: purple; border: 1px solid pink;'>Click Me</li><li style='color: cyan; border: 1px dotted orange;'>Search</li><li style='color: red; border: 1px ridge purple;'>Choose Option</li></h3> @keyframes fade-in { from { opacity: 0; } to { opacity: 1; } }"
547"A h1 containing a blue button with linear-gradient(to bottom, blue, green) background that says 'Click Me', followed by a small text description, with bounce.","<h2><button style='background-color: linear-gradient(to bottom, blue, green); font-size: 30px; animation: spin 2s;'>Submit</button><p style='font-size: 30px;'>submit</p></h2> @keyframes slide-up { from { transform: translateY(100%); } to { transform: translateY(0); } } transition: all 0.3s ease;"
548"A header containing a green button with radial-gradient(circle, pink, purple) background that says 'Hello World', followed by a small text description, with spin.","<input><button style='background-color: linear-gradient(to bottom, blue, green); font-size: 18px; animation: fade-in 2s;'>Enter Your Name</button><p style='font-size: 18px;'>sign up</p></input> @keyframes spin { from { transform: rotate(0deg); } to { transform: rotate(360deg); } } transition: transform 0.2s ease-in-out;"
549"A h2 containing a list of options with gray 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; }.",<footer><ul style='box-shadow: none; animation: spin 1.5s;'><li style='color: cyan; border: 1px solid yellow;'>Login</li><li style='color: blue; border: 1px solid red;'>Submit</li><li style='color: cyan; border: 1px solid blue;'>Submit</li><li style='color: pink; border: 1px double orange;'>Choose Option</li><li style='color: gray; border: 1px dotted yellow;'>Search</li></ul></footer> @keyframes spin { from { transform: rotate(0deg); } to { transform: rotate(360deg); } } @media (min-width: 1200px) { font-size: 18px; }
550"A div containing a list of options with orange text, each inside a ridge box, with 2px 2px 5px rgba(0, 0, 0, 0.3), spin, and @media (min-width: 600px) and (max-width: 1200px) { font-size: 16px; }.","<h2><ul style='box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.3); animation: fade-in 1.5s;'><li style='color: black; border: 1px solid cyan;'>Hello World</li><li style='color: pink; border: 1px double cyan;'>Sign Up</li><li style='color: blue; border: 1px dashed orange;'>Login</li><li style='color: pink; border: 1px dashed white;'>Enter Your Name</li><li style='color: gray; border: 1px double yellow;'>Login</li></ul></h2> @keyframes fade-in { from { opacity: 0; } to { opacity: 1; } } @media (max-width: 600px) { font-size: 14px; }"
551"A span containing a red button with linear-gradient(to right, red, yellow) background that says 'Enter Your Name', followed by a medium text description, with slide-up.","<nav><button style='background-color: linear-gradient(to bottom, blue, green); font-size: 26px; animation: spin 2s;'>Contact Us</button><p style='font-size: 26px;'>enter your name</p></nav> @keyframes bounce { 0%, 20%, 50%, 80%, 100% { transform: translateY(0); } 40% { transform: translateY(-30px); } 60% { transform: translateY(-15px); } } transition: all 0.3s ease;"
552"A p containing a black button with radial-gradient(circle, pink, purple) background that says 'Sign Up', followed by a small text description, with spin.","<div><button style='background-color: linear-gradient(to right, red, yellow); font-size: 30px; animation: bounce 2s;'>Click Me</button><p style='font-size: 30px;'>click me</p></div> @keyframes spin { from { transform: rotate(0deg); } to { transform: rotate(360deg); } } transition: all 0.3s ease;"
553"A large footer with cyan text, Courier New font, 4px 4px 10px rgba(0, 0, 0, 0.5), and bounce, displayed as grid with space-around, responsive with media queries.","<div style='color: purple; font-size: 12px; font-family: Helvetica; box-shadow: 4px 4px 10px rgba(0, 0, 0, 0.5); display: inline-block; justify-content: space-around; animation: slide-up 2s; transition: background-color 0.4s ease;'>Submit</div> @keyframes fade-in { from { opacity: 0; } to { opacity: 1; } } @media (min-width: 600px) and (max-width: 1200px) { font-size: 16px; }"
554"A small h1 with blue text, Tahoma font, 4px 4px 10px rgba(0, 0, 0, 0.5), and slide-up, displayed as grid with flex-start, responsive with media queries.","<nav style='color: red; font-size: 12px; font-family: Helvetica; box-shadow: 4px 4px 10px rgba(0, 0, 0, 0.5); display: block; justify-content: flex-start; animation: spin 2s; transition: transform 0.2s ease-in-out;'>Search</nav> @keyframes spin { from { transform: rotate(0deg); } to { transform: rotate(360deg); } } @media (max-width: 600px) { font-size: 14px; }"
555"A div containing a yellow button with linear-gradient(to bottom, blue, green) background that says 'Choose Option', followed by a small text description, with spin.","<input><button style='background-color: linear-gradient(to bottom, blue, green); font-size: 18px; animation: slide-up 2s;'>Search</button><p style='font-size: 18px;'>choose option</p></input> @keyframes slide-up { from { transform: translateY(100%); } to { transform: translateY(0); } } transition: transform 0.2s ease-in-out;"
556"A p containing a list of options with white text, each inside a dotted box, with none, slide-up, and @media (max-width: 600px) { font-size: 14px; }.","<h3><ul style='box-shadow: 4px 4px 10px rgba(0, 0, 0, 0.5); animation: spin 1.5s;'><li style='color: pink; border: 1px solid white;'>Choose Option</li><li style='color: pink; border: 1px dotted cyan;'>Contact Us</li><li style='color: red; border: 1px groove pink;'>Enter Your Name</li><li style='color: pink; border: 1px dotted green;'>Login</li><li style='color: blue; border: 1px solid gray;'>Submit</li></ul></h3> @keyframes slide-up { from { transform: translateY(100%); } to { transform: translateY(0); } } @media (min-width: 1200px) { font-size: 18px; }"
557"A responsive header with a grid layout using template '1fr 2fr', containing items with small text and :hover { box-shadow: 0 0 10px rgba(0, 0, 0, 0.5); }.",<span style='display: grid; grid-template-columns: 100px 1fr; gap: 10px; :hover { transform: scale(1.1); }'><li style='color: orange; border: 1px solid pink;'>Submit</li><li style='color: gray; border: 1px solid cyan;'>Enter Your Name</li><li style='color: purple; border: 1px solid gray;'>Submit</li><li style='color: purple; border: 1px dotted white;'>Sign Up</li><li style='color: blue; border: 1px ridge red;'>Sign Up</li></span> @keyframes spin { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }
558"A responsive h1 with a grid layout using template 'repeat(3, 1fr)', containing items with large text and :hover { background-color: #555; color: white; }.","<p style='display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px; :hover { box-shadow: 0 0 10px rgba(0, 0, 0, 0.5); }'><li style='color: red; border: 1px ridge pink;'>Enter Your Name</li><li style='color: green; border: 1px dashed pink;'>Search</li><li style='color: black; border: 1px dotted orange;'>Choose Option</li><li style='color: orange; border: 1px groove green;'>Login</li><li style='color: white; border: 1px ridge pink;'>Sign Up</li></p> @keyframes spin { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }"
559"A black box with solid border, linear-gradient(to right, red, yellow) background, medium text centered inside, using flex layout, with :hover { box-shadow: 0 0 10px rgba(0, 0, 0, 0.5); } and bounce.","<div style='background: radial-gradient(circle, pink, purple); border: 2px dotted white; font-size: 28px; text-align: center; display: flex; 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); }'>Contact Us</div> @keyframes fade-in { from { opacity: 0; } to { opacity: 1; } }"
560"A cyan button with medium Courier New text, using block layout, aligned to the center, with 0 4px 8px rgba(0, 0, 0, 0.2), fade-in, and a :hover { background-color: #555; color: white; }.","<button style='background-color: green; font-size: 24px; font-family: Times New Roman; display: inline-block; text-align: justify; box-shadow: 4px 4px 10px rgba(0, 0, 0, 0.5); animation: fade-in 2s; transition: background-color 0.4s ease; :hover { box-shadow: 0 0 10px rgba(0, 0, 0, 0.5); }'>Submit</button> @keyframes fade-in { from { opacity: 0; } to { opacity: 1; } }"
561"A h2 containing a yellow button with linear-gradient(to right, red, yellow) background that says 'Contact Us', followed by a medium text description, with spin.","<footer><button style='background-color: linear-gradient(to bottom, blue, green); font-size: 14px; animation: fade-in 2s;'>Enter Your Name</button><p style='font-size: 14px;'>login</p></footer> @keyframes spin { from { transform: rotate(0deg); } to { transform: rotate(360deg); } } transition: background-color 0.4s ease;"
562"A small h2 with orange text, Helvetica font, 0 4px 8px rgba(0, 0, 0, 0.2), and bounce, displayed as inline-block with center, responsive with media queries.","<nav style='color: yellow; font-size: 30px; font-family: Arial; box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); display: inline-block; justify-content: flex-end; animation: slide-up 2s; transition: all 0.3s ease;'>Enter Your Name</nav> @keyframes fade-in { from { opacity: 0; } to { opacity: 1; } } @media (max-width: 600px) { font-size: 14px; }"
563"A red button with medium Verdana text, using none layout, aligned to the justify, with 2px 2px 5px rgba(0, 0, 0, 0.3), slide-up, and a :hover { background-color: #555; color: white; }.","<button style='background-color: blue; font-size: 22px; font-family: Courier New; display: none; text-align: justify; box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.3); animation: bounce 2s; transition: all 0.3s ease; :hover { background-color: #555; color: white; }'>Search</button> @keyframes slide-up { from { transform: translateY(100%); } to { transform: translateY(0); } }"
564"A cyan button with small Times New Roman text, using grid layout, aligned to the right, with none, bounce, and a :hover { background-color: #555; color: white; }.","<button style='background-color: white; font-size: 24px; font-family: Courier New; display: inline-block; text-align: center; box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.3); animation: fade-in 2s; transition: background-color 0.4s ease; :hover { box-shadow: 0 0 10px rgba(0, 0, 0, 0.5); }'>Choose Option</button> @keyframes bounce { 0%, 20%, 50%, 80%, 100% { transform: translateY(0); } 40% { transform: translateY(-30px); } 60% { transform: translateY(-15px); } }"
565"A select containing a yellow button with linear-gradient(to right, red, yellow) background that says 'Sign Up', followed by a large text description, with spin.","<h2><button style='background-color: linear-gradient(to bottom, blue, green); font-size: 24px; animation: fade-in 2s;'>Hello World</button><p style='font-size: 24px;'>hello world</p></h2> @keyframes slide-up { from { transform: translateY(100%); } to { transform: translateY(0); } } transition: all 0.3s ease;"
566"A nav containing a white button with linear-gradient(to right, red, yellow) background that says 'Sign Up', followed by a medium text description, with bounce.","<p><button style='background-color: linear-gradient(to bottom, blue, green); font-size: 28px; animation: fade-in 2s;'>Contact Us</button><p style='font-size: 28px;'>click me</p></p> @keyframes slide-up { from { transform: translateY(100%); } to { transform: translateY(0); } } transition: transform 0.2s ease-in-out;"
567"A responsive span with a grid layout using template '1fr 2fr', containing items with medium text and :hover { background-color: #555; color: white; }.","<nav 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: pink; border: 1px ridge purple;'>Contact Us</li><li style='color: black; border: 1px solid gray;'>Contact Us</li><li style='color: purple; border: 1px dotted black;'>Choose Option</li><li style='color: gray; border: 1px groove pink;'>Choose Option</li><li style='color: white; border: 1px solid orange;'>Submit</li></nav> @keyframes spin { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }"
568"A large h2 with green text, Tahoma font, 0 4px 8px rgba(0, 0, 0, 0.2), and fade-in, displayed as inline-block with space-between, responsive with media queries.",<select style='color: cyan; font-size: 26px; font-family: Tahoma; box-shadow: none; display: flex; justify-content: space-between; animation: slide-up 2s; transition: transform 0.2s ease-in-out;'>Search</select> @keyframes fade-in { from { opacity: 0; } to { opacity: 1; } } @media (max-width: 600px) { font-size: 14px; }
569"A orange box with double border, linear-gradient(to bottom, blue, green) background, medium text centered inside, using flex layout, with :hover { box-shadow: 0 0 10px rgba(0, 0, 0, 0.5); } and slide-up.","<div style='background: linear-gradient(to bottom, blue, green); border: 2px ridge purple; font-size: 20px; 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); }'>Click Me</div> @keyframes bounce { 0%, 20%, 50%, 80%, 100% { transform: translateY(0); } 40% { transform: translateY(-30px); } 60% { transform: translateY(-15px); } }"
570"A gray button with large Courier New text, using none layout, aligned to the right, with 2px 2px 5px rgba(0, 0, 0, 0.3), fade-in, and a :hover { transform: scale(1.1); }.","<button style='background-color: pink; font-size: 20px; font-family: Verdana; display: flex; text-align: right; box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); animation: slide-up 2s; transition: transform 0.2s ease-in-out; :hover { transform: scale(1.1); }'>Enter Your Name</button> @keyframes bounce { 0%, 20%, 50%, 80%, 100% { transform: translateY(0); } 40% { transform: translateY(-30px); } 60% { transform: translateY(-15px); } }"
571"A cyan box with double border, linear-gradient(to bottom, blue, green) background, medium text centered inside, using flex layout, with :hover { background-color: #555; color: white; } and bounce.","<div style='background: linear-gradient(to right, red, yellow); border: 2px dotted gray; font-size: 16px; text-align: center; display: grid; justify-content: flex-end; align-items: center; animation: fade-in 2s; transition: transform 0.2s ease-in-out; :hover { background-color: #555; color: white; }'>Hello World</div> @keyframes slide-up { from { transform: translateY(100%); } to { transform: translateY(0); } }"
572"A green box with dotted border, linear-gradient(to bottom, blue, green) background, small text centered inside, using block layout, with :hover { transform: scale(1.1); } and spin.","<div style='background: radial-gradient(circle, pink, purple); border: 2px dashed green; font-size: 18px; text-align: center; display: flex; justify-content: flex-end; align-items: center; animation: fade-in 2s; transition: background-color 0.4s ease; :hover { box-shadow: 0 0 10px rgba(0, 0, 0, 0.5); }'>Choose Option</div> @keyframes fade-in { from { opacity: 0; } to { opacity: 1; } }"
573"A responsive select 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); }.","<div style='display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px; :hover { background-color: #555; color: white; }'><li style='color: orange; border: 1px solid red;'>Search</li><li style='color: black; border: 1px double green;'>Search</li><li style='color: gray; border: 1px solid yellow;'>Submit</li><li style='color: yellow; border: 1px dotted gray;'>Hello World</li><li style='color: black; border: 1px solid white;'>Submit</li></div> @keyframes fade-in { from { opacity: 0; } to { opacity: 1; } }"
574"A span containing a pink button with linear-gradient(to right, red, yellow) background that says 'Contact Us', followed by a large text description, with fade-in.","<input><button style='background-color: linear-gradient(to right, red, yellow); font-size: 20px; animation: slide-up 2s;'>Enter Your Name</button><p style='font-size: 20px;'>hello world</p></input> @keyframes slide-up { from { transform: translateY(100%); } to { transform: translateY(0); } } transition: transform 0.2s ease-in-out;"
575"A pink button with small Times New Roman text, using none layout, aligned to the center, with 0 4px 8px rgba(0, 0, 0, 0.2), slide-up, and a :hover { transform: scale(1.1); }.","<button style='background-color: red; font-size: 16px; font-family: Arial; display: grid; text-align: right; box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); animation: spin 2s; transition: background-color 0.4s ease; :hover { transform: scale(1.1); }'>Submit</button> @keyframes spin { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }"
576"A responsive textarea with a grid layout using template 'repeat(2, 1fr)', containing items with large text and :hover { transform: scale(1.1); }.","<nav style='display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; :hover { transform: scale(1.1); }'><li style='color: black; border: 1px ridge red;'>Login</li><li style='color: white; border: 1px double pink;'>Login</li><li style='color: cyan; border: 1px solid purple;'>Sign Up</li><li style='color: orange; border: 1px double green;'>Choose Option</li><li style='color: black; border: 1px dotted white;'>Choose Option</li></nav> @keyframes spin { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }"
577"A green button with large Helvetica text, using flex layout, aligned to the right, with 0 4px 8px rgba(0, 0, 0, 0.2), slide-up, and a :hover { box-shadow: 0 0 10px rgba(0, 0, 0, 0.5); }.","<button style='background-color: white; font-size: 16px; font-family: Courier New; display: flex; text-align: center; box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); animation: slide-up 2s; transition: all 0.3s ease; :hover { transform: scale(1.1); }'>Search</button> @keyframes bounce { 0%, 20%, 50%, 80%, 100% { transform: translateY(0); } 40% { transform: translateY(-30px); } 60% { transform: translateY(-15px); } }"
578"A red box with dashed 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 fade-in.","<div style='background: linear-gradient(to right, red, yellow); border: 2px dashed orange; font-size: 30px; text-align: center; display: block; justify-content: space-around; align-items: center; animation: slide-up 2s; transition: background-color 0.4s ease; :hover { box-shadow: 0 0 10px rgba(0, 0, 0, 0.5); }'>Sign Up</div> @keyframes slide-up { from { transform: translateY(100%); } to { transform: translateY(0); } }"
579"A select containing a blue button with linear-gradient(to right, red, yellow) background that says 'Enter Your Name', followed by a small text description, with bounce.","<footer><button style='background-color: linear-gradient(to right, red, yellow); font-size: 16px; animation: spin 2s;'>Sign Up</button><p style='font-size: 16px;'>click me</p></footer> @keyframes slide-up { from { transform: translateY(100%); } to { transform: translateY(0); } } transition: background-color 0.4s ease;"
580"A medium footer with orange text, Georgia font, 4px 4px 10px rgba(0, 0, 0, 0.5), and fade-in, displayed as none with center, responsive with media queries.","<h3 style='color: orange; font-size: 16px; font-family: Verdana; box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.3); display: inline-block; justify-content: flex-start; animation: bounce 2s; transition: transform 0.2s ease-in-out;'>Choose Option</h3> @keyframes slide-up { from { transform: translateY(100%); } to { transform: translateY(0); } } @media (max-width: 600px) { font-size: 14px; }"
581"A large span with cyan text, Times New Roman font, 0 4px 8px rgba(0, 0, 0, 0.2), and spin, displayed as none with flex-end, responsive with media queries.","<header style='color: red; font-size: 22px; font-family: Times New Roman; box-shadow: 4px 4px 10px rgba(0, 0, 0, 0.5); display: inline-block; justify-content: space-around; animation: bounce 2s; transition: transform 0.2s ease-in-out;'>Hello World</header> @keyframes slide-up { from { transform: translateY(100%); } to { transform: translateY(0); } } @media (min-width: 600px) and (max-width: 1200px) { font-size: 16px; }"
582"A large nav with green text, Helvetica font, 4px 4px 10px rgba(0, 0, 0, 0.5), and fade-in, displayed as none with space-between, responsive with media queries.",<div style='color: gray; font-size: 14px; font-family: Times New Roman; box-shadow: none; display: flex; justify-content: space-around; animation: bounce 2s; transition: background-color 0.4s ease;'>Enter Your Name</div> @keyframes slide-up { from { transform: translateY(100%); } to { transform: translateY(0); } } @media (max-width: 600px) { font-size: 14px; }
583"A nav containing a blue button with linear-gradient(to right, red, yellow) background that says 'Hello World', followed by a medium text description, with slide-up.","<div><button style='background-color: radial-gradient(circle, pink, purple); font-size: 18px; animation: fade-in 2s;'>Click Me</button><p style='font-size: 18px;'>submit</p></div> @keyframes spin { from { transform: rotate(0deg); } to { transform: rotate(360deg); } } transition: transform 0.2s ease-in-out;"
584"A select containing a blue button with radial-gradient(circle, pink, purple) background that says 'Hello World', followed by a medium text description, with slide-up.","<div><button style='background-color: linear-gradient(to bottom, blue, green); font-size: 26px; animation: slide-up 2s;'>Sign Up</button><p style='font-size: 26px;'>login</p></div> @keyframes spin { from { transform: rotate(0deg); } to { transform: rotate(360deg); } } transition: transform 0.2s ease-in-out;"
585"A green box with double border, linear-gradient(to right, red, yellow) background, small text centered inside, using block layout, with :hover { box-shadow: 0 0 10px rgba(0, 0, 0, 0.5); } and bounce.","<div style='background: radial-gradient(circle, pink, purple); border: 2px double orange; font-size: 26px; text-align: center; display: block; justify-content: space-around; align-items: center; animation: bounce 2s; transition: background-color 0.4s ease; :hover { transform: scale(1.1); }'>Hello World</div> @keyframes spin { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }"
586"A h1 containing a list of options with cyan text, each inside a dotted box, with none, fade-in, and @media (min-width: 600px) and (max-width: 1200px) { font-size: 16px; }.",<span><ul style='box-shadow: none; animation: fade-in 1.5s;'><li style='color: purple; border: 1px solid gray;'>Choose Option</li><li style='color: red; border: 1px dashed black;'>Search</li><li style='color: pink; border: 1px groove blue;'>Click Me</li><li style='color: yellow; border: 1px solid white;'>Choose Option</li><li style='color: blue; border: 1px groove yellow;'>Hello World</li></ul></span> @keyframes fade-in { from { opacity: 0; } to { opacity: 1; } } @media (min-width: 1200px) { font-size: 18px; }
587"A red box with double border, linear-gradient(to right, red, yellow) background, large text centered inside, using flex layout, with :hover { transform: scale(1.1); } and spin.","<div style='background: linear-gradient(to bottom, blue, green); border: 2px solid orange; font-size: 28px; text-align: center; display: flex; justify-content: space-between; align-items: center; animation: fade-in 2s; transition: background-color 0.4s ease; :hover { transform: scale(1.1); }'>Search</div> @keyframes slide-up { from { transform: translateY(100%); } to { transform: translateY(0); } }"
588"A h2 containing a list of options with gray text, each inside a solid box, with 4px 4px 10px rgba(0, 0, 0, 0.5), spin, and @media (max-width: 600px) { font-size: 14px; }.","<input><ul style='box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.3); animation: fade-in 1.5s;'><li style='color: purple; border: 1px ridge cyan;'>Click Me</li><li style='color: cyan; border: 1px double pink;'>Submit</li><li style='color: purple; border: 1px solid blue;'>Click Me</li><li style='color: red; border: 1px dashed red;'>Click Me</li><li style='color: green; border: 1px groove purple;'>Sign Up</li></ul></input> @keyframes fade-in { from { opacity: 0; } to { opacity: 1; } } @media (min-width: 1200px) { font-size: 18px; }"
589"A responsive textarea with a grid layout using template 'repeat(3, 1fr)', containing items with medium text and :hover { background-color: #555; color: white; }.","<header 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: purple; border: 1px dotted blue;'>Choose Option</li><li style='color: white; border: 1px dashed gray;'>Contact Us</li><li style='color: blue; border: 1px dotted white;'>Hello World</li><li style='color: green; border: 1px dashed red;'>Choose Option</li><li style='color: orange; border: 1px ridge white;'>Click Me</li></header> @keyframes fade-in { from { opacity: 0; } to { opacity: 1; } }"
590"A responsive header 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: 1fr 2fr; gap: 10px; :hover { box-shadow: 0 0 10px rgba(0, 0, 0, 0.5); }'><li style='color: cyan; border: 1px solid gray;'>Choose Option</li><li style='color: white; border: 1px dotted white;'>Choose Option</li><li style='color: black; border: 1px dashed cyan;'>Login</li><li style='color: black; border: 1px groove pink;'>Submit</li><li style='color: orange; border: 1px dashed red;'>Hello World</li></h3> @keyframes spin { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }"
591"A blue box with double border, radial-gradient(circle, pink, purple) background, small text centered inside, using flex layout, with :hover { box-shadow: 0 0 10px rgba(0, 0, 0, 0.5); } and bounce.","<div style='background: linear-gradient(to bottom, blue, green); border: 2px solid blue; font-size: 28px; text-align: center; display: block; justify-content: space-between; align-items: center; animation: bounce 2s; transition: background-color 0.4s ease; :hover { box-shadow: 0 0 10px rgba(0, 0, 0, 0.5); }'>Search</div> @keyframes fade-in { from { opacity: 0; } to { opacity: 1; } }"
592"A white box with ridge border, linear-gradient(to right, red, yellow) background, medium text centered inside, using block layout, with :hover { background-color: #555; color: white; } and fade-in.","<div style='background: radial-gradient(circle, pink, purple); border: 2px ridge orange; font-size: 26px; text-align: center; display: none; justify-content: flex-end; align-items: center; animation: slide-up 2s; transition: background-color 0.4s ease; :hover { transform: scale(1.1); }'>Enter Your Name</div> @keyframes spin { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }"
593"A yellow button with large Georgia text, using inline-block layout, aligned to the right, with 2px 2px 5px rgba(0, 0, 0, 0.3), fade-in, and a :hover { transform: scale(1.1); }.","<button style='background-color: pink; font-size: 30px; font-family: Courier New; display: grid; text-align: left; box-shadow: 4px 4px 10px rgba(0, 0, 0, 0.5); animation: spin 2s; transition: background-color 0.4s ease; :hover { box-shadow: 0 0 10px rgba(0, 0, 0, 0.5); }'>Sign Up</button> @keyframes fade-in { from { opacity: 0; } to { opacity: 1; } }"
594"A gray box with double border, linear-gradient(to right, red, yellow) background, small text centered inside, using inline-block layout, with :hover { transform: scale(1.1); } and slide-up.","<div style='background: linear-gradient(to right, red, yellow); border: 2px groove pink; font-size: 16px; text-align: center; display: grid; justify-content: space-between; align-items: center; animation: fade-in 2s; transition: transform 0.2s ease-in-out; :hover { background-color: #555; color: white; }'>Click Me</div> @keyframes bounce { 0%, 20%, 50%, 80%, 100% { transform: translateY(0); } 40% { transform: translateY(-30px); } 60% { transform: translateY(-15px); } }"
595"A div containing a pink button with linear-gradient(to right, red, yellow) background that says 'Click Me', followed by a large text description, with slide-up.","<button><button style='background-color: linear-gradient(to right, red, yellow); font-size: 14px; animation: bounce 2s;'>Choose Option</button><p style='font-size: 14px;'>login</p></button> @keyframes slide-up { from { transform: translateY(100%); } to { transform: translateY(0); } } transition: transform 0.2s ease-in-out;"
596"A input containing a yellow button with linear-gradient(to bottom, blue, green) background that says 'Enter Your Name', followed by a large text description, with slide-up.","<nav><button style='background-color: radial-gradient(circle, pink, purple); font-size: 16px; animation: fade-in 2s;'>Sign Up</button><p style='font-size: 16px;'>login</p></nav> @keyframes bounce { 0%, 20%, 50%, 80%, 100% { transform: translateY(0); } 40% { transform: translateY(-30px); } 60% { transform: translateY(-15px); } } transition: all 0.3s ease;"
597"A responsive select with a grid layout using template 'repeat(3, 1fr)', containing items with medium text and :hover { background-color: #555; color: white; }.","<header style='display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; :hover { transform: scale(1.1); }'><li style='color: pink; border: 1px dashed black;'>Sign Up</li><li style='color: black; border: 1px ridge purple;'>Contact Us</li><li style='color: purple; border: 1px ridge gray;'>Login</li><li style='color: black; border: 1px ridge black;'>Enter Your Name</li><li style='color: purple; border: 1px ridge cyan;'>Search</li></header> @keyframes spin { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }"
598"A responsive div with a grid layout using template '100px 1fr', containing items with large text and :hover { box-shadow: 0 0 10px rgba(0, 0, 0, 0.5); }.","<select style='display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px; :hover { transform: scale(1.1); }'><li style='color: red; border: 1px ridge pink;'>Choose Option</li><li style='color: green; border: 1px ridge purple;'>Click Me</li><li style='color: yellow; border: 1px double blue;'>Login</li><li style='color: green; border: 1px solid pink;'>Sign Up</li><li style='color: gray; border: 1px ridge gray;'>Click Me</li></select> @keyframes bounce { 0%, 20%, 50%, 80%, 100% { transform: translateY(0); } 40% { transform: translateY(-30px); } 60% { transform: translateY(-15px); } }"
599"A pink box with dotted border, radial-gradient(circle, pink, purple) background, large text centered inside, using flex layout, with :hover { transform: scale(1.1); } and bounce.","<div style='background: linear-gradient(to bottom, blue, green); border: 2px groove red; font-size: 28px; text-align: center; display: flex; justify-content: space-around; align-items: center; animation: fade-in 2s; transition: background-color 0.4s ease; :hover { transform: scale(1.1); }'>Choose Option</div> @keyframes slide-up { from { transform: translateY(100%); } to { transform: translateY(0); } }"
600"A select containing a list of options with purple text, each inside a double box, with 2px 2px 5px rgba(0, 0, 0, 0.3), bounce, and @media (max-width: 600px) { font-size: 14px; }.","<button><ul style='box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); animation: bounce 1.5s;'><li style='color: green; border: 1px ridge red;'>Contact Us</li><li style='color: cyan; border: 1px ridge green;'>Hello World</li><li style='color: white; border: 1px ridge red;'>Login</li><li style='color: yellow; border: 1px solid orange;'>Search</li><li style='color: gray; border: 1px dotted white;'>Hello World</li></ul></button> @keyframes slide-up { from { transform: translateY(100%); } to { transform: translateY(0); } } @media (min-width: 1200px) { font-size: 18px; }"
601"A textarea containing a yellow button with radial-gradient(circle, pink, purple) background that says 'Submit', followed by a small text description, with fade-in.","<h1><button style='background-color: linear-gradient(to right, red, yellow); font-size: 12px; animation: bounce 2s;'>Submit</button><p style='font-size: 12px;'>sign up</p></h1> @keyframes fade-in { from { opacity: 0; } to { opacity: 1; } } transition: all 0.3s ease;"
602"A large h3 with pink text, Verdana font, none, and fade-in, displayed as block with center, responsive with media queries.","<button style='color: white; font-size: 18px; font-family: Helvetica; box-shadow: 4px 4px 10px rgba(0, 0, 0, 0.5); display: none; justify-content: flex-end; animation: slide-up 2s; transition: transform 0.2s ease-in-out;'>Submit</button> @keyframes spin { from { transform: rotate(0deg); } to { transform: rotate(360deg); } } @media (min-width: 600px) and (max-width: 1200px) { font-size: 16px; }"
603"A responsive p with a grid layout using template '100px 1fr', containing items with large text and :hover { transform: scale(1.1); }.",<input style='display: grid; grid-template-columns: 1fr 2fr; gap: 10px; :hover { transform: scale(1.1); }'><li style='color: cyan; border: 1px dotted red;'>Enter Your Name</li><li style='color: white; border: 1px dashed pink;'>Search</li><li style='color: orange; border: 1px solid white;'>Sign Up</li><li style='color: gray; border: 1px ridge green;'>Login</li><li style='color: green; border: 1px dashed blue;'>Choose Option</li></input> @keyframes slide-up { from { transform: translateY(100%); } to { transform: translateY(0); } }
604"A small p with gray text, Helvetica font, 2px 2px 5px rgba(0, 0, 0, 0.3), and spin, displayed as none with center, responsive with media queries.","<input style='color: red; font-size: 20px; font-family: Times New Roman; box-shadow: none; display: inline-block; justify-content: flex-start; animation: slide-up 2s; transition: transform 0.2s ease-in-out;'>Choose Option</input> @keyframes bounce { 0%, 20%, 50%, 80%, 100% { transform: translateY(0); } 40% { transform: translateY(-30px); } 60% { transform: translateY(-15px); } } @media (max-width: 600px) { font-size: 14px; }"
605"A green box with ridge border, linear-gradient(to right, red, yellow) background, large text centered inside, using block layout, with :hover { box-shadow: 0 0 10px rgba(0, 0, 0, 0.5); } and bounce.","<div style='background: linear-gradient(to bottom, blue, green); border: 2px solid yellow; font-size: 16px; text-align: center; display: block; justify-content: space-around; align-items: center; animation: bounce 2s; transition: all 0.3s ease; :hover { background-color: #555; color: white; }'>Search</div> @keyframes spin { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }"
606"A div containing a list of options with cyan text, each inside a dashed box, with 4px 4px 10px rgba(0, 0, 0, 0.5), fade-in, and @media (min-width: 600px) and (max-width: 1200px) { font-size: 16px; }.","<footer><ul style='box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.3); animation: fade-in 1.5s;'><li style='color: blue; border: 1px double red;'>Hello World</li><li style='color: black; border: 1px groove yellow;'>Submit</li><li style='color: gray; border: 1px ridge orange;'>Hello World</li><li style='color: purple; border: 1px groove white;'>Sign Up</li><li style='color: gray; border: 1px double green;'>Contact Us</li></ul></footer> @keyframes spin { from { transform: rotate(0deg); } to { transform: rotate(360deg); } } @media (min-width: 1200px) { font-size: 18px; }"
607"A blue box with dashed border, linear-gradient(to right, red, yellow) background, medium text centered inside, using flex layout, with :hover { box-shadow: 0 0 10px rgba(0, 0, 0, 0.5); } and bounce.","<div style='background: linear-gradient(to bottom, blue, green); border: 2px double green; font-size: 28px; text-align: center; display: flex; justify-content: space-between; 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); }'>Sign Up</div> @keyframes bounce { 0%, 20%, 50%, 80%, 100% { transform: translateY(0); } 40% { transform: translateY(-30px); } 60% { transform: translateY(-15px); } }"
608"A gray button with small Verdana text, using block layout, aligned to the right, with none, fade-in, and a :hover { background-color: #555; color: white; }.","<button style='background-color: gray; font-size: 26px; font-family: Helvetica; display: flex; text-align: center; box-shadow: none; animation: slide-up 2s; transition: background-color 0.4s ease; :hover { background-color: #555; color: white; }'>Login</button> @keyframes bounce { 0%, 20%, 50%, 80%, 100% { transform: translateY(0); } 40% { transform: translateY(-30px); } 60% { transform: translateY(-15px); } }"
609"A input containing a white button with linear-gradient(to right, red, yellow) background that says 'Enter Your Name', followed by a medium text description, with slide-up.","<select><button style='background-color: radial-gradient(circle, pink, purple); font-size: 30px; animation: spin 2s;'>Contact Us</button><p style='font-size: 30px;'>choose option</p></select> @keyframes bounce { 0%, 20%, 50%, 80%, 100% { transform: translateY(0); } 40% { transform: translateY(-30px); } 60% { transform: translateY(-15px); } } transition: background-color 0.4s ease;"
610"A h1 containing a list of options with orange text, each inside a dashed box, with 2px 2px 5px rgba(0, 0, 0, 0.3), fade-in, and @media (min-width: 600px) and (max-width: 1200px) { font-size: 16px; }.","<footer><ul style='box-shadow: 4px 4px 10px rgba(0, 0, 0, 0.5); animation: fade-in 1.5s;'><li style='color: orange; border: 1px double orange;'>Login</li><li style='color: yellow; border: 1px dashed yellow;'>Submit</li><li style='color: red; border: 1px solid purple;'>Enter Your Name</li><li style='color: pink; border: 1px dashed cyan;'>Login</li><li style='color: orange; border: 1px dashed cyan;'>Choose Option</li></ul></footer> @keyframes bounce { 0%, 20%, 50%, 80%, 100% { transform: translateY(0); } 40% { transform: translateY(-30px); } 60% { transform: translateY(-15px); } } @media (min-width: 1200px) { font-size: 18px; }"
611"A span containing a list of options with white text, each inside a dotted box, with 0 4px 8px rgba(0, 0, 0, 0.2), fade-in, and @media (min-width: 600px) and (max-width: 1200px) { font-size: 16px; }.","<h3><ul style='box-shadow: 4px 4px 10px rgba(0, 0, 0, 0.5); animation: bounce 1.5s;'><li style='color: purple; border: 1px solid gray;'>Contact Us</li><li style='color: pink; border: 1px ridge purple;'>Search</li><li style='color: yellow; border: 1px double green;'>Search</li><li style='color: cyan; border: 1px groove white;'>Enter Your Name</li><li style='color: yellow; border: 1px double purple;'>Submit</li></ul></h3> @keyframes spin { from { transform: rotate(0deg); } to { transform: rotate(360deg); } } @media (min-width: 1200px) { font-size: 18px; }"
612"A header containing a blue button with linear-gradient(to bottom, blue, green) background that says 'Login', followed by a medium text description, with spin.","<button><button style='background-color: linear-gradient(to right, red, yellow); font-size: 24px; animation: fade-in 2s;'>Enter Your Name</button><p style='font-size: 24px;'>contact us</p></button> @keyframes spin { from { transform: rotate(0deg); } to { transform: rotate(360deg); } } transition: background-color 0.4s ease;"
613"A white button with large Verdana text, using block layout, aligned to the right, with none, spin, and a :hover { box-shadow: 0 0 10px rgba(0, 0, 0, 0.5); }.","<button style='background-color: orange; font-size: 16px; font-family: Times New Roman; display: flex; text-align: center; box-shadow: 4px 4px 10px rgba(0, 0, 0, 0.5); animation: bounce 2s; transition: background-color 0.4s ease; :hover { box-shadow: 0 0 10px rgba(0, 0, 0, 0.5); }'>Sign Up</button> @keyframes slide-up { from { transform: translateY(100%); } to { transform: translateY(0); } }"
614"A select containing a cyan button with radial-gradient(circle, pink, purple) background that says 'Contact Us', followed by a large text description, with slide-up.","<h2><button style='background-color: linear-gradient(to bottom, blue, green); font-size: 18px; animation: spin 2s;'>Hello World</button><p style='font-size: 18px;'>contact us</p></h2> @keyframes slide-up { from { transform: translateY(100%); } to { transform: translateY(0); } } transition: background-color 0.4s ease;"
615"A footer containing a list of options with white text, each inside a ridge box, with none, fade-in, and @media (max-width: 600px) { font-size: 14px; }.","<h1><ul style='box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); animation: bounce 1.5s;'><li style='color: blue; border: 1px dashed purple;'>Click Me</li><li style='color: pink; border: 1px double yellow;'>Search</li><li style='color: black; border: 1px solid green;'>Hello World</li><li style='color: gray; border: 1px solid white;'>Sign Up</li><li style='color: white; border: 1px groove pink;'>Submit</li></ul></h1> @keyframes fade-in { from { opacity: 0; } to { opacity: 1; } } @media (min-width: 600px) and (max-width: 1200px) { font-size: 16px; }"
616"A orange button with large Tahoma text, using inline-block layout, aligned to the left, with 4px 4px 10px rgba(0, 0, 0, 0.5), spin, and a :hover { transform: scale(1.1); }.",<button style='background-color: cyan; font-size: 24px; font-family: Georgia; display: flex; text-align: left; box-shadow: none; animation: bounce 2s; transition: background-color 0.4s ease; :hover { background-color: #555; color: white; }'>Choose Option</button> @keyframes spin { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }
617"A responsive span with a grid layout using template '100px 1fr', containing items with medium text and :hover { transform: scale(1.1); }.","<textarea 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: purple; border: 1px double white;'>Hello World</li><li style='color: orange; border: 1px double orange;'>Enter Your Name</li><li style='color: black; border: 1px groove purple;'>Contact Us</li><li style='color: gray; border: 1px ridge pink;'>Login</li><li style='color: purple; border: 1px solid gray;'>Search</li></textarea> @keyframes slide-up { from { transform: translateY(100%); } to { transform: translateY(0); } }"
618"A gray button with small Times New Roman text, using inline-block layout, aligned to the left, with 0 4px 8px rgba(0, 0, 0, 0.2), fade-in, and a :hover { transform: scale(1.1); }.",<button style='background-color: blue; font-size: 20px; font-family: Tahoma; display: grid; text-align: center; box-shadow: none; animation: slide-up 2s; transition: transform 0.2s ease-in-out; :hover { background-color: #555; color: white; }'>Choose Option</button> @keyframes fade-in { from { opacity: 0; } to { opacity: 1; } }
619"A medium footer with white text, Courier New font, 4px 4px 10px rgba(0, 0, 0, 0.5), and bounce, displayed as none with flex-start, responsive with media queries.","<select style='color: red; font-size: 20px; font-family: Courier New; box-shadow: 4px 4px 10px rgba(0, 0, 0, 0.5); display: flex; justify-content: space-between; animation: fade-in 2s; transition: background-color 0.4s ease;'>Contact Us</select> @keyframes spin { from { transform: rotate(0deg); } to { transform: rotate(360deg); } } @media (min-width: 600px) and (max-width: 1200px) { font-size: 16px; }"
620"A p containing a cyan button with radial-gradient(circle, pink, purple) background that says 'Search', followed by a large text description, with spin.","<span><button style='background-color: linear-gradient(to right, red, yellow); font-size: 26px; animation: bounce 2s;'>Click Me</button><p style='font-size: 26px;'>search</p></span> @keyframes slide-up { from { transform: translateY(100%); } to { transform: translateY(0); } } transition: background-color 0.4s ease;"
621"A medium select with blue text, Tahoma font, 0 4px 8px rgba(0, 0, 0, 0.2), and bounce, displayed as none with space-around, responsive with media queries.","<div style='color: orange; font-size: 12px; font-family: Helvetica; box-shadow: 4px 4px 10px rgba(0, 0, 0, 0.5); display: block; justify-content: center; animation: bounce 2s; transition: background-color 0.4s ease;'>Login</div> @keyframes slide-up { from { transform: translateY(100%); } to { transform: translateY(0); } } @media (max-width: 600px) { font-size: 14px; }"
622"A large input with orange text, Georgia font, 2px 2px 5px rgba(0, 0, 0, 0.3), and spin, displayed as flex with space-around, responsive with media queries.","<div style='color: purple; font-size: 12px; font-family: Arial; box-shadow: 4px 4px 10px rgba(0, 0, 0, 0.5); display: grid; justify-content: flex-end; animation: bounce 2s; transition: background-color 0.4s ease;'>Enter Your Name</div> @keyframes slide-up { from { transform: translateY(100%); } to { transform: translateY(0); } } @media (max-width: 600px) { font-size: 14px; }"
623"A purple button with small Arial text, using inline-block layout, aligned to the left, with 4px 4px 10px rgba(0, 0, 0, 0.5), spin, and a :hover { background-color: #555; color: white; }.","<button style='background-color: gray; font-size: 12px; font-family: Courier New; display: block; text-align: right; box-shadow: 4px 4px 10px rgba(0, 0, 0, 0.5); animation: slide-up 2s; transition: background-color 0.4s ease; :hover { transform: scale(1.1); }'>Sign Up</button> @keyframes fade-in { from { opacity: 0; } to { opacity: 1; } }"
624"A white button with small Tahoma text, using grid layout, aligned to the center, with 0 4px 8px rgba(0, 0, 0, 0.2), bounce, and a :hover { background-color: #555; color: white; }.",<button style='background-color: pink; font-size: 24px; font-family: Helvetica; display: block; text-align: left; box-shadow: none; animation: bounce 2s; transition: background-color 0.4s ease; :hover { transform: scale(1.1); }'>Submit</button> @keyframes spin { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }
625"A span containing a pink button with linear-gradient(to bottom, blue, green) background that says 'Contact Us', followed by a small text description, with bounce.","<header><button style='background-color: radial-gradient(circle, pink, purple); font-size: 22px; animation: fade-in 2s;'>Hello World</button><p style='font-size: 22px;'>submit</p></header> @keyframes slide-up { from { transform: translateY(100%); } to { transform: translateY(0); } } transition: all 0.3s ease;"
626"A h2 containing a list of options with purple text, each inside a ridge box, with 0 4px 8px rgba(0, 0, 0, 0.2), fade-in, and @media (max-width: 600px) { font-size: 14px; }.","<input><ul style='box-shadow: 4px 4px 10px rgba(0, 0, 0, 0.5); animation: bounce 1.5s;'><li style='color: white; border: 1px dashed white;'>Search</li><li style='color: yellow; border: 1px double gray;'>Hello World</li><li style='color: black; border: 1px dashed blue;'>Enter Your Name</li><li style='color: black; border: 1px solid blue;'>Submit</li><li style='color: cyan; border: 1px double pink;'>Choose Option</li></ul></input> @keyframes fade-in { from { opacity: 0; } to { opacity: 1; } } @media (max-width: 600px) { font-size: 14px; }"
627"A black button with medium Helvetica text, using none layout, aligned to the left, with 0 4px 8px rgba(0, 0, 0, 0.2), fade-in, and a :hover { box-shadow: 0 0 10px rgba(0, 0, 0, 0.5); }.","<button style='background-color: yellow; font-size: 14px; font-family: Courier New; display: flex; text-align: right; box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.3); animation: bounce 2s; transition: background-color 0.4s ease; :hover { box-shadow: 0 0 10px rgba(0, 0, 0, 0.5); }'>Search</button> @keyframes slide-up { from { transform: translateY(100%); } to { transform: translateY(0); } }"
628"A small h2 with blue text, Arial font, 2px 2px 5px rgba(0, 0, 0, 0.3), and fade-in, displayed as block with space-between, responsive with media queries.","<input style='color: red; font-size: 24px; font-family: Helvetica; box-shadow: 4px 4px 10px rgba(0, 0, 0, 0.5); display: none; justify-content: space-between; animation: spin 2s; transition: background-color 0.4s ease;'>Choose Option</input> @keyframes slide-up { from { transform: translateY(100%); } to { transform: translateY(0); } } @media (min-width: 1200px) { font-size: 18px; }"
629"A green button with medium Tahoma text, using grid layout, aligned to the left, with 2px 2px 5px rgba(0, 0, 0, 0.3), slide-up, and a :hover { box-shadow: 0 0 10px rgba(0, 0, 0, 0.5); }.","<button style='background-color: orange; font-size: 24px; font-family: Courier New; display: grid; text-align: center; box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.3); animation: spin 2s; transition: all 0.3s ease; :hover { box-shadow: 0 0 10px rgba(0, 0, 0, 0.5); }'>Hello World</button> @keyframes fade-in { from { opacity: 0; } to { opacity: 1; } }"
630"A h3 containing a list of options with black text, each inside a double box, with 0 4px 8px rgba(0, 0, 0, 0.2), fade-in, and @media (max-width: 600px) { font-size: 14px; }.","<select><ul style='box-shadow: 4px 4px 10px rgba(0, 0, 0, 0.5); animation: fade-in 1.5s;'><li style='color: green; border: 1px solid purple;'>Search</li><li style='color: pink; border: 1px dashed orange;'>Enter Your Name</li><li style='color: orange; border: 1px groove red;'>Login</li><li style='color: gray; border: 1px dotted pink;'>Contact Us</li><li style='color: white; border: 1px dashed white;'>Choose Option</li></ul></select> @keyframes spin { from { transform: rotate(0deg); } to { transform: rotate(360deg); } } @media (min-width: 600px) and (max-width: 1200px) { font-size: 16px; }"
631"A responsive p with a grid layout using template '100px 1fr', containing items with medium text and :hover { transform: scale(1.1); }.","<p style='display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; :hover { transform: scale(1.1); }'><li style='color: pink; border: 1px groove orange;'>Contact Us</li><li style='color: green; border: 1px solid cyan;'>Submit</li><li style='color: green; border: 1px ridge black;'>Sign Up</li><li style='color: pink; border: 1px groove pink;'>Hello World</li><li style='color: orange; border: 1px dotted cyan;'>Login</li></p> @keyframes slide-up { from { transform: translateY(100%); } to { transform: translateY(0); } }"
632"A pink box with dashed border, radial-gradient(circle, pink, purple) background, small text centered inside, using inline-block layout, with :hover { box-shadow: 0 0 10px rgba(0, 0, 0, 0.5); } and spin.","<div style='background: linear-gradient(to right, red, yellow); border: 2px solid red; font-size: 26px; text-align: center; display: block; justify-content: flex-start; align-items: center; animation: fade-in 2s; transition: background-color 0.4s ease; :hover { box-shadow: 0 0 10px rgba(0, 0, 0, 0.5); }'>Login</div> @keyframes spin { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }"
633"A responsive h3 with a grid layout using template '100px 1fr', containing items with small text and :hover { background-color: #555; color: white; }.","<input style='display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; :hover { background-color: #555; color: white; }'><li style='color: green; border: 1px groove orange;'>Contact Us</li><li style='color: white; border: 1px groove red;'>Submit</li><li style='color: yellow; border: 1px dotted blue;'>Contact Us</li><li style='color: orange; border: 1px groove blue;'>Enter Your Name</li><li style='color: green; border: 1px ridge cyan;'>Hello World</li></input> @keyframes slide-up { from { transform: translateY(100%); } to { transform: translateY(0); } }"
634"A responsive span 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: repeat(2, 1fr); gap: 10px; :hover { box-shadow: 0 0 10px rgba(0, 0, 0, 0.5); }'><li style='color: black; border: 1px ridge white;'>Search</li><li style='color: red; border: 1px ridge white;'>Click Me</li><li style='color: white; border: 1px dashed red;'>Contact Us</li><li style='color: purple; border: 1px solid red;'>Hello World</li><li style='color: pink; border: 1px dotted blue;'>Hello World</li></input> @keyframes fade-in { from { opacity: 0; } to { opacity: 1; } }"
635"A responsive h3 with a grid layout using template '1fr 2fr', containing items with small text and :hover { transform: scale(1.1); }.","<h2 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: black; border: 1px ridge green;'>Search</li><li style='color: gray; border: 1px dashed pink;'>Contact Us</li><li style='color: black; border: 1px groove pink;'>Sign Up</li><li style='color: cyan; border: 1px solid green;'>Sign Up</li><li style='color: green; border: 1px solid green;'>Hello World</li></h2> @keyframes fade-in { from { opacity: 0; } to { opacity: 1; } }"
636"A div containing a cyan button with linear-gradient(to bottom, blue, green) background that says 'Choose Option', followed by a small text description, with bounce.","<footer><button style='background-color: linear-gradient(to bottom, blue, green); font-size: 28px; animation: spin 2s;'>Contact Us</button><p style='font-size: 28px;'>search</p></footer> @keyframes slide-up { from { transform: translateY(100%); } to { transform: translateY(0); } } transition: background-color 0.4s ease;"
637"A medium header with yellow text, Arial font, 0 4px 8px rgba(0, 0, 0, 0.2), and slide-up, displayed as inline-block with space-around, responsive with media queries.","<h2 style='color: white; font-size: 12px; font-family: Times New Roman; 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;'>Submit</h2> @keyframes spin { from { transform: rotate(0deg); } to { transform: rotate(360deg); } } @media (min-width: 1200px) { font-size: 18px; }"
638"A blue box with double border, linear-gradient(to right, red, yellow) 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 groove orange; font-size: 20px; text-align: center; display: none; justify-content: space-around; align-items: center; animation: slide-up 2s; transition: background-color 0.4s ease; :hover { background-color: #555; color: white; }'>Click Me</div> @keyframes fade-in { from { opacity: 0; } to { opacity: 1; } }"
639"A button containing a purple button with radial-gradient(circle, pink, purple) background that says 'Choose Option', followed by a large text description, with slide-up.","<nav><button style='background-color: linear-gradient(to right, red, yellow); font-size: 20px; animation: spin 2s;'>Sign Up</button><p style='font-size: 20px;'>enter your name</p></nav> @keyframes spin { from { transform: rotate(0deg); } to { transform: rotate(360deg); } } transition: transform 0.2s ease-in-out;"
640"A blue button with medium Helvetica text, using inline-block layout, aligned to the justify, with none, bounce, and a :hover { box-shadow: 0 0 10px rgba(0, 0, 0, 0.5); }.","<button style='background-color: cyan; font-size: 22px; font-family: Times New Roman; display: grid; text-align: center; box-shadow: none; animation: slide-up 2s; transition: all 0.3s ease; :hover { transform: scale(1.1); }'>Hello World</button> @keyframes bounce { 0%, 20%, 50%, 80%, 100% { transform: translateY(0); } 40% { transform: translateY(-30px); } 60% { transform: translateY(-15px); } }"
641"A select containing a list of options with black text, each inside a dashed box, with 4px 4px 10px rgba(0, 0, 0, 0.5), slide-up, and @media (max-width: 600px) { font-size: 14px; }.","<select><ul style='box-shadow: 4px 4px 10px rgba(0, 0, 0, 0.5); animation: bounce 1.5s;'><li style='color: red; border: 1px dashed cyan;'>Submit</li><li style='color: cyan; border: 1px double white;'>Enter Your Name</li><li style='color: red; border: 1px double yellow;'>Search</li><li style='color: yellow; border: 1px dashed red;'>Sign Up</li><li style='color: white; border: 1px dotted white;'>Submit</li></ul></select> @keyframes fade-in { from { opacity: 0; } to { opacity: 1; } } @media (max-width: 600px) { font-size: 14px; }"
642"A medium textarea with cyan text, Times New Roman font, 2px 2px 5px rgba(0, 0, 0, 0.3), and slide-up, displayed as grid with flex-end, responsive with media queries.","<nav style='color: red; font-size: 14px; font-family: Verdana; box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.3); display: grid; justify-content: center; animation: spin 2s; transition: background-color 0.4s ease;'>Login</nav> @keyframes bounce { 0%, 20%, 50%, 80%, 100% { transform: translateY(0); } 40% { transform: translateY(-30px); } 60% { transform: translateY(-15px); } } @media (min-width: 1200px) { font-size: 18px; }"
643"A black button with medium Arial text, using none layout, aligned to the center, 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: blue; font-size: 22px; font-family: Times New Roman; display: none; text-align: justify; box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.3); animation: spin 2s; transition: all 0.3s ease; :hover { box-shadow: 0 0 10px rgba(0, 0, 0, 0.5); }'>Choose Option</button> @keyframes bounce { 0%, 20%, 50%, 80%, 100% { transform: translateY(0); } 40% { transform: translateY(-30px); } 60% { transform: translateY(-15px); } }"
644"A h2 containing a list of options with red text, each inside a solid box, with none, bounce, and @media (max-width: 600px) { font-size: 14px; }.","<p><ul style='box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.3); animation: spin 1.5s;'><li style='color: gray; border: 1px ridge orange;'>Contact Us</li><li style='color: red; border: 1px solid white;'>Enter Your Name</li><li style='color: yellow; border: 1px double gray;'>Choose Option</li><li style='color: cyan; border: 1px dashed purple;'>Hello World</li><li style='color: pink; border: 1px groove yellow;'>Click Me</li></ul></p> @keyframes fade-in { from { opacity: 0; } to { opacity: 1; } } @media (min-width: 600px) and (max-width: 1200px) { font-size: 16px; }"
645"A pink box with dotted border, linear-gradient(to bottom, blue, green) background, medium text centered inside, using grid layout, with :hover { background-color: #555; color: white; } and bounce.","<div style='background: radial-gradient(circle, pink, purple); border: 2px groove gray; font-size: 14px; text-align: center; display: none; justify-content: space-between; align-items: center; animation: spin 2s; transition: background-color 0.4s ease; :hover { box-shadow: 0 0 10px rgba(0, 0, 0, 0.5); }'>Choose Option</div> @keyframes bounce { 0%, 20%, 50%, 80%, 100% { transform: translateY(0); } 40% { transform: translateY(-30px); } 60% { transform: translateY(-15px); } }"
646"A white box with groove border, linear-gradient(to right, red, yellow) background, small text centered inside, using none layout, with :hover { transform: scale(1.1); } and bounce.","<div style='background: linear-gradient(to bottom, blue, green); border: 2px dotted purple; font-size: 30px; text-align: center; display: flex; justify-content: space-between; align-items: center; animation: slide-up 2s; transition: all 0.3s ease; :hover { transform: scale(1.1); }'>Enter Your Name</div> @keyframes slide-up { from { transform: translateY(100%); } to { transform: translateY(0); } }"
647"A footer containing a list of options with black text, each inside a dashed box, with none, slide-up, 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: orange; border: 1px double red;'>Hello World</li><li style='color: pink; border: 1px ridge white;'>Login</li><li style='color: red; border: 1px solid yellow;'>Search</li><li style='color: red; border: 1px dotted white;'>Enter Your Name</li><li style='color: gray; border: 1px double yellow;'>Enter Your Name</li></ul></header> @keyframes slide-up { from { transform: translateY(100%); } to { transform: translateY(0); } } @media (min-width: 1200px) { font-size: 18px; }"
648"A small input with orange text, Tahoma font, 4px 4px 10px rgba(0, 0, 0, 0.5), and spin, displayed as none with flex-start, responsive with media queries.","<span style='color: green; font-size: 28px; font-family: Tahoma; box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.3); display: inline-block; justify-content: space-around; animation: bounce 2s; transition: transform 0.2s ease-in-out;'>Choose Option</span> @keyframes bounce { 0%, 20%, 50%, 80%, 100% { transform: translateY(0); } 40% { transform: translateY(-30px); } 60% { transform: translateY(-15px); } } @media (min-width: 600px) and (max-width: 1200px) { font-size: 16px; }"
649"A blue button with small Tahoma text, using grid layout, aligned to the right, with 4px 4px 10px rgba(0, 0, 0, 0.5), bounce, and a :hover { background-color: #555; color: white; }.","<button style='background-color: cyan; font-size: 14px; font-family: Tahoma; display: none; text-align: justify; box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); animation: spin 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 bounce { 0%, 20%, 50%, 80%, 100% { transform: translateY(0); } 40% { transform: translateY(-30px); } 60% { transform: translateY(-15px); } }"
650"A header containing a list of options with pink text, each inside a ridge box, with 0 4px 8px rgba(0, 0, 0, 0.2), fade-in, and @media (min-width: 1200px) { font-size: 18px; }.",<select><ul style='box-shadow: none; animation: slide-up 1.5s;'><li style='color: pink; border: 1px double yellow;'>Login</li><li style='color: red; border: 1px dashed white;'>Login</li><li style='color: blue; border: 1px groove black;'>Search</li><li style='color: black; border: 1px double yellow;'>Contact Us</li><li style='color: cyan; border: 1px solid yellow;'>Hello World</li></ul></select> @keyframes fade-in { from { opacity: 0; } to { opacity: 1; } } @media (min-width: 600px) and (max-width: 1200px) { font-size: 16px; }
651"A green button with large Times New Roman text, using none layout, aligned to the right, with none, bounce, and a :hover { transform: scale(1.1); }.","<button style='background-color: orange; font-size: 24px; font-family: Tahoma; display: none; text-align: left; box-shadow: none; animation: spin 2s; transition: transform 0.2s ease-in-out; :hover { box-shadow: 0 0 10px rgba(0, 0, 0, 0.5); }'>Search</button> @keyframes slide-up { from { transform: translateY(100%); } to { transform: translateY(0); } }"
652"A div containing a list of options with cyan 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; }.",<h3><ul style='box-shadow: none; animation: bounce 1.5s;'><li style='color: orange; border: 1px groove cyan;'>Search</li><li style='color: gray; border: 1px dashed black;'>Sign Up</li><li style='color: red; border: 1px double blue;'>Submit</li><li style='color: black; border: 1px dashed gray;'>Submit</li><li style='color: blue; border: 1px dashed black;'>Contact Us</li></ul></h3> @keyframes fade-in { from { opacity: 0; } to { opacity: 1; } } @media (min-width: 600px) and (max-width: 1200px) { font-size: 16px; }
653"A h1 containing a yellow button with linear-gradient(to bottom, blue, green) background that says 'Click Me', followed by a medium text description, with spin.","<span><button style='background-color: linear-gradient(to right, red, yellow); font-size: 12px; animation: slide-up 2s;'>Login</button><p style='font-size: 12px;'>hello world</p></span> @keyframes slide-up { from { transform: translateY(100%); } to { transform: translateY(0); } } transition: background-color 0.4s ease;"
654"A button containing a black button with linear-gradient(to bottom, blue, green) background that says 'Enter Your Name', followed by a large text description, with bounce.","<textarea><button style='background-color: linear-gradient(to bottom, blue, green); font-size: 28px; animation: slide-up 2s;'>Hello World</button><p style='font-size: 28px;'>search</p></textarea> @keyframes spin { from { transform: rotate(0deg); } to { transform: rotate(360deg); } } transition: transform 0.2s ease-in-out;"
655"A responsive textarea with a grid layout using template 'repeat(3, 1fr)', containing items with large text and :hover { background-color: #555; color: white; }.","<h1 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: orange; border: 1px groove red;'>Submit</li><li style='color: cyan; border: 1px dotted white;'>Contact Us</li><li style='color: gray; border: 1px dotted cyan;'>Hello World</li><li style='color: gray; border: 1px dashed gray;'>Login</li><li style='color: purple; border: 1px ridge purple;'>Contact Us</li></h1> @keyframes slide-up { from { transform: translateY(100%); } to { transform: translateY(0); } }"
656"A responsive p 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: 100px 1fr; gap: 10px; :hover { background-color: #555; color: white; }'><li style='color: pink; border: 1px dotted orange;'>Login</li><li style='color: blue; border: 1px dashed purple;'>Login</li><li style='color: gray; border: 1px groove pink;'>Contact Us</li><li style='color: green; border: 1px ridge blue;'>Click Me</li><li style='color: blue; border: 1px dotted cyan;'>Sign Up</li></nav> @keyframes bounce { 0%, 20%, 50%, 80%, 100% { transform: translateY(0); } 40% { transform: translateY(-30px); } 60% { transform: translateY(-15px); } }"
657"A small h2 with yellow text, Verdana font, none, and fade-in, displayed as block with center, responsive with media queries.","<p style='color: orange; font-size: 26px; font-family: Courier New; box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); display: inline-block; justify-content: space-between; animation: bounce 2s; transition: transform 0.2s ease-in-out;'>Hello World</p> @keyframes slide-up { from { transform: translateY(100%); } to { transform: translateY(0); } } @media (min-width: 1200px) { font-size: 18px; }"
658"A responsive select with a grid layout using template '100px 1fr', containing items with small text and :hover { background-color: #555; color: white; }.","<input style='display: grid; grid-template-columns: 1fr 2fr; gap: 10px; :hover { transform: scale(1.1); }'><li style='color: black; border: 1px ridge yellow;'>Choose Option</li><li style='color: yellow; border: 1px dotted purple;'>Enter Your Name</li><li style='color: white; border: 1px double red;'>Contact Us</li><li style='color: pink; border: 1px solid orange;'>Enter Your Name</li><li style='color: yellow; border: 1px ridge blue;'>Hello World</li></input> @keyframes bounce { 0%, 20%, 50%, 80%, 100% { transform: translateY(0); } 40% { transform: translateY(-30px); } 60% { transform: translateY(-15px); } }"
659"A large nav with green text, Verdana font, none, and spin, displayed as inline-block with space-around, responsive with media queries.","<h1 style='color: yellow; font-size: 22px; font-family: Courier New; box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); display: grid; justify-content: space-between; animation: slide-up 2s; transition: background-color 0.4s ease;'>Contact Us</h1> @keyframes bounce { 0%, 20%, 50%, 80%, 100% { transform: translateY(0); } 40% { transform: translateY(-30px); } 60% { transform: translateY(-15px); } } @media (min-width: 1200px) { font-size: 18px; }"
660"A purple box with solid border, linear-gradient(to bottom, blue, green) background, medium text centered inside, using flex layout, with :hover { transform: scale(1.1); } and slide-up.","<div style='background: linear-gradient(to bottom, blue, green); border: 2px groove purple; font-size: 12px; text-align: center; display: block; justify-content: center; align-items: center; animation: bounce 2s; transition: background-color 0.4s ease; :hover { background-color: #555; color: white; }'>Search</div> @keyframes spin { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }"
661"A div containing a list of options with purple text, each inside a groove box, with 4px 4px 10px rgba(0, 0, 0, 0.5), fade-in, and @media (max-width: 600px) { font-size: 14px; }.",<header><ul style='box-shadow: none; animation: slide-up 1.5s;'><li style='color: black; border: 1px dotted blue;'>Login</li><li style='color: gray; border: 1px ridge orange;'>Search</li><li style='color: red; border: 1px solid cyan;'>Search</li><li style='color: blue; border: 1px groove purple;'>Search</li><li style='color: gray; border: 1px dotted white;'>Enter Your Name</li></ul></header> @keyframes slide-up { from { transform: translateY(100%); } to { transform: translateY(0); } } @media (min-width: 600px) and (max-width: 1200px) { font-size: 16px; }
662"A medium header with blue text, Verdana font, 4px 4px 10px rgba(0, 0, 0, 0.5), and spin, displayed as flex with center, responsive with media queries.","<header style='color: cyan; font-size: 20px; font-family: Arial; box-shadow: none; display: inline-block; justify-content: space-around; animation: bounce 2s; transition: background-color 0.4s ease;'>Sign Up</header> @keyframes bounce { 0%, 20%, 50%, 80%, 100% { transform: translateY(0); } 40% { transform: translateY(-30px); } 60% { transform: translateY(-15px); } } @media (min-width: 600px) and (max-width: 1200px) { font-size: 16px; }"
663"A medium nav with purple text, Times New Roman font, 0 4px 8px rgba(0, 0, 0, 0.2), and spin, displayed as flex with flex-end, responsive with media queries.","<footer style='color: cyan; font-size: 24px; font-family: Verdana; box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.3); display: flex; justify-content: space-between; animation: spin 2s; transition: transform 0.2s ease-in-out;'>Choose Option</footer> @keyframes spin { from { transform: rotate(0deg); } to { transform: rotate(360deg); } } @media (max-width: 600px) { font-size: 14px; }"
664"A medium span with blue text, Verdana font, 4px 4px 10px rgba(0, 0, 0, 0.5), and slide-up, displayed as block with flex-start, responsive with media queries.","<p style='color: white; font-size: 28px; font-family: Times New Roman; box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.3); display: block; justify-content: space-around; animation: fade-in 2s; transition: all 0.3s ease;'>Hello World</p> @keyframes slide-up { from { transform: translateY(100%); } to { transform: translateY(0); } } @media (min-width: 600px) and (max-width: 1200px) { font-size: 16px; }"
665"A small select with blue text, Times New Roman font, 4px 4px 10px rgba(0, 0, 0, 0.5), and slide-up, displayed as block with flex-end, responsive with media queries.","<h3 style='color: purple; font-size: 18px; font-family: Courier New; box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); display: grid; justify-content: center; animation: spin 2s; transition: transform 0.2s ease-in-out;'>Sign Up</h3> @keyframes slide-up { from { transform: translateY(100%); } to { transform: translateY(0); } } @media (min-width: 600px) and (max-width: 1200px) { font-size: 16px; }"
666"A gray button with large Verdana text, using flex layout, aligned to the justify, with 2px 2px 5px rgba(0, 0, 0, 0.3), slide-up, and a :hover { box-shadow: 0 0 10px rgba(0, 0, 0, 0.5); }.","<button style='background-color: gray; font-size: 22px; font-family: Helvetica; display: inline-block; text-align: right; box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); animation: spin 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 spin { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }"
667"A h1 containing a list of options with gray text, each inside a solid box, with 4px 4px 10px rgba(0, 0, 0, 0.5), fade-in, and @media (min-width: 600px) and (max-width: 1200px) { font-size: 16px; }.","<button><ul style='box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); animation: slide-up 1.5s;'><li style='color: yellow; border: 1px double cyan;'>Enter Your Name</li><li style='color: red; border: 1px solid cyan;'>Sign Up</li><li style='color: black; border: 1px solid green;'>Click Me</li><li style='color: pink; border: 1px solid pink;'>Contact Us</li><li style='color: blue; border: 1px dashed green;'>Hello World</li></ul></button> @keyframes slide-up { from { transform: translateY(100%); } to { transform: translateY(0); } } @media (max-width: 600px) { font-size: 14px; }"
668"A cyan box with ridge border, linear-gradient(to bottom, blue, green) background, small 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: radial-gradient(circle, pink, purple); border: 2px dotted cyan; font-size: 14px; text-align: center; display: grid; 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 Option</div> @keyframes spin { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }"
669"A span containing a white button with linear-gradient(to bottom, blue, green) background that says 'Click Me', followed by a small text description, with spin.","<header><button style='background-color: linear-gradient(to right, red, yellow); font-size: 14px; animation: bounce 2s;'>Submit</button><p style='font-size: 14px;'>click me</p></header> @keyframes slide-up { from { transform: translateY(100%); } to { transform: translateY(0); } } transition: all 0.3s ease;"
670"A red button with large Arial text, using grid layout, aligned to the left, with none, slide-up, and a :hover { box-shadow: 0 0 10px rgba(0, 0, 0, 0.5); }.","<button style='background-color: blue; font-size: 22px; font-family: Georgia; display: block; text-align: left; box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.3); animation: bounce 2s; transition: transform 0.2s ease-in-out; :hover { transform: scale(1.1); }'>Contact Us</button> @keyframes spin { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }"
671"A green button with medium Verdana text, using inline-block layout, aligned to the center, with 2px 2px 5px rgba(0, 0, 0, 0.3), bounce, and a :hover { box-shadow: 0 0 10px rgba(0, 0, 0, 0.5); }.","<button style='background-color: red; font-size: 12px; font-family: Times New Roman; display: none; text-align: justify; box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); animation: bounce 2s; transition: all 0.3s ease; :hover { transform: scale(1.1); }'>Search</button> @keyframes bounce { 0%, 20%, 50%, 80%, 100% { transform: translateY(0); } 40% { transform: translateY(-30px); } 60% { transform: translateY(-15px); } }"
672"A white button with medium Arial text, using flex layout, aligned to the left, with 4px 4px 10px rgba(0, 0, 0, 0.5), bounce, and a :hover { box-shadow: 0 0 10px rgba(0, 0, 0, 0.5); }.","<button style='background-color: black; font-size: 12px; font-family: Tahoma; display: grid; text-align: right; box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); animation: bounce 2s; transition: background-color 0.4s ease; :hover { box-shadow: 0 0 10px rgba(0, 0, 0, 0.5); }'>Search</button> @keyframes spin { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }"
673"A responsive select with a grid layout using template 'repeat(3, 1fr)', containing items with medium text and :hover { box-shadow: 0 0 10px rgba(0, 0, 0, 0.5); }.","<header style='display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px; :hover { box-shadow: 0 0 10px rgba(0, 0, 0, 0.5); }'><li style='color: pink; border: 1px solid green;'>Choose Option</li><li style='color: orange; border: 1px double red;'>Submit</li><li style='color: white; border: 1px dashed gray;'>Click Me</li><li style='color: white; border: 1px dashed orange;'>Enter Your Name</li><li style='color: purple; border: 1px solid pink;'>Sign Up</li></header> @keyframes slide-up { from { transform: translateY(100%); } to { transform: translateY(0); } }"
674"A gray box with dotted border, radial-gradient(circle, pink, purple) background, medium text centered inside, using flex layout, with :hover { transform: scale(1.1); } and spin.","<div style='background: linear-gradient(to right, red, yellow); border: 2px dashed yellow; font-size: 28px; text-align: center; display: block; justify-content: space-between; align-items: center; animation: slide-up 2s; transition: transform 0.2s ease-in-out; :hover { box-shadow: 0 0 10px rgba(0, 0, 0, 0.5); }'>Contact Us</div> @keyframes spin { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }"
675"A p containing a gray button with radial-gradient(circle, pink, purple) background that says 'Contact Us', followed by a large text description, with bounce.","<h2><button style='background-color: linear-gradient(to right, red, yellow); font-size: 18px; animation: fade-in 2s;'>Search</button><p style='font-size: 18px;'>hello world</p></h2> @keyframes slide-up { from { transform: translateY(100%); } to { transform: translateY(0); } } transition: all 0.3s ease;"
676"A red box with double border, radial-gradient(circle, pink, purple) background, small text centered inside, using block 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 dashed orange; font-size: 24px; text-align: center; display: block; justify-content: flex-end; align-items: center; animation: fade-in 2s; transition: transform 0.2s ease-in-out; :hover { background-color: #555; color: white; }'>Enter Your Name</div> @keyframes spin { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }"
677"A footer containing a gray button with linear-gradient(to right, red, yellow) background that says 'Hello World', followed by a large text description, with bounce.","<div><button style='background-color: linear-gradient(to right, red, yellow); font-size: 12px; animation: bounce 2s;'>Submit</button><p style='font-size: 12px;'>login</p></div> @keyframes spin { from { transform: rotate(0deg); } to { transform: rotate(360deg); } } transition: transform 0.2s ease-in-out;"
678"A large div with cyan text, Georgia font, 0 4px 8px rgba(0, 0, 0, 0.2), and spin, displayed as grid with center, responsive with media queries.","<p style='color: red; font-size: 26px; font-family: Verdana; box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.3); display: none; justify-content: flex-end; animation: bounce 2s; transition: transform 0.2s ease-in-out;'>Choose Option</p> @keyframes bounce { 0%, 20%, 50%, 80%, 100% { transform: translateY(0); } 40% { transform: translateY(-30px); } 60% { transform: translateY(-15px); } } @media (max-width: 600px) { font-size: 14px; }"
679"A purple box with double border, linear-gradient(to bottom, blue, green) background, large text centered inside, using inline-block layout, with :hover { background-color: #555; color: white; } and spin.","<div style='background: radial-gradient(circle, pink, purple); border: 2px dashed red; font-size: 30px; text-align: center; display: block; justify-content: flex-start; align-items: center; animation: slide-up 2s; transition: transform 0.2s ease-in-out; :hover { transform: scale(1.1); }'>Sign Up</div> @keyframes slide-up { from { transform: translateY(100%); } to { transform: translateY(0); } }"
680"A footer containing a list of options with red text, each inside a solid box, with 0 4px 8px rgba(0, 0, 0, 0.2), slide-up, and @media (min-width: 1200px) { font-size: 18px; }.","<select><ul style='box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.3); animation: spin 1.5s;'><li style='color: pink; border: 1px solid purple;'>Choose Option</li><li style='color: gray; border: 1px dashed red;'>Click Me</li><li style='color: orange; border: 1px dotted purple;'>Enter Your Name</li><li style='color: red; border: 1px double green;'>Search</li><li style='color: orange; border: 1px dashed pink;'>Search</li></ul></select> @keyframes spin { from { transform: rotate(0deg); } to { transform: rotate(360deg); } } @media (max-width: 600px) { font-size: 14px; }"
681"A purple box with groove border, linear-gradient(to bottom, blue, green) background, medium text centered inside, using inline-block layout, with :hover { background-color: #555; color: white; } and bounce.","<div style='background: linear-gradient(to bottom, blue, green); border: 2px dotted purple; font-size: 26px; text-align: center; display: block; justify-content: space-between; align-items: center; animation: bounce 2s; transition: transform 0.2s ease-in-out; :hover { transform: scale(1.1); }'>Enter Your Name</div> @keyframes spin { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }"
682"A p containing a list of options with red text, each inside a dashed box, with none, fade-in, and @media (min-width: 1200px) { font-size: 18px; }.","<div><ul style='box-shadow: 4px 4px 10px rgba(0, 0, 0, 0.5); animation: bounce 1.5s;'><li style='color: cyan; border: 1px dashed yellow;'>Click Me</li><li style='color: cyan; border: 1px ridge cyan;'>Submit</li><li style='color: red; border: 1px solid cyan;'>Hello World</li><li style='color: orange; border: 1px solid pink;'>Login</li><li style='color: white; border: 1px solid pink;'>Search</li></ul></div> @keyframes fade-in { from { opacity: 0; } to { opacity: 1; } } @media (min-width: 600px) and (max-width: 1200px) { font-size: 16px; }"
683"A nav containing a cyan button with radial-gradient(circle, pink, purple) background that says 'Hello World', followed by a small text description, with bounce.","<header><button style='background-color: linear-gradient(to right, red, yellow); font-size: 16px; animation: slide-up 2s;'>Sign Up</button><p style='font-size: 16px;'>login</p></header> @keyframes bounce { 0%, 20%, 50%, 80%, 100% { transform: translateY(0); } 40% { transform: translateY(-30px); } 60% { transform: translateY(-15px); } } transition: transform 0.2s ease-in-out;"
684"A blue button with medium Courier New text, using none layout, aligned to the center, with 2px 2px 5px rgba(0, 0, 0, 0.3), bounce, and a :hover { box-shadow: 0 0 10px rgba(0, 0, 0, 0.5); }.",<button style='background-color: pink; font-size: 16px; font-family: Georgia; display: flex; text-align: right; box-shadow: none; animation: fade-in 2s; transition: all 0.3s ease; :hover { background-color: #555; color: white; }'>Sign Up</button> @keyframes slide-up { from { transform: translateY(100%); } to { transform: translateY(0); } }
685"A button containing a list of options with white text, each inside a ridge box, with 2px 2px 5px rgba(0, 0, 0, 0.3), slide-up, and @media (max-width: 600px) { font-size: 14px; }.","<span><ul style='box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.3); animation: slide-up 1.5s;'><li style='color: orange; border: 1px ridge yellow;'>Login</li><li style='color: orange; border: 1px groove blue;'>Login</li><li style='color: orange; border: 1px dotted white;'>Choose Option</li><li style='color: purple; border: 1px ridge blue;'>Contact Us</li><li style='color: green; border: 1px groove orange;'>Login</li></ul></span> @keyframes spin { from { transform: rotate(0deg); } to { transform: rotate(360deg); } } @media (min-width: 600px) and (max-width: 1200px) { font-size: 16px; }"
686"A orange button with large Georgia text, using block layout, aligned to the center, with 0 4px 8px rgba(0, 0, 0, 0.2), slide-up, and a :hover { box-shadow: 0 0 10px rgba(0, 0, 0, 0.5); }.",<button style='background-color: cyan; font-size: 18px; font-family: Georgia; display: flex; text-align: right; box-shadow: none; animation: bounce 2s; transition: background-color 0.4s ease; :hover { background-color: #555; color: white; }'>Submit</button> @keyframes spin { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }
687"A large span with purple text, Courier New font, 2px 2px 5px rgba(0, 0, 0, 0.3), and slide-up, displayed as block with space-around, responsive with media queries.","<header style='color: green; font-size: 28px; font-family: Verdana; box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.3); display: flex; justify-content: center; animation: slide-up 2s; transition: background-color 0.4s ease;'>Search</header> @keyframes spin { from { transform: rotate(0deg); } to { transform: rotate(360deg); } } @media (min-width: 600px) and (max-width: 1200px) { font-size: 16px; }"
688"A gray button with medium Times New Roman text, using inline-block layout, aligned to the center, with 0 4px 8px rgba(0, 0, 0, 0.2), bounce, and a :hover { transform: scale(1.1); }.","<button style='background-color: orange; font-size: 12px; font-family: Georgia; display: block; text-align: left; box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.3); animation: fade-in 2s; transition: all 0.3s ease; :hover { transform: scale(1.1); }'>Click Me</button> @keyframes bounce { 0%, 20%, 50%, 80%, 100% { transform: translateY(0); } 40% { transform: translateY(-30px); } 60% { transform: translateY(-15px); } }"
689"A responsive footer 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); }.",<select style='display: grid; grid-template-columns: 100px 1fr; gap: 10px; :hover { background-color: #555; color: white; }'><li style='color: green; border: 1px ridge cyan;'>Enter Your Name</li><li style='color: red; border: 1px ridge white;'>Enter Your Name</li><li style='color: yellow; border: 1px ridge purple;'>Contact Us</li><li style='color: gray; border: 1px dashed cyan;'>Enter Your Name</li><li style='color: black; border: 1px dashed red;'>Sign Up</li></select> @keyframes spin { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }
690"A nav containing a gray button with radial-gradient(circle, pink, purple) background that says 'Submit', followed by a small text description, with fade-in.","<h2><button style='background-color: radial-gradient(circle, pink, purple); font-size: 28px; animation: slide-up 2s;'>Hello World</button><p style='font-size: 28px;'>contact us</p></h2> @keyframes spin { from { transform: rotate(0deg); } to { transform: rotate(360deg); } } transition: transform 0.2s ease-in-out;"
691"A green box with double 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 dashed cyan; font-size: 24px; text-align: center; display: flex; justify-content: space-between; align-items: center; animation: spin 2s; transition: all 0.3s ease; :hover { transform: scale(1.1); }'>Click Me</div> @keyframes slide-up { from { transform: translateY(100%); } to { transform: translateY(0); } }"
692"A h2 containing a list of options with blue text, each inside a solid box, with none, spin, and @media (min-width: 1200px) { font-size: 18px; }.","<button><ul style='box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); animation: slide-up 1.5s;'><li style='color: cyan; border: 1px dashed yellow;'>Sign Up</li><li style='color: white; border: 1px solid white;'>Enter Your Name</li><li style='color: black; border: 1px solid black;'>Hello World</li><li style='color: purple; border: 1px groove blue;'>Choose Option</li><li style='color: yellow; border: 1px double orange;'>Hello World</li></ul></button> @keyframes bounce { 0%, 20%, 50%, 80%, 100% { transform: translateY(0); } 40% { transform: translateY(-30px); } 60% { transform: translateY(-15px); } } @media (max-width: 600px) { font-size: 14px; }"
693"A gray button with large Arial text, using none layout, aligned to the right, with 2px 2px 5px rgba(0, 0, 0, 0.3), fade-in, and a :hover { background-color: #555; color: white; }.","<button style='background-color: blue; font-size: 24px; font-family: Tahoma; display: none; text-align: justify; 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: rotate(0deg); } to { transform: rotate(360deg); } }"
694"A h1 containing a purple button with linear-gradient(to right, red, yellow) background that says 'Contact Us', followed by a large text description, with slide-up.","<button><button style='background-color: linear-gradient(to bottom, blue, green); font-size: 24px; animation: spin 2s;'>Login</button><p style='font-size: 24px;'>enter your name</p></button> @keyframes spin { from { transform: rotate(0deg); } to { transform: rotate(360deg); } } transition: all 0.3s ease;"
695"A small p with black text, Georgia font, 4px 4px 10px rgba(0, 0, 0, 0.5), and spin, displayed as block with flex-end, responsive with media queries.","<footer style='color: black; font-size: 26px; font-family: Helvetica; box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.3); display: none; justify-content: space-between; animation: fade-in 2s; transition: transform 0.2s ease-in-out;'>Click Me</footer> @keyframes spin { from { transform: rotate(0deg); } to { transform: rotate(360deg); } } @media (min-width: 1200px) { font-size: 18px; }"
696"A yellow button with small Arial text, using block layout, aligned to the left, with 0 4px 8px rgba(0, 0, 0, 0.2), spin, and a :hover { transform: scale(1.1); }.","<button style='background-color: red; font-size: 20px; font-family: Courier New; display: inline-block; text-align: justify; box-shadow: 4px 4px 10px rgba(0, 0, 0, 0.5); animation: fade-in 2s; transition: background-color 0.4s ease; :hover { transform: scale(1.1); }'>Contact Us</button> @keyframes bounce { 0%, 20%, 50%, 80%, 100% { transform: translateY(0); } 40% { transform: translateY(-30px); } 60% { transform: translateY(-15px); } }"
697"A responsive h2 with a grid layout using template 'repeat(2, 1fr)', containing items with medium text and :hover { transform: scale(1.1); }.","<textarea style='display: grid; grid-template-columns: 100px 1fr; gap: 10px; :hover { transform: scale(1.1); }'><li style='color: purple; border: 1px groove white;'>Enter Your Name</li><li style='color: cyan; border: 1px dotted black;'>Submit</li><li style='color: purple; border: 1px dashed blue;'>Search</li><li style='color: yellow; border: 1px groove green;'>Contact Us</li><li style='color: cyan; border: 1px dashed pink;'>Click Me</li></textarea> @keyframes bounce { 0%, 20%, 50%, 80%, 100% { transform: translateY(0); } 40% { transform: translateY(-30px); } 60% { transform: translateY(-15px); } }"
698"A div containing a list of options with green 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; }.","<select><ul style='box-shadow: none; animation: fade-in 1.5s;'><li style='color: blue; border: 1px double green;'>Hello World</li><li style='color: yellow; border: 1px double gray;'>Sign Up</li><li style='color: white; border: 1px ridge cyan;'>Contact Us</li><li style='color: orange; border: 1px groove white;'>Hello World</li><li style='color: red; border: 1px double green;'>Contact Us</li></ul></select> @keyframes bounce { 0%, 20%, 50%, 80%, 100% { transform: translateY(0); } 40% { transform: translateY(-30px); } 60% { transform: translateY(-15px); } } @media (min-width: 1200px) { font-size: 18px; }"
699"A header containing a blue button with radial-gradient(circle, pink, purple) background that says 'Enter Your Name', followed by a medium text description, with spin.","<header><button style='background-color: linear-gradient(to bottom, blue, green); font-size: 30px; animation: slide-up 2s;'>Login</button><p style='font-size: 30px;'>submit</p></header> @keyframes fade-in { from { opacity: 0; } to { opacity: 1; } } transition: background-color 0.4s ease;"
700"A medium p with red text, Verdana font, 4px 4px 10px rgba(0, 0, 0, 0.5), and slide-up, displayed as inline-block with space-around, responsive with media queries.","<h1 style='color: purple; font-size: 14px; font-family: Helvetica; box-shadow: none; display: flex; justify-content: space-between; animation: bounce 2s; transition: background-color 0.4s ease;'>Enter Your Name</h1> @keyframes bounce { 0%, 20%, 50%, 80%, 100% { transform: translateY(0); } 40% { transform: translateY(-30px); } 60% { transform: translateY(-15px); } } @media (min-width: 1200px) { font-size: 18px; }"
701"A green button with large Verdana text, using flex layout, aligned to the right, with 4px 4px 10px rgba(0, 0, 0, 0.5), slide-up, and a :hover { background-color: #555; color: white; }.","<button style='background-color: purple; font-size: 24px; font-family: Times New Roman; display: grid; text-align: left; box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.3); animation: bounce 2s; transition: transform 0.2s ease-in-out; :hover { transform: scale(1.1); }'>Hello World</button> @keyframes bounce { 0%, 20%, 50%, 80%, 100% { transform: translateY(0); } 40% { transform: translateY(-30px); } 60% { transform: translateY(-15px); } }"
702"A yellow box with dashed border, linear-gradient(to right, red, yellow) background, small text centered inside, using grid layout, with :hover { transform: scale(1.1); } and fade-in.","<div style='background: linear-gradient(to right, red, yellow); border: 2px ridge orange; font-size: 14px; text-align: center; display: block; justify-content: flex-start; align-items: center; animation: slide-up 2s; transition: all 0.3s ease; :hover { box-shadow: 0 0 10px rgba(0, 0, 0, 0.5); }'>Enter Your Name</div> @keyframes bounce { 0%, 20%, 50%, 80%, 100% { transform: translateY(0); } 40% { transform: translateY(-30px); } 60% { transform: translateY(-15px); } }"
703"A select containing a list of options with green text, each inside a dotted box, with 0 4px 8px rgba(0, 0, 0, 0.2), bounce, and @media (min-width: 1200px) { font-size: 18px; }.","<h1><ul style='box-shadow: 4px 4px 10px rgba(0, 0, 0, 0.5); animation: fade-in 1.5s;'><li style='color: red; border: 1px groove pink;'>Choose Option</li><li style='color: pink; border: 1px double black;'>Search</li><li style='color: cyan; border: 1px dotted cyan;'>Click Me</li><li style='color: yellow; border: 1px ridge blue;'>Enter Your Name</li><li style='color: red; border: 1px solid pink;'>Sign Up</li></ul></h1> @keyframes slide-up { from { transform: translateY(100%); } to { transform: translateY(0); } } @media (min-width: 1200px) { font-size: 18px; }"
704"A red button with large Times New Roman text, using block layout, aligned to the center, with none, bounce, and a :hover { background-color: #555; color: white; }.","<button style='background-color: yellow; font-size: 24px; font-family: Arial; display: none; text-align: center; box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.3); animation: spin 2s; transition: background-color 0.4s ease; :hover { background-color: #555; color: white; }'>Contact Us</button> @keyframes fade-in { from { opacity: 0; } to { opacity: 1; } }"
705"A blue box with dashed border, linear-gradient(to bottom, blue, green) background, large text centered inside, using block layout, with :hover { background-color: #555; color: white; } and fade-in.","<div style='background: linear-gradient(to right, red, yellow); border: 2px ridge orange; font-size: 16px; text-align: center; display: none; justify-content: space-between; align-items: center; animation: fade-in 2s; transition: background-color 0.4s ease; :hover { box-shadow: 0 0 10px rgba(0, 0, 0, 0.5); }'>Sign Up</div> @keyframes bounce { 0%, 20%, 50%, 80%, 100% { transform: translateY(0); } 40% { transform: translateY(-30px); } 60% { transform: translateY(-15px); } }"
706"A div 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: 600px) and (max-width: 1200px) { font-size: 16px; }.","<select><ul style='box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); animation: spin 1.5s;'><li style='color: cyan; border: 1px dashed yellow;'>Sign Up</li><li style='color: gray; border: 1px solid gray;'>Login</li><li style='color: orange; border: 1px groove pink;'>Search</li><li style='color: gray; border: 1px solid black;'>Enter Your Name</li><li style='color: yellow; border: 1px dotted blue;'>Sign Up</li></ul></select> @keyframes fade-in { from { opacity: 0; } to { opacity: 1; } } @media (max-width: 600px) { font-size: 14px; }"
707"A large textarea with blue text, Verdana font, 4px 4px 10px rgba(0, 0, 0, 0.5), and fade-in, displayed as grid with flex-start, responsive with media queries.","<footer style='color: purple; font-size: 14px; font-family: Arial; box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.3); display: none; justify-content: space-around; animation: bounce 2s; transition: background-color 0.4s ease;'>Hello World</footer> @keyframes bounce { 0%, 20%, 50%, 80%, 100% { transform: translateY(0); } 40% { transform: translateY(-30px); } 60% { transform: translateY(-15px); } } @media (min-width: 600px) and (max-width: 1200px) { font-size: 16px; }"
708"A yellow box with ridge border, linear-gradient(to right, red, yellow) background, large text centered inside, using inline-block layout, with :hover { box-shadow: 0 0 10px rgba(0, 0, 0, 0.5); } and spin.","<div style='background: radial-gradient(circle, pink, purple); border: 2px dotted pink; font-size: 14px; text-align: center; display: none; justify-content: center; align-items: center; animation: slide-up 2s; transition: background-color 0.4s ease; :hover { transform: scale(1.1); }'>Login</div> @keyframes fade-in { from { opacity: 0; } to { opacity: 1; } }"
709"A pink box with dashed border, linear-gradient(to right, red, yellow) background, small text centered inside, using flex layout, with :hover { box-shadow: 0 0 10px rgba(0, 0, 0, 0.5); } and slide-up.","<div style='background: linear-gradient(to bottom, blue, green); border: 2px ridge green; font-size: 20px; text-align: center; display: flex; justify-content: space-between; align-items: center; animation: slide-up 2s; transition: transform 0.2s ease-in-out; :hover { background-color: #555; color: white; }'>Enter Your Name</div> @keyframes fade-in { from { opacity: 0; } to { opacity: 1; } }"
710"A yellow box with dotted border, linear-gradient(to right, red, yellow) background, small text centered inside, using none layout, with :hover { transform: scale(1.1); } and spin.","<div style='background: radial-gradient(circle, pink, purple); border: 2px double yellow; font-size: 16px; text-align: center; display: inline-block; justify-content: flex-start; 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); }'>Search</div> @keyframes fade-in { from { opacity: 0; } to { opacity: 1; } }"
711"A footer containing a pink button with linear-gradient(to bottom, blue, green) background that says 'Click Me', followed by a small text description, with fade-in.","<select><button style='background-color: linear-gradient(to bottom, blue, green); font-size: 16px; animation: slide-up 2s;'>Login</button><p style='font-size: 16px;'>hello world</p></select> @keyframes bounce { 0%, 20%, 50%, 80%, 100% { transform: translateY(0); } 40% { transform: translateY(-30px); } 60% { transform: translateY(-15px); } } transition: background-color 0.4s ease;"
712"A responsive p with a grid layout using template '1fr 2fr', containing items with medium text and :hover { transform: scale(1.1); }.","<header 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: gray; border: 1px solid white;'>Sign Up</li><li style='color: purple; border: 1px groove purple;'>Choose Option</li><li style='color: orange; border: 1px dotted green;'>Hello World</li><li style='color: cyan; border: 1px solid white;'>Search</li><li style='color: purple; border: 1px double white;'>Enter Your Name</li></header> @keyframes spin { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }"
713"A responsive div with a grid layout using template 'repeat(2, 1fr)', containing items with medium text and :hover { transform: scale(1.1); }.","<div style='display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px; :hover { box-shadow: 0 0 10px rgba(0, 0, 0, 0.5); }'><li style='color: cyan; border: 1px dotted blue;'>Click Me</li><li style='color: gray; border: 1px dotted red;'>Login</li><li style='color: pink; border: 1px solid orange;'>Sign Up</li><li style='color: gray; border: 1px ridge cyan;'>Choose Option</li><li style='color: purple; border: 1px solid white;'>Hello World</li></div> @keyframes fade-in { from { opacity: 0; } to { opacity: 1; } }"
714"A responsive h2 with a grid layout using template 'repeat(2, 1fr)', containing items with large text and :hover { background-color: #555; color: white; }.","<select 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: gray; border: 1px solid cyan;'>Sign Up</li><li style='color: cyan; border: 1px solid red;'>Choose Option</li><li style='color: yellow; border: 1px dotted purple;'>Sign Up</li><li style='color: pink; border: 1px dotted yellow;'>Enter Your Name</li><li style='color: green; border: 1px groove purple;'>Choose Option</li></select> @keyframes fade-in { from { opacity: 0; } to { opacity: 1; } }"
715"A h1 containing a blue button with radial-gradient(circle, pink, purple) background that says 'Submit', followed by a large text description, with spin.","<h1><button style='background-color: linear-gradient(to bottom, blue, green); font-size: 20px; animation: fade-in 2s;'>Hello World</button><p style='font-size: 20px;'>hello world</p></h1> @keyframes bounce { 0%, 20%, 50%, 80%, 100% { transform: translateY(0); } 40% { transform: translateY(-30px); } 60% { transform: translateY(-15px); } } transition: background-color 0.4s ease;"
716"A responsive p with a grid layout using template 'repeat(3, 1fr)', containing items with small text and :hover { box-shadow: 0 0 10px rgba(0, 0, 0, 0.5); }.","<footer 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: red; border: 1px groove cyan;'>Sign Up</li><li style='color: black; border: 1px groove orange;'>Login</li><li style='color: purple; border: 1px ridge orange;'>Sign Up</li><li style='color: green; border: 1px dotted orange;'>Enter Your Name</li><li style='color: red; border: 1px dashed green;'>Sign Up</li></footer> @keyframes slide-up { from { transform: translateY(100%); } to { transform: translateY(0); } }"
717"A gray box with dashed border, linear-gradient(to bottom, blue, green) background, large text centered inside, using inline-block layout, with :hover { transform: scale(1.1); } and bounce.","<div style='background: linear-gradient(to right, red, yellow); border: 2px solid white; font-size: 16px; text-align: center; display: grid; justify-content: space-between; align-items: center; animation: bounce 2s; transition: background-color 0.4s ease; :hover { background-color: #555; color: white; }'>Login</div> @keyframes fade-in { from { opacity: 0; } to { opacity: 1; } }"
718"A p containing a white button with linear-gradient(to bottom, blue, green) background that says 'Choose Option', followed by a medium text description, with slide-up.","<span><button style='background-color: linear-gradient(to bottom, blue, green); font-size: 20px; animation: bounce 2s;'>Search</button><p style='font-size: 20px;'>contact us</p></span> @keyframes spin { from { transform: rotate(0deg); } to { transform: rotate(360deg); } } transition: all 0.3s ease;"
719"A green box with double border, linear-gradient(to right, red, yellow) background, medium text centered inside, using none layout, with :hover { transform: scale(1.1); } and slide-up.","<div style='background: radial-gradient(circle, pink, purple); border: 2px dotted red; font-size: 20px; text-align: center; display: block; justify-content: center; align-items: center; animation: slide-up 2s; transition: background-color 0.4s ease; :hover { transform: scale(1.1); }'>Hello World</div> @keyframes slide-up { from { transform: translateY(100%); } to { transform: translateY(0); } }"
720"A responsive input with a grid layout using template '1fr 2fr', containing items with small text and :hover { box-shadow: 0 0 10px rgba(0, 0, 0, 0.5); }.","<select style='display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px; :hover { box-shadow: 0 0 10px rgba(0, 0, 0, 0.5); }'><li style='color: purple; border: 1px solid yellow;'>Search</li><li style='color: cyan; border: 1px solid blue;'>Enter Your Name</li><li style='color: pink; border: 1px double pink;'>Submit</li><li style='color: gray; border: 1px double purple;'>Login</li><li style='color: black; border: 1px dashed blue;'>Submit</li></select> @keyframes bounce { 0%, 20%, 50%, 80%, 100% { transform: translateY(0); } 40% { transform: translateY(-30px); } 60% { transform: translateY(-15px); } }"
721"A header containing a pink button with linear-gradient(to bottom, blue, green) background that says 'Submit', followed by a small text description, with spin.","<footer><button style='background-color: linear-gradient(to bottom, blue, green); font-size: 16px; animation: spin 2s;'>Contact Us</button><p style='font-size: 16px;'>hello world</p></footer> @keyframes fade-in { from { opacity: 0; } to { opacity: 1; } } transition: transform 0.2s ease-in-out;"
722"A large header with red text, Georgia font, 2px 2px 5px rgba(0, 0, 0, 0.3), and spin, displayed as flex with flex-start, responsive with media queries.","<h1 style='color: cyan; font-size: 14px; font-family: Verdana; box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.3); display: block; justify-content: flex-end; animation: slide-up 2s; transition: all 0.3s ease;'>Choose Option</h1> @keyframes fade-in { from { opacity: 0; } to { opacity: 1; } } @media (min-width: 600px) and (max-width: 1200px) { font-size: 16px; }"
723"A white button with medium Georgia text, using inline-block layout, aligned to the center, with 0 4px 8px rgba(0, 0, 0, 0.2), spin, and a :hover { background-color: #555; color: white; }.","<button style='background-color: gray; font-size: 16px; font-family: Verdana; display: none; text-align: right; box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); animation: bounce 2s; transition: background-color 0.4s ease; :hover { background-color: #555; color: white; }'>Contact Us</button> @keyframes bounce { 0%, 20%, 50%, 80%, 100% { transform: translateY(0); } 40% { transform: translateY(-30px); } 60% { transform: translateY(-15px); } }"
724"A div containing a black button with linear-gradient(to right, red, yellow) background that says 'Submit', followed by a medium text description, with spin.","<textarea><button style='background-color: linear-gradient(to bottom, blue, green); font-size: 28px; animation: fade-in 2s;'>Login</button><p style='font-size: 28px;'>login</p></textarea> @keyframes bounce { 0%, 20%, 50%, 80%, 100% { transform: translateY(0); } 40% { transform: translateY(-30px); } 60% { transform: translateY(-15px); } } transition: transform 0.2s ease-in-out;"
725"A h2 containing a list of options with blue text, each inside a solid box, with 2px 2px 5px rgba(0, 0, 0, 0.3), spin, and @media (min-width: 600px) and (max-width: 1200px) { font-size: 16px; }.","<button><ul style='box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.3); animation: spin 1.5s;'><li style='color: red; border: 1px groove green;'>Enter Your Name</li><li style='color: pink; border: 1px solid orange;'>Login</li><li style='color: pink; border: 1px solid black;'>Search</li><li style='color: black; border: 1px ridge black;'>Submit</li><li style='color: gray; border: 1px ridge purple;'>Hello World</li></ul></button> @keyframes spin { from { transform: rotate(0deg); } to { transform: rotate(360deg); } } @media (max-width: 600px) { font-size: 14px; }"
726"A h3 containing a red button with linear-gradient(to right, red, yellow) background that says 'Hello World', followed by a small text description, with slide-up.","<h2><button style='background-color: linear-gradient(to bottom, blue, green); font-size: 12px; animation: bounce 2s;'>Search</button><p style='font-size: 12px;'>click me</p></h2> @keyframes slide-up { from { transform: translateY(100%); } to { transform: translateY(0); } } transition: all 0.3s ease;"
727"A h1 containing a black button with radial-gradient(circle, pink, purple) background that says 'Hello World', followed by a small text description, with spin.","<span><button style='background-color: linear-gradient(to bottom, blue, green); font-size: 16px; animation: fade-in 2s;'>Sign Up</button><p style='font-size: 16px;'>submit</p></span> @keyframes spin { from { transform: rotate(0deg); } to { transform: rotate(360deg); } } transition: transform 0.2s ease-in-out;"
728"A header containing a red button with linear-gradient(to right, red, yellow) background that says 'Hello World', followed by a small text description, with fade-in.","<h2><button style='background-color: linear-gradient(to bottom, blue, green); font-size: 26px; animation: spin 2s;'>Enter Your Name</button><p style='font-size: 26px;'>sign up</p></h2> @keyframes fade-in { from { opacity: 0; } to { opacity: 1; } } transition: background-color 0.4s ease;"
729"A gray box with ridge border, linear-gradient(to bottom, blue, green) background, small text centered inside, using block layout, with :hover { box-shadow: 0 0 10px rgba(0, 0, 0, 0.5); } and spin.","<div style='background: radial-gradient(circle, pink, purple); border: 2px ridge pink; font-size: 20px; text-align: center; display: none; justify-content: flex-start; align-items: center; animation: fade-in 2s; transition: background-color 0.4s ease; :hover { box-shadow: 0 0 10px rgba(0, 0, 0, 0.5); }'>Click Me</div> @keyframes fade-in { from { opacity: 0; } to { opacity: 1; } }"
730"A p containing a pink button with linear-gradient(to right, red, yellow) background that says 'Contact Us', followed by a large text description, with bounce.","<select><button style='background-color: linear-gradient(to right, red, yellow); font-size: 14px; animation: bounce 2s;'>Sign Up</button><p style='font-size: 14px;'>choose option</p></select> @keyframes slide-up { from { transform: translateY(100%); } to { transform: translateY(0); } } transition: background-color 0.4s ease;"
731"A responsive h3 with a grid layout using template '1fr 2fr', containing items with large text and :hover { box-shadow: 0 0 10px rgba(0, 0, 0, 0.5); }.",<nav style='display: grid; grid-template-columns: 1fr 2fr; gap: 10px; :hover { background-color: #555; color: white; }'><li style='color: white; border: 1px ridge white;'>Submit</li><li style='color: yellow; border: 1px groove yellow;'>Submit</li><li style='color: pink; border: 1px dotted red;'>Contact Us</li><li style='color: gray; border: 1px solid gray;'>Sign Up</li><li style='color: pink; border: 1px dashed red;'>Click Me</li></nav> @keyframes slide-up { from { transform: translateY(100%); } to { transform: translateY(0); } }
732"A responsive h1 with a grid layout using template 'repeat(3, 1fr)', containing items with medium text and :hover { box-shadow: 0 0 10px rgba(0, 0, 0, 0.5); }.","<span style='display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px; :hover { transform: scale(1.1); }'><li style='color: blue; border: 1px dashed purple;'>Contact Us</li><li style='color: yellow; border: 1px dashed cyan;'>Click Me</li><li style='color: cyan; border: 1px dotted blue;'>Submit</li><li style='color: blue; border: 1px dashed purple;'>Enter Your Name</li><li style='color: purple; border: 1px double black;'>Contact Us</li></span> @keyframes fade-in { from { opacity: 0; } to { opacity: 1; } }"
733"A small textarea with black text, Helvetica font, 4px 4px 10px rgba(0, 0, 0, 0.5), and bounce, displayed as flex with space-between, responsive with media queries.","<button style='color: red; font-size: 26px; font-family: Times New Roman; box-shadow: 4px 4px 10px rgba(0, 0, 0, 0.5); display: grid; justify-content: space-between; animation: slide-up 2s; transition: background-color 0.4s ease;'>Click Me</button> @keyframes spin { from { transform: rotate(0deg); } to { transform: rotate(360deg); } } @media (min-width: 600px) and (max-width: 1200px) { font-size: 16px; }"
734"A orange button with medium Times New Roman text, using none layout, aligned to the left, with 4px 4px 10px rgba(0, 0, 0, 0.5), bounce, and a :hover { transform: scale(1.1); }.","<button style='background-color: red; font-size: 20px; font-family: Verdana; display: block; text-align: center; box-shadow: none; animation: bounce 2s; transition: background-color 0.4s ease; :hover { box-shadow: 0 0 10px rgba(0, 0, 0, 0.5); }'>Click Me</button> @keyframes fade-in { from { opacity: 0; } to { opacity: 1; } }"
735"A h2 containing a pink button with linear-gradient(to bottom, blue, green) background that says 'Submit', followed by a medium text description, with fade-in.","<header><button style='background-color: radial-gradient(circle, pink, purple); font-size: 20px; animation: fade-in 2s;'>Click Me</button><p style='font-size: 20px;'>click me</p></header> @keyframes bounce { 0%, 20%, 50%, 80%, 100% { transform: translateY(0); } 40% { transform: translateY(-30px); } 60% { transform: translateY(-15px); } } transition: all 0.3s ease;"
736"A white button with large Tahoma text, using grid layout, aligned to the center, with 0 4px 8px rgba(0, 0, 0, 0.2), slide-up, and a :hover { background-color: #555; color: white; }.","<button style='background-color: gray; font-size: 14px; font-family: Tahoma; display: inline-block; text-align: center; box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.3); animation: slide-up 2s; transition: background-color 0.4s ease; :hover { box-shadow: 0 0 10px rgba(0, 0, 0, 0.5); }'>Choose Option</button> @keyframes bounce { 0%, 20%, 50%, 80%, 100% { transform: translateY(0); } 40% { transform: translateY(-30px); } 60% { transform: translateY(-15px); } }"
737"A orange box with groove border, radial-gradient(circle, pink, purple) background, large text centered inside, using none layout, with :hover { background-color: #555; color: white; } and fade-in.","<div style='background: linear-gradient(to bottom, blue, green); border: 2px dotted green; font-size: 20px; text-align: center; display: grid; justify-content: space-between; align-items: center; animation: fade-in 2s; transition: transform 0.2s ease-in-out; :hover { background-color: #555; color: white; }'>Enter Your Name</div> @keyframes fade-in { from { opacity: 0; } to { opacity: 1; } }"
738"A green button with medium Verdana text, using block layout, aligned to the center, with none, fade-in, and a :hover { transform: scale(1.1); }.","<button style='background-color: white; font-size: 20px; font-family: Arial; display: block; text-align: justify; box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); animation: slide-up 2s; transition: background-color 0.4s ease; :hover { transform: scale(1.1); }'>Sign Up</button> @keyframes fade-in { from { opacity: 0; } to { opacity: 1; } }"
739"A blue button with large Verdana text, using inline-block layout, aligned to the left, with 0 4px 8px rgba(0, 0, 0, 0.2), slide-up, and a :hover { background-color: #555; color: white; }.","<button style='background-color: gray; font-size: 30px; font-family: Verdana; display: grid; text-align: right; box-shadow: 4px 4px 10px rgba(0, 0, 0, 0.5); animation: spin 2s; transition: transform 0.2s ease-in-out; :hover { transform: scale(1.1); }'>Search</button> @keyframes slide-up { from { transform: translateY(100%); } to { transform: translateY(0); } }"
740"A nav containing a blue button with linear-gradient(to bottom, blue, green) background that says 'Hello World', followed by a medium text description, with slide-up.","<span><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></span> @keyframes fade-in { from { opacity: 0; } to { opacity: 1; } } transition: transform 0.2s ease-in-out;"
741"A responsive header with a grid layout using template '1fr 2fr', containing items with large text and :hover { box-shadow: 0 0 10px rgba(0, 0, 0, 0.5); }.","<span style='display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px; :hover { transform: scale(1.1); }'><li style='color: purple; border: 1px groove blue;'>Search</li><li style='color: red; border: 1px solid pink;'>Enter Your Name</li><li style='color: black; border: 1px dotted yellow;'>Search</li><li style='color: cyan; border: 1px double black;'>Enter Your Name</li><li style='color: cyan; border: 1px dotted pink;'>Contact Us</li></span> @keyframes fade-in { from { opacity: 0; } to { opacity: 1; } }"
742"A nav containing a list of options with gray text, each inside a groove box, with 0 4px 8px rgba(0, 0, 0, 0.2), slide-up, and @media (max-width: 600px) { font-size: 14px; }.","<div><ul style='box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.3); animation: bounce 1.5s;'><li style='color: black; border: 1px groove gray;'>Contact Us</li><li style='color: yellow; border: 1px ridge pink;'>Submit</li><li style='color: purple; border: 1px solid yellow;'>Sign Up</li><li style='color: yellow; border: 1px groove purple;'>Enter Your Name</li><li style='color: pink; border: 1px double blue;'>Sign Up</li></ul></div> @keyframes bounce { 0%, 20%, 50%, 80%, 100% { transform: translateY(0); } 40% { transform: translateY(-30px); } 60% { transform: translateY(-15px); } } @media (min-width: 600px) and (max-width: 1200px) { font-size: 16px; }"
743"A input containing a list of options with green text, each inside a double box, with none, fade-in, and @media (min-width: 600px) and (max-width: 1200px) { font-size: 16px; }.","<textarea><ul style='box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.3); animation: bounce 1.5s;'><li style='color: cyan; border: 1px double green;'>Choose Option</li><li style='color: green; border: 1px dotted gray;'>Contact Us</li><li style='color: blue; border: 1px ridge black;'>Search</li><li style='color: black; border: 1px groove orange;'>Choose Option</li><li style='color: cyan; border: 1px double cyan;'>Sign Up</li></ul></textarea> @keyframes slide-up { from { transform: translateY(100%); } to { transform: translateY(0); } } @media (min-width: 1200px) { font-size: 18px; }"
744"A footer containing a cyan button with linear-gradient(to bottom, blue, green) background that says 'Click Me', followed by a small text description, with spin.","<footer><button style='background-color: linear-gradient(to bottom, blue, green); font-size: 18px; animation: spin 2s;'>Click Me</button><p style='font-size: 18px;'>contact us</p></footer> @keyframes slide-up { from { transform: translateY(100%); } to { transform: translateY(0); } } transition: background-color 0.4s ease;"
745"A textarea containing a list of options with pink text, each inside a double box, with 2px 2px 5px rgba(0, 0, 0, 0.3), spin, and @media (max-width: 600px) { font-size: 14px; }.","<h3><ul style='box-shadow: 4px 4px 10px rgba(0, 0, 0, 0.5); animation: fade-in 1.5s;'><li style='color: orange; border: 1px double blue;'>Submit</li><li style='color: white; border: 1px groove black;'>Sign Up</li><li style='color: green; border: 1px ridge gray;'>Submit</li><li style='color: white; border: 1px dotted black;'>Search</li><li style='color: pink; border: 1px groove green;'>Hello World</li></ul></h3> @keyframes spin { from { transform: rotate(0deg); } to { transform: rotate(360deg); } } @media (min-width: 600px) and (max-width: 1200px) { font-size: 16px; }"
746"A blue box with groove 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 slide-up.","<div style='background: radial-gradient(circle, pink, purple); border: 2px dashed black; font-size: 28px; text-align: center; display: none; justify-content: space-around; align-items: center; animation: fade-in 2s; transition: all 0.3s ease; :hover { box-shadow: 0 0 10px rgba(0, 0, 0, 0.5); }'>Enter Your Name</div> @keyframes bounce { 0%, 20%, 50%, 80%, 100% { transform: translateY(0); } 40% { transform: translateY(-30px); } 60% { transform: translateY(-15px); } }"
747"A white box with ridge border, linear-gradient(to right, red, yellow) background, large text centered inside, using block layout, with :hover { transform: scale(1.1); } and bounce.","<div style='background: radial-gradient(circle, pink, purple); border: 2px groove green; font-size: 22px; text-align: center; display: inline-block; justify-content: space-around; align-items: center; animation: bounce 2s; transition: all 0.3s ease; :hover { background-color: #555; color: white; }'>Contact Us</div> @keyframes spin { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }"
748"A responsive footer with a grid layout using template 'repeat(3, 1fr)', containing items with small text and :hover { background-color: #555; color: white; }.","<nav style='display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; :hover { transform: scale(1.1); }'><li style='color: cyan; border: 1px double green;'>Choose Option</li><li style='color: black; border: 1px ridge red;'>Click Me</li><li style='color: blue; border: 1px ridge gray;'>Search</li><li style='color: pink; border: 1px solid blue;'>Sign Up</li><li style='color: red; border: 1px ridge purple;'>Contact Us</li></nav> @keyframes bounce { 0%, 20%, 50%, 80%, 100% { transform: translateY(0); } 40% { transform: translateY(-30px); } 60% { transform: translateY(-15px); } }"
749"A select containing a list of options with gray text, each inside a solid box, with none, bounce, and @media (min-width: 600px) and (max-width: 1200px) { font-size: 16px; }.","<button><ul style='box-shadow: 4px 4px 10px rgba(0, 0, 0, 0.5); animation: bounce 1.5s;'><li style='color: purple; border: 1px double cyan;'>Sign Up</li><li style='color: cyan; border: 1px ridge orange;'>Contact Us</li><li style='color: green; border: 1px dashed pink;'>Contact Us</li><li style='color: green; border: 1px dotted white;'>Search</li><li style='color: white; border: 1px double gray;'>Enter Your Name</li></ul></button> @keyframes bounce { 0%, 20%, 50%, 80%, 100% { transform: translateY(0); } 40% { transform: translateY(-30px); } 60% { transform: translateY(-15px); } } @media (min-width: 600px) and (max-width: 1200px) { font-size: 16px; }"
750"A large h1 with yellow text, Tahoma font, 0 4px 8px rgba(0, 0, 0, 0.2), and bounce, displayed as flex with flex-end, responsive with media queries.",<button style='color: yellow; font-size: 20px; font-family: Helvetica; box-shadow: none; display: flex; justify-content: flex-start; animation: fade-in 2s; transition: transform 0.2s ease-in-out;'>Choose Option</button> @keyframes spin { from { transform: rotate(0deg); } to { transform: rotate(360deg); } } @media (max-width: 600px) { font-size: 14px; }
751"A yellow button with large Georgia text, using grid layout, aligned to the right, with 2px 2px 5px rgba(0, 0, 0, 0.3), spin, and a :hover { box-shadow: 0 0 10px rgba(0, 0, 0, 0.5); }.","<button style='background-color: blue; font-size: 28px; font-family: Georgia; display: inline-block; text-align: center; box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); animation: bounce 2s; transition: all 0.3s ease; :hover { transform: scale(1.1); }'>Choose Option</button> @keyframes bounce { 0%, 20%, 50%, 80%, 100% { transform: translateY(0); } 40% { transform: translateY(-30px); } 60% { transform: translateY(-15px); } }"
752"A purple button with small Arial text, using grid layout, aligned to the right, with 0 4px 8px rgba(0, 0, 0, 0.2), spin, and a :hover { background-color: #555; color: white; }.","<button style='background-color: purple; font-size: 14px; font-family: Georgia; display: flex; text-align: center; box-shadow: none; animation: bounce 2s; transition: all 0.3s ease; :hover { transform: scale(1.1); }'>Search</button> @keyframes bounce { 0%, 20%, 50%, 80%, 100% { transform: translateY(0); } 40% { transform: translateY(-30px); } 60% { transform: translateY(-15px); } }"
753"A p containing a list of options with orange text, each inside a dashed box, with 0 4px 8px rgba(0, 0, 0, 0.2), spin, and @media (min-width: 600px) and (max-width: 1200px) { font-size: 16px; }.","<h1><ul style='box-shadow: 4px 4px 10px rgba(0, 0, 0, 0.5); animation: bounce 1.5s;'><li style='color: orange; border: 1px double black;'>Sign Up</li><li style='color: orange; border: 1px dotted yellow;'>Choose Option</li><li style='color: white; border: 1px solid black;'>Contact Us</li><li style='color: yellow; border: 1px groove white;'>Submit</li><li style='color: cyan; border: 1px double cyan;'>Submit</li></ul></h1> @keyframes bounce { 0%, 20%, 50%, 80%, 100% { transform: translateY(0); } 40% { transform: translateY(-30px); } 60% { transform: translateY(-15px); } } @media (min-width: 1200px) { font-size: 18px; }"
754"A large footer with green text, Verdana font, none, and slide-up, displayed as inline-block with center, responsive with media queries.","<button style='color: orange; font-size: 24px; font-family: Arial; box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); display: inline-block; justify-content: flex-start; animation: bounce 2s; transition: background-color 0.4s ease;'>Click Me</button> @keyframes fade-in { from { opacity: 0; } to { opacity: 1; } } @media (min-width: 1200px) { font-size: 18px; }"
755"A large button with yellow text, Courier New font, none, and fade-in, displayed as none with space-around, responsive with media queries.","<input style='color: pink; font-size: 28px; font-family: Tahoma; box-shadow: 4px 4px 10px rgba(0, 0, 0, 0.5); display: block; justify-content: space-around; animation: fade-in 2s; transition: all 0.3s ease;'>Sign Up</input> @keyframes bounce { 0%, 20%, 50%, 80%, 100% { transform: translateY(0); } 40% { transform: translateY(-30px); } 60% { transform: translateY(-15px); } } @media (max-width: 600px) { font-size: 14px; }"
756"A header containing a green button with linear-gradient(to bottom, blue, green) background that says 'Choose Option', followed by a small text description, with fade-in.","<h2><button style='background-color: linear-gradient(to bottom, blue, green); font-size: 16px; animation: bounce 2s;'>Contact Us</button><p style='font-size: 16px;'>search</p></h2> @keyframes spin { from { transform: rotate(0deg); } to { transform: rotate(360deg); } } transition: all 0.3s ease;"
757"A blue button with small Arial text, using flex layout, aligned to the center, with 0 4px 8px rgba(0, 0, 0, 0.2), 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: Arial; display: none; text-align: justify; box-shadow: none; animation: spin 2s; transition: background-color 0.4s ease; :hover { background-color: #555; color: white; }'>Hello World</button> @keyframes slide-up { from { transform: translateY(100%); } to { transform: translateY(0); } }
758"A pink box with ridge border, linear-gradient(to bottom, blue, green) background, medium text centered inside, using grid layout, with :hover { background-color: #555; color: white; } and spin.","<div style='background: linear-gradient(to bottom, blue, green); border: 2px double red; font-size: 22px; text-align: center; display: grid; justify-content: space-around; align-items: center; animation: fade-in 2s; transition: transform 0.2s ease-in-out; :hover { background-color: #555; color: white; }'>Contact Us</div> @keyframes spin { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }"
759"A cyan box with dotted border, linear-gradient(to right, red, yellow) background, medium text centered inside, using block layout, with :hover { background-color: #555; color: white; } and slide-up.","<div style='background: radial-gradient(circle, pink, purple); border: 2px dotted white; font-size: 20px; text-align: center; display: none; justify-content: center; align-items: center; animation: spin 2s; transition: background-color 0.4s ease; :hover { background-color: #555; color: white; }'>Sign Up</div> @keyframes fade-in { from { opacity: 0; } to { opacity: 1; } }"
760"A h1 containing a yellow button with linear-gradient(to right, red, yellow) background that says 'Enter Your Name', followed by a large text description, with slide-up.","<input><button style='background-color: linear-gradient(to right, red, yellow); font-size: 26px; animation: bounce 2s;'>Hello World</button><p style='font-size: 26px;'>search</p></input> @keyframes bounce { 0%, 20%, 50%, 80%, 100% { transform: translateY(0); } 40% { transform: translateY(-30px); } 60% { transform: translateY(-15px); } } transition: all 0.3s ease;"
761"A responsive h3 with a grid layout using template 'repeat(2, 1fr)', containing items with medium text and :hover { background-color: #555; color: white; }.","<header style='display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px; :hover { background-color: #555; color: white; }'><li style='color: pink; border: 1px groove green;'>Submit</li><li style='color: orange; border: 1px solid black;'>Contact Us</li><li style='color: gray; border: 1px dashed blue;'>Contact Us</li><li style='color: orange; border: 1px dashed white;'>Search</li><li style='color: yellow; border: 1px dotted yellow;'>Submit</li></header> @keyframes slide-up { from { transform: translateY(100%); } to { transform: translateY(0); } }"
762"A responsive div with a grid layout using template '100px 1fr', containing items with medium text and :hover { box-shadow: 0 0 10px rgba(0, 0, 0, 0.5); }.","<nav 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: orange; border: 1px dashed blue;'>Sign Up</li><li style='color: cyan; border: 1px dotted orange;'>Search</li><li style='color: purple; border: 1px solid blue;'>Search</li><li style='color: gray; border: 1px solid cyan;'>Search</li><li style='color: yellow; border: 1px dashed blue;'>Choose Option</li></nav> @keyframes fade-in { from { opacity: 0; } to { opacity: 1; } }"
763"A input containing a list of options with orange text, each inside a dotted 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; }.","<p><ul style='box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.3); animation: spin 1.5s;'><li style='color: cyan; border: 1px groove gray;'>Choose Option</li><li style='color: green; border: 1px dotted purple;'>Click Me</li><li style='color: gray; border: 1px double cyan;'>Click Me</li><li style='color: red; border: 1px dashed yellow;'>Sign Up</li><li style='color: purple; border: 1px solid cyan;'>Sign Up</li></ul></p> @keyframes spin { from { transform: rotate(0deg); } to { transform: rotate(360deg); } } @media (min-width: 1200px) { font-size: 18px; }"
764"A blue box with solid border, radial-gradient(circle, pink, purple) background, large text centered inside, using inline-block layout, with :hover { box-shadow: 0 0 10px rgba(0, 0, 0, 0.5); } and spin.","<div style='background: radial-gradient(circle, pink, purple); border: 2px double cyan; font-size: 26px; text-align: center; display: grid; justify-content: flex-end; align-items: center; animation: slide-up 2s; transition: transform 0.2s ease-in-out; :hover { box-shadow: 0 0 10px rgba(0, 0, 0, 0.5); }'>Choose Option</div> @keyframes bounce { 0%, 20%, 50%, 80%, 100% { transform: translateY(0); } 40% { transform: translateY(-30px); } 60% { transform: translateY(-15px); } }"
765"A gray box with groove border, radial-gradient(circle, pink, purple) background, small text centered inside, using block 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 dashed pink; font-size: 16px; text-align: center; display: block; justify-content: center; align-items: center; animation: fade-in 2s; transition: all 0.3s ease; :hover { background-color: #555; color: white; }'>Click Me</div> @keyframes spin { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }"
766"A yellow box with dotted border, radial-gradient(circle, pink, purple) background, medium text centered inside, using flex layout, with :hover { background-color: #555; color: white; } and bounce.","<div style='background: linear-gradient(to right, red, yellow); border: 2px ridge blue; font-size: 26px; text-align: center; display: block; justify-content: center; align-items: center; animation: spin 2s; transition: transform 0.2s ease-in-out; :hover { transform: scale(1.1); }'>Enter Your Name</div> @keyframes fade-in { from { opacity: 0; } to { opacity: 1; } }"
767"A white button with small Georgia text, using none layout, aligned to the justify, with 0 4px 8px rgba(0, 0, 0, 0.2), fade-in, and a :hover { box-shadow: 0 0 10px rgba(0, 0, 0, 0.5); }.",<button style='background-color: pink; font-size: 12px; font-family: Georgia; display: inline-block; text-align: justify; box-shadow: none; animation: slide-up 2s; transition: transform 0.2s ease-in-out; :hover { transform: scale(1.1); }'>Login</button> @keyframes fade-in { from { opacity: 0; } to { opacity: 1; } }
768"A cyan box with solid border, radial-gradient(circle, pink, purple) background, medium text centered inside, using grid layout, with :hover { box-shadow: 0 0 10px rgba(0, 0, 0, 0.5); } and slide-up.","<div style='background: linear-gradient(to bottom, blue, green); border: 2px solid green; font-size: 26px; 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); }'>Submit</div> @keyframes fade-in { from { opacity: 0; } to { opacity: 1; } }"
769"A select containing a pink button with linear-gradient(to right, red, yellow) background that says 'Click Me', followed by a medium text description, with fade-in.","<footer><button style='background-color: radial-gradient(circle, pink, purple); font-size: 18px; animation: slide-up 2s;'>Submit</button><p style='font-size: 18px;'>login</p></footer> @keyframes spin { from { transform: rotate(0deg); } to { transform: rotate(360deg); } } transition: transform 0.2s ease-in-out;"
770"A p containing a list of options with pink text, each inside a double box, with 4px 4px 10px rgba(0, 0, 0, 0.5), fade-in, and @media (min-width: 1200px) { font-size: 18px; }.","<textarea><ul style='box-shadow: 4px 4px 10px rgba(0, 0, 0, 0.5); animation: fade-in 1.5s;'><li style='color: orange; border: 1px dotted gray;'>Click Me</li><li style='color: green; border: 1px double blue;'>Sign Up</li><li style='color: purple; border: 1px dotted pink;'>Enter Your Name</li><li style='color: black; border: 1px dashed gray;'>Choose Option</li><li style='color: green; border: 1px ridge blue;'>Sign Up</li></ul></textarea> @keyframes spin { from { transform: rotate(0deg); } to { transform: rotate(360deg); } } @media (min-width: 600px) and (max-width: 1200px) { font-size: 16px; }"
771"A h1 containing a list of options with white text, each inside a dotted box, with 4px 4px 10px rgba(0, 0, 0, 0.5), slide-up, and @media (max-width: 600px) { font-size: 14px; }.","<button><ul style='box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.3); animation: slide-up 1.5s;'><li style='color: green; border: 1px dashed blue;'>Enter Your Name</li><li style='color: blue; border: 1px solid blue;'>Submit</li><li style='color: cyan; border: 1px double green;'>Submit</li><li style='color: orange; border: 1px dashed cyan;'>Contact Us</li><li style='color: gray; border: 1px solid white;'>Click Me</li></ul></button> @keyframes spin { from { transform: rotate(0deg); } to { transform: rotate(360deg); } } @media (max-width: 600px) { font-size: 14px; }"
772"A h3 containing a list of options with pink text, each inside a dotted box, with 2px 2px 5px rgba(0, 0, 0, 0.3), spin, and @media (max-width: 600px) { font-size: 14px; }.",<span><ul style='box-shadow: none; animation: spin 1.5s;'><li style='color: green; border: 1px dashed red;'>Choose Option</li><li style='color: green; border: 1px dashed green;'>Search</li><li style='color: orange; border: 1px dotted white;'>Hello World</li><li style='color: cyan; border: 1px double black;'>Choose Option</li><li style='color: gray; border: 1px dotted red;'>Sign Up</li></ul></span> @keyframes fade-in { from { opacity: 0; } to { opacity: 1; } } @media (min-width: 1200px) { font-size: 18px; }
773"A span containing a list of options with gray text, each inside a groove box, with 0 4px 8px rgba(0, 0, 0, 0.2), fade-in, and @media (min-width: 1200px) { font-size: 18px; }.","<h3><ul style='box-shadow: 4px 4px 10px rgba(0, 0, 0, 0.5); animation: spin 1.5s;'><li style='color: white; border: 1px double pink;'>Contact Us</li><li style='color: yellow; border: 1px groove cyan;'>Click Me</li><li style='color: blue; border: 1px solid red;'>Submit</li><li style='color: cyan; border: 1px solid blue;'>Choose Option</li><li style='color: pink; border: 1px solid green;'>Submit</li></ul></h3> @keyframes bounce { 0%, 20%, 50%, 80%, 100% { transform: translateY(0); } 40% { transform: translateY(-30px); } 60% { transform: translateY(-15px); } } @media (max-width: 600px) { font-size: 14px; }"
774"A red box with dotted border, linear-gradient(to right, red, yellow) background, large text centered inside, using grid layout, with :hover { background-color: #555; color: white; } and bounce.","<div style='background: radial-gradient(circle, pink, purple); border: 2px double gray; font-size: 28px; text-align: center; display: flex; justify-content: flex-end; align-items: center; animation: fade-in 2s; transition: all 0.3s ease; :hover { transform: scale(1.1); }'>Hello World</div> @keyframes fade-in { from { opacity: 0; } to { opacity: 1; } }"
775"A green box with dashed border, linear-gradient(to bottom, blue, green) background, medium text centered inside, using block layout, with :hover { background-color: #555; color: white; } and spin.","<div style='background: radial-gradient(circle, pink, purple); border: 2px groove blue; font-size: 24px; text-align: center; display: none; justify-content: flex-start; align-items: center; animation: slide-up 2s; transition: background-color 0.4s ease; :hover { box-shadow: 0 0 10px rgba(0, 0, 0, 0.5); }'>Hello World</div> @keyframes bounce { 0%, 20%, 50%, 80%, 100% { transform: translateY(0); } 40% { transform: translateY(-30px); } 60% { transform: translateY(-15px); } }"
776"A h3 containing a cyan button with linear-gradient(to bottom, blue, green) background that says 'Login', followed by a small text description, with fade-in.","<nav><button style='background-color: linear-gradient(to right, red, yellow); font-size: 14px; animation: fade-in 2s;'>Hello World</button><p style='font-size: 14px;'>login</p></nav> @keyframes bounce { 0%, 20%, 50%, 80%, 100% { transform: translateY(0); } 40% { transform: translateY(-30px); } 60% { transform: translateY(-15px); } } transition: background-color 0.4s ease;"
777"A white button with large Georgia text, using block layout, aligned to the justify, with none, fade-in, and a :hover { background-color: #555; color: white; }.","<button style='background-color: pink; font-size: 18px; font-family: Helvetica; display: block; text-align: left; box-shadow: 4px 4px 10px rgba(0, 0, 0, 0.5); animation: slide-up 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 slide-up { from { transform: translateY(100%); } to { transform: translateY(0); } }"
778"A span containing a list of options with green text, each inside a groove box, with 4px 4px 10px rgba(0, 0, 0, 0.5), fade-in, and @media (min-width: 600px) and (max-width: 1200px) { font-size: 16px; }.","<header><ul style='box-shadow: 4px 4px 10px rgba(0, 0, 0, 0.5); animation: spin 1.5s;'><li style='color: gray; border: 1px dotted yellow;'>Enter Your Name</li><li style='color: black; border: 1px solid yellow;'>Search</li><li style='color: red; border: 1px dotted black;'>Hello World</li><li style='color: black; border: 1px solid gray;'>Choose Option</li><li style='color: green; border: 1px dashed green;'>Contact Us</li></ul></header> @keyframes bounce { 0%, 20%, 50%, 80%, 100% { transform: translateY(0); } 40% { transform: translateY(-30px); } 60% { transform: translateY(-15px); } } @media (min-width: 600px) and (max-width: 1200px) { font-size: 16px; }"
779"A responsive select with a grid layout using template '1fr 2fr', containing items with medium text and :hover { background-color: #555; color: white; }.","<button style='display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; :hover { transform: scale(1.1); }'><li style='color: white; border: 1px dotted gray;'>Hello World</li><li style='color: blue; border: 1px solid black;'>Search</li><li style='color: blue; border: 1px solid cyan;'>Submit</li><li style='color: black; border: 1px dotted yellow;'>Login</li><li style='color: white; border: 1px double blue;'>Choose Option</li></button> @keyframes spin { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }"
780"A button containing a yellow button with radial-gradient(circle, pink, purple) background that says 'Hello World', followed by a medium text description, with bounce.","<p><button style='background-color: linear-gradient(to bottom, blue, green); font-size: 30px; animation: fade-in 2s;'>Hello World</button><p style='font-size: 30px;'>hello world</p></p> @keyframes fade-in { from { opacity: 0; } to { opacity: 1; } } transition: background-color 0.4s ease;"
781"A black button with large Helvetica text, using none layout, aligned to the right, with 2px 2px 5px rgba(0, 0, 0, 0.3), slide-up, and a :hover { box-shadow: 0 0 10px rgba(0, 0, 0, 0.5); }.","<button style='background-color: gray; font-size: 12px; font-family: Helvetica; display: grid; text-align: center; box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.3); animation: spin 2s; transition: all 0.3s ease; :hover { box-shadow: 0 0 10px rgba(0, 0, 0, 0.5); }'>Search</button> @keyframes spin { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }"
782"A input containing a yellow button with radial-gradient(circle, pink, purple) background that says 'Click Me', followed by a medium text description, with bounce.","<button><button style='background-color: radial-gradient(circle, pink, purple); font-size: 12px; animation: slide-up 2s;'>Enter Your Name</button><p style='font-size: 12px;'>submit</p></button> @keyframes spin { from { transform: rotate(0deg); } to { transform: rotate(360deg); } } transition: transform 0.2s ease-in-out;"
783"A select containing a yellow button with linear-gradient(to bottom, blue, green) background that says 'Choose Option', followed by a medium text description, with fade-in.","<h3><button style='background-color: radial-gradient(circle, pink, purple); font-size: 28px; animation: slide-up 2s;'>Submit</button><p style='font-size: 28px;'>submit</p></h3> @keyframes spin { from { transform: rotate(0deg); } to { transform: rotate(360deg); } } transition: transform 0.2s ease-in-out;"
784"A medium p with red text, Arial font, 4px 4px 10px rgba(0, 0, 0, 0.5), and fade-in, displayed as inline-block with space-between, responsive with media queries.","<p style='color: blue; font-size: 30px; font-family: Times New Roman; box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.3); display: none; justify-content: space-around; animation: slide-up 2s; transition: all 0.3s ease;'>Submit</p> @keyframes fade-in { from { opacity: 0; } to { opacity: 1; } } @media (min-width: 600px) and (max-width: 1200px) { font-size: 16px; }"
785"A nav containing a black button with linear-gradient(to right, red, yellow) background that says 'Enter Your Name', followed by a large text description, with spin.","<textarea><button style='background-color: linear-gradient(to right, red, yellow); font-size: 18px; animation: fade-in 2s;'>Choose Option</button><p style='font-size: 18px;'>click me</p></textarea> @keyframes slide-up { from { transform: translateY(100%); } to { transform: translateY(0); } } transition: all 0.3s ease;"
786"A select containing a list of options with black text, each inside a groove box, with 0 4px 8px rgba(0, 0, 0, 0.2), bounce, and @media (max-width: 600px) { font-size: 14px; }.",<span><ul style='box-shadow: none; animation: spin 1.5s;'><li style='color: pink; border: 1px solid orange;'>Sign Up</li><li style='color: green; border: 1px ridge pink;'>Choose Option</li><li style='color: white; border: 1px ridge black;'>Login</li><li style='color: black; border: 1px dashed gray;'>Submit</li><li style='color: cyan; border: 1px groove purple;'>Login</li></ul></span> @keyframes spin { from { transform: rotate(0deg); } to { transform: rotate(360deg); } } @media (min-width: 600px) and (max-width: 1200px) { font-size: 16px; }
787"A small input with purple text, Helvetica font, none, and spin, displayed as grid with space-around, responsive with media queries.",<span style='color: yellow; font-size: 26px; font-family: Tahoma; box-shadow: none; display: grid; justify-content: space-around; animation: bounce 2s; transition: transform 0.2s ease-in-out;'>Hello World</span> @keyframes slide-up { from { transform: translateY(100%); } to { transform: translateY(0); } } @media (max-width: 600px) { font-size: 14px; }
788"A footer containing a yellow button with radial-gradient(circle, pink, purple) background that says 'Enter Your Name', followed by a medium text description, with bounce.","<span><button style='background-color: radial-gradient(circle, pink, purple); font-size: 12px; animation: slide-up 2s;'>Sign Up</button><p style='font-size: 12px;'>login</p></span> @keyframes bounce { 0%, 20%, 50%, 80%, 100% { transform: translateY(0); } 40% { transform: translateY(-30px); } 60% { transform: translateY(-15px); } } transition: background-color 0.4s ease;"
789"A red button with large Times New Roman text, using grid layout, aligned to the right, with 4px 4px 10px rgba(0, 0, 0, 0.5), fade-in, and a :hover { background-color: #555; color: white; }.","<button style='background-color: white; font-size: 26px; font-family: Verdana; display: block; text-align: center; box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); animation: slide-up 2s; transition: transform 0.2s ease-in-out; :hover { transform: scale(1.1); }'>Login</button> @keyframes spin { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }"
790"A orange button with medium Georgia text, using inline-block layout, aligned to the justify, with 4px 4px 10px rgba(0, 0, 0, 0.5), slide-up, and a :hover { background-color: #555; color: white; }.","<button style='background-color: pink; font-size: 12px; font-family: Helvetica; display: block; text-align: justify; box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.3); animation: slide-up 2s; transition: transform 0.2s ease-in-out; :hover { background-color: #555; color: white; }'>Enter Your Name</button> @keyframes slide-up { from { transform: translateY(100%); } to { transform: translateY(0); } }"
791"A footer containing a list of options with purple 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; }.",<nav><ul style='box-shadow: none; animation: slide-up 1.5s;'><li style='color: white; border: 1px ridge pink;'>Contact Us</li><li style='color: white; border: 1px double pink;'>Contact Us</li><li style='color: cyan; border: 1px dashed orange;'>Choose Option</li><li style='color: orange; border: 1px double gray;'>Contact Us</li><li style='color: green; border: 1px dotted yellow;'>Sign Up</li></ul></nav> @keyframes slide-up { from { transform: translateY(100%); } to { transform: translateY(0); } } @media (min-width: 600px) and (max-width: 1200px) { font-size: 16px; }
792"A h3 containing a cyan button with radial-gradient(circle, pink, purple) background that says 'Contact Us', followed by a medium text description, with spin.","<p><button style='background-color: linear-gradient(to bottom, blue, green); font-size: 24px; animation: bounce 2s;'>Choose Option</button><p style='font-size: 24px;'>search</p></p> @keyframes slide-up { from { transform: translateY(100%); } to { transform: translateY(0); } } transition: background-color 0.4s ease;"
793"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), bounce, and @media (min-width: 1200px) { font-size: 18px; }.","<header><ul style='box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); animation: fade-in 1.5s;'><li style='color: pink; border: 1px dotted green;'>Submit</li><li style='color: orange; border: 1px ridge blue;'>Submit</li><li style='color: orange; border: 1px groove green;'>Choose Option</li><li style='color: green; border: 1px dashed blue;'>Submit</li><li style='color: green; border: 1px groove white;'>Enter Your Name</li></ul></header> @keyframes fade-in { from { opacity: 0; } to { opacity: 1; } } @media (max-width: 600px) { font-size: 14px; }"
794"A cyan button with medium Arial text, using flex layout, aligned to the right, with none, bounce, and a :hover { background-color: #555; color: white; }.","<button style='background-color: cyan; font-size: 28px; font-family: Georgia; display: inline-block; text-align: right; box-shadow: none; animation: spin 2s; transition: background-color 0.4s ease; :hover { background-color: #555; color: white; }'>Sign Up</button> @keyframes bounce { 0%, 20%, 50%, 80%, 100% { transform: translateY(0); } 40% { transform: translateY(-30px); } 60% { transform: translateY(-15px); } }"
795"A button containing a purple button with linear-gradient(to bottom, blue, green) background that says 'Hello World', followed by a medium text description, with spin.","<footer><button style='background-color: linear-gradient(to right, red, yellow); font-size: 16px; animation: spin 2s;'>Hello World</button><p style='font-size: 16px;'>sign up</p></footer> @keyframes slide-up { from { transform: translateY(100%); } to { transform: translateY(0); } } transition: all 0.3s ease;"
796"A select containing a orange button with linear-gradient(to right, red, yellow) background that says 'Sign Up', followed by a medium text description, with slide-up.","<select><button style='background-color: linear-gradient(to right, red, yellow); font-size: 30px; animation: bounce 2s;'>Enter Your Name</button><p style='font-size: 30px;'>click me</p></select> @keyframes slide-up { from { transform: translateY(100%); } to { transform: translateY(0); } } transition: transform 0.2s ease-in-out;"
797"A pink button with large Tahoma text, using flex layout, aligned to the justify, with 4px 4px 10px rgba(0, 0, 0, 0.5), slide-up, and a :hover { transform: scale(1.1); }.","<button style='background-color: black; font-size: 28px; font-family: Helvetica; display: flex; text-align: center; box-shadow: 4px 4px 10px rgba(0, 0, 0, 0.5); animation: slide-up 2s; transition: transform 0.2s ease-in-out; :hover { background-color: #555; color: white; }'>Enter Your Name</button> @keyframes bounce { 0%, 20%, 50%, 80%, 100% { transform: translateY(0); } 40% { transform: translateY(-30px); } 60% { transform: translateY(-15px); } }"
798"A responsive textarea with a grid layout using template 'repeat(3, 1fr)', containing items with large text and :hover { background-color: #555; color: white; }.","<select style='display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px; :hover { background-color: #555; color: white; }'><li style='color: red; border: 1px dashed green;'>Submit</li><li style='color: blue; border: 1px double red;'>Search</li><li style='color: green; border: 1px double white;'>Submit</li><li style='color: orange; border: 1px solid orange;'>Search</li><li style='color: yellow; border: 1px double orange;'>Search</li></select> @keyframes slide-up { from { transform: translateY(100%); } to { transform: translateY(0); } }"
799"A p containing a list of options with gray text, each inside a solid box, with none, bounce, and @media (min-width: 600px) and (max-width: 1200px) { font-size: 16px; }.","<select><ul style='box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); animation: spin 1.5s;'><li style='color: purple; border: 1px dotted blue;'>Contact Us</li><li style='color: orange; border: 1px ridge purple;'>Search</li><li style='color: white; border: 1px dashed purple;'>Contact Us</li><li style='color: black; border: 1px groove white;'>Hello World</li><li style='color: cyan; border: 1px solid yellow;'>Hello World</li></ul></select> @keyframes fade-in { from { opacity: 0; } to { opacity: 1; } } @media (min-width: 600px) and (max-width: 1200px) { font-size: 16px; }"
800"A responsive nav 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); }.",<nav style='display: grid; grid-template-columns: 100px 1fr; gap: 10px; :hover { transform: scale(1.1); }'><li style='color: gray; border: 1px groove yellow;'>Enter Your Name</li><li style='color: yellow; border: 1px dotted orange;'>Click Me</li><li style='color: orange; border: 1px solid green;'>Submit</li><li style='color: yellow; border: 1px groove green;'>Click Me</li><li style='color: orange; border: 1px dotted green;'>Search</li></nav> @keyframes slide-up { from { transform: translateY(100%); } to { transform: translateY(0); } }
801"A large span with green text, Courier New font, 4px 4px 10px rgba(0, 0, 0, 0.5), and bounce, displayed as grid with center, responsive with media queries.","<button style='color: red; font-size: 16px; font-family: Georgia; box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); display: inline-block; justify-content: flex-start; animation: slide-up 2s; transition: background-color 0.4s ease;'>Enter Your Name</button> @keyframes spin { from { transform: rotate(0deg); } to { transform: rotate(360deg); } } @media (max-width: 600px) { font-size: 14px; }"
802"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: 1; } }"
803"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) and (max-width: 1200px) { font-size: 16px; }"
804"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(-15px); } } transition: all 0.3s ease;"
805"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.4s ease;"
806"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); } to { transform: rotate(360deg); } }"
807"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 { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }"
808"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</li><li style='color: gray; border: 1px dotted pink;'>Search</li></ul></input> @keyframes spin { from { transform: rotate(0deg); } to { transform: rotate(360deg); } } @media (max-width: 600px) { font-size: 14px; }
809"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> @keyframes fade-in { from { opacity: 0; } to { opacity: 1; } }"
810"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: translateY(-30px); } 60% { transform: translateY(-15px); } } @media (min-width: 600px) and (max-width: 1200px) { font-size: 16px; }"
811"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: 1200px) { font-size: 18px; }"
812"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> @keyframes bounce { 0%, 20%, 50%, 80%, 100% { transform: translateY(0); } 40% { transform: translateY(-30px); } 60% { transform: translateY(-15px); } }"
813"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: 600px) { font-size: 14px; }
814"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 blue;'>Search</li><li style='color: gray; border: 1px double gray;'>Enter Your Name</li></ul></p> @keyframes slide-up { from { transform: translateY(100%); } to { transform: translateY(0); } } @media (min-width: 1200px) { font-size: 18px; }"
815"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 (max-width: 1200px) { font-size: 16px; }"
816"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;"
817"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: translateY(-15px); } } transition: background-color 0.4s ease;"
818"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: green; border: 1px dashed yellow;'>Sign Up</li><li style='color: purple; border: 1px groove yellow;'>Login</li></nav> @keyframes spin { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }
819"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;"
820"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><li style='color: orange; border: 1px dashed red;'>Contact Us</li><li style='color: black; border: 1px ridge blue;'>Contact Us</li></nav> @keyframes bounce { 0%, 20%, 50%, 80%, 100% { transform: translateY(0); } 40% { transform: translateY(-30px); } 60% { transform: translateY(-15px); } }"
821"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: 1px dashed white;'>Login</li><li style='color: blue; border: 1px groove black;'>Login</li></ul></span> @keyframes slide-up { from { transform: translateY(100%); } to { transform: translateY(0); } } @media (max-width: 600px) { font-size: 14px; }"
822"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: translateY(-30px); } 60% { transform: translateY(-15px); } } @media (min-width: 1200px) { font-size: 18px; }"
823"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) { font-size: 14px; }"
824"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><li style='color: white; border: 1px groove orange;'>Click Me</li></ul></div> @keyframes fade-in { from { opacity: 0; } to { opacity: 1; } } @media (min-width: 600px) and (max-width: 1200px) { font-size: 16px; }
825"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;"
826"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 { from { opacity: 0; } to { opacity: 1; } }"
827"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-in { from { opacity: 0; } to { opacity: 1; } }"
828"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 style='color: yellow; border: 1px ridge black;'>Click Me</li><li style='color: white; border: 1px groove white;'>Hello World</li></p> @keyframes bounce { 0%, 20%, 50%, 80%, 100% { transform: translateY(0); } 40% { transform: translateY(-30px); } 60% { transform: translateY(-15px); } }"
829"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;"
830"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 Option</div> @keyframes bounce { 0%, 20%, 50%, 80%, 100% { transform: translateY(0); } 40% { transform: translateY(-30px); } 60% { transform: translateY(-15px); } }"
831"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 slide-up { from { transform: translateY(100%); } to { transform: translateY(0); } }"
832"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</li><li style='color: white; border: 1px ridge pink;'>Search</li></ul></button> @keyframes slide-up { from { transform: translateY(100%); } to { transform: translateY(0); } } @media (min-width: 600px) and (max-width: 1200px) { font-size: 16px; }
833"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 double gray;'>Choose Option</li><li style='color: cyan; border: 1px ridge black;'>Search</li></ul></h2> @keyframes bounce { 0%, 20%, 50%, 80%, 100% { transform: translateY(0); } 40% { transform: translateY(-30px); } 60% { transform: translateY(-15px); } } @media (max-width: 600px) { font-size: 14px; }"
834"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;"
835"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: rotate(0deg); } to { transform: rotate(360deg); } }"
836"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 { transform: rotate(360deg); } }"
837"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 { 0%, 20%, 50%, 80%, 100% { transform: translateY(0); } 40% { transform: translateY(-30px); } 60% { transform: translateY(-15px); } }"
838"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(-15px); } } @media (max-width: 600px) { font-size: 14px; }"
839"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: 600px) { font-size: 14px; }
840"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% { transform: translateY(-30px); } 60% { transform: translateY(-15px); } }"
841"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); } } @media (min-width: 1200px) { font-size: 18px; }"
842"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(-15px); } } transition: background-color 0.4s ease;"
843"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;'>Login</li><li style='color: green; border: 1px dotted yellow;'>Contact Us</li></ul></select> @keyframes spin { from { transform: rotate(0deg); } to { transform: rotate(360deg); } } @media (min-width: 1200px) { font-size: 18px; }"
844"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(360deg); } } @media (min-width: 600px) and (max-width: 1200px) { font-size: 16px; }"
845"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 ridge gray;'>Choose Option</li><li style='color: orange; border: 1px groove black;'>Search</li></ul></h1> @keyframes spin { from { transform: rotate(0deg); } to { transform: rotate(360deg); } } @media (min-width: 600px) and (max-width: 1200px) { font-size: 16px; }"
846"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;"
847"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 ease;"
848"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 Option</li><li style='color: pink; border: 1px ridge black;'>Choose Option</li><li style='color: orange; border: 1px dotted white;'>Enter Your Name</li></input> @keyframes bounce { 0%, 20%, 50%, 80%, 100% { transform: translateY(0); } 40% { transform: translateY(-30px); } 60% { transform: translateY(-15px); } }"
849"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 style='color: orange; border: 1px dotted yellow;'>Click Me</li></ul></h2> @keyframes bounce { 0%, 20%, 50%, 80%, 100% { transform: translateY(0); } 40% { transform: translateY(-30px); } 60% { transform: translateY(-15px); } } @media (min-width: 1200px) { font-size: 18px; }"
850"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;"
851"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-width: 1200px) { font-size: 18px; }"
852"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</li><li style='color: yellow; border: 1px solid gray;'>Hello World</li><li style='color: pink; border: 1px groove purple;'>Click Me</li></div> @keyframes bounce { 0%, 20%, 50%, 80%, 100% { transform: translateY(0); } 40% { transform: translateY(-30px); } 60% { transform: translateY(-15px); } }"
853"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;'>Login</li><li style='color: black; border: 1px dashed gray;'>Search</li></ul></div> @keyframes spin { from { transform: rotate(0deg); } to { transform: rotate(360deg); } } @media (max-width: 600px) { font-size: 14px; }"
854"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 solid white;'>Enter Your Name</li><li style='color: pink; border: 1px dashed pink;'>Search</li></ul></header> @keyframes spin { from { transform: rotate(0deg); } to { transform: rotate(360deg); } } @media (max-width: 600px) { font-size: 14px; }"
855"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</li><li style='color: blue; border: 1px dashed gray;'>Sign Up</li><li style='color: green; border: 1px groove orange;'>Submit</li></footer> @keyframes fade-in { from { opacity: 0; } to { opacity: 1; } }"
856"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 double purple;'>Hello World</li><li style='color: cyan; border: 1px dotted yellow;'>Click Me</li></ul></p> @keyframes fade-in { from { opacity: 0; } to { opacity: 1; } } @media (min-width: 600px) and (max-width: 1200px) { font-size: 16px; }"
857"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;'>Sign Up</li><li style='color: pink; border: 1px groove purple;'>Click Me</li><li style='color: purple; border: 1px double black;'>Enter Your Name</li></input> @keyframes spin { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }"
858"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 blue;'>Enter Your Name</li><li style='color: orange; border: 1px solid cyan;'>Search</li></ul></p> @keyframes slide-up { from { transform: translateY(100%); } to { transform: translateY(0); } } @media (min-width: 1200px) { font-size: 18px; }"
859"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;"
860"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 groove green;'>Hello World</li><li style='color: green; border: 1px solid gray;'>Login</li></ul></h1> @keyframes fade-in { from { opacity: 0; } to { opacity: 1; } } @media (min-width: 1200px) { font-size: 18px; }"
861"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</div> @keyframes slide-up { from { transform: translateY(100%); } to { transform: translateY(0); } }"
862"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 dotted blue;'>Hello World</li><li style='color: white; border: 1px ridge green;'>Enter Your Name</li></ul></footer> @keyframes slide-up { from { transform: translateY(100%); } to { transform: translateY(0); } } @media (max-width: 600px) { font-size: 14px; }"
863"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;'>Contact Us</li><li style='color: pink; border: 1px groove cyan;'>Hello World</li></ul></span> @keyframes fade-in { from { opacity: 0; } to { opacity: 1; } } @media (max-width: 600px) { font-size: 14px; }"
864"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 { transform: translateY(0); } }
865"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 fade-in { from { opacity: 0; } to { opacity: 1; } }"
866"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-up { from { transform: translateY(100%); } to { transform: translateY(0); } }"
867"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;'>Contact Us</li><li style='color: red; border: 1px groove red;'>Submit</li></ul></textarea> @keyframes bounce { 0%, 20%, 50%, 80%, 100% { transform: translateY(0); } 40% { transform: translateY(-30px); } 60% { transform: translateY(-15px); } } @media (min-width: 600px) and (max-width: 1200px) { font-size: 16px; }"
868"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%, 20%, 50%, 80%, 100% { transform: translateY(0); } 40% { transform: translateY(-30px); } 60% { transform: translateY(-15px); } }"
869"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 bounce { 0%, 20%, 50%, 80%, 100% { transform: translateY(0); } 40% { transform: translateY(-30px); } 60% { transform: translateY(-15px); } }"
870"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% { transform: translateY(-30px); } 60% { transform: translateY(-15px); } } @media (max-width: 600px) { font-size: 14px; }"
871"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: translateY(0); } } @media (min-width: 600px) and (max-width: 1200px) { font-size: 16px; }"
872"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='color: purple; border: 1px solid black;'>Login</li><li style='color: black; border: 1px ridge orange;'>Submit</li></h1> @keyframes fade-in { from { opacity: 0; } to { opacity: 1; } }"
873"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;"
874"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;"
875"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: translateY(0); } } @media (max-width: 600px) { font-size: 14px; }"
876"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</li><li style='color: blue; border: 1px dotted orange;'>Login</li><li style='color: orange; border: 1px dotted yellow;'>Enter Your Name</li></textarea> @keyframes fade-in { from { opacity: 0; } to { opacity: 1; } }"
877"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: translateY(0); } }
878"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 Name</div> @keyframes spin { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }"
879"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; border: 1px double red;'>Hello World</li><li style='color: purple; border: 1px solid gray;'>Choose Option</li></ul></button> @keyframes fade-in { from { opacity: 0; } to { opacity: 1; } } @media (max-width: 600px) { font-size: 14px; }"
880"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-width: 1200px) { font-size: 18px; }"
881"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> @keyframes slide-up { from { transform: translateY(100%); } to { transform: translateY(0); } }"
882"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: translateY(0); } 40% { transform: translateY(-30px); } 60% { transform: translateY(-15px); } }"
883"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;"
884"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> @keyframes slide-up { from { transform: translateY(100%); } to { transform: translateY(0); } }"
885"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; border: 1px groove black;'>Hello World</li><li style='color: purple; border: 1px double gray;'>Submit</li></ul></textarea> @keyframes slide-up { from { transform: translateY(100%); } to { transform: translateY(0); } } @media (min-width: 600px) and (max-width: 1200px) { font-size: 16px; }"
886"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 purple;'>Enter Your Name</li><li style='color: green; border: 1px ridge purple;'>Login</li></ul></input> @keyframes slide-up { from { transform: translateY(100%); } to { transform: translateY(0); } } @media (min-width: 1200px) { font-size: 18px; }"
887"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 { from { opacity: 0; } to { opacity: 1; } }"
888"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; } }
889"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: translateY(-15px); } } transition: background-color 0.4s ease;"
890"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</li><li style='color: cyan; border: 1px ridge purple;'>Hello World</li><li style='color: gray; border: 1px groove pink;'>Login</li></h1> @keyframes fade-in { from { opacity: 0; } to { opacity: 1; } }"
891"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;'>Search</li><li style='color: white; border: 1px dotted white;'>Submit</li></ul></p> @keyframes bounce { 0%, 20%, 50%, 80%, 100% { transform: translateY(0); } 40% { transform: translateY(-30px); } 60% { transform: translateY(-15px); } } @media (max-width: 600px) { font-size: 14px; }"
892"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: 1px ridge white;'>Click Me</li><li style='color: blue; border: 1px dotted purple;'>Search</li></ul></nav> @keyframes bounce { 0%, 20%, 50%, 80%, 100% { transform: translateY(0); } 40% { transform: translateY(-30px); } 60% { transform: translateY(-15px); } } @media (min-width: 1200px) { font-size: 18px; }"
893"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;"
894"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 purple;'>Submit</li><li style='color: blue; border: 1px ridge black;'>Choose Option</li></ul></h1> @keyframes bounce { 0%, 20%, 50%, 80%, 100% { transform: translateY(0); } 40% { transform: translateY(-30px); } 60% { transform: translateY(-15px); } } @media (min-width: 600px) and (max-width: 1200px) { font-size: 16px; }"
895"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 style='color: cyan; border: 1px dotted gray;'>Contact Us</li><li style='color: black; border: 1px double gray;'>Choose Option</li></textarea> @keyframes bounce { 0%, 20%, 50%, 80%, 100% { transform: translateY(0); } 40% { transform: translateY(-30px); } 60% { transform: translateY(-15px); } }"
896"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='color: orange; border: 1px dotted blue;'>Hello World</li><li style='color: cyan; border: 1px groove gray;'>Search</li></h3> @keyframes spin { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }
897"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%); } to { transform: translateY(0); } }
898"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-up { from { transform: translateY(100%); } to { transform: translateY(0); } }"
899"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 { 0%, 20%, 50%, 80%, 100% { transform: translateY(0); } 40% { transform: translateY(-30px); } 60% { transform: translateY(-15px); } }"
900"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 groove green;'>Contact Us</li><li style='color: yellow; border: 1px double orange;'>Login</li></ul></span> @keyframes bounce { 0%, 20%, 50%, 80%, 100% { transform: translateY(0); } 40% { transform: translateY(-30px); } 60% { transform: translateY(-15px); } } @media (min-width: 1200px) { font-size: 18px; }"
901"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;"
902"A black button with medium Georgia text, using block layout, aligned to the left, with 0 4px 8px rgba(0, 0, 0, 0.2), fade-in, and a :hover { box-shadow: 0 0 10px rgba(0, 0, 0, 0.5); }.","<button style='background-color: white; font-size: 30px; font-family: Helvetica; display: inline-block; text-align: center; box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); animation: spin 2s; transition: all 0.3s ease; :hover { background-color: #555; color: white; }'>Hello World</button> @keyframes bounce { 0%, 20%, 50%, 80%, 100% { transform: translateY(0); } 40% { transform: translateY(-30px); } 60% { transform: translateY(-15px); } }"
903"A purple box with dashed border, linear-gradient(to bottom, blue, green) background, medium text centered inside, using grid layout, with :hover { box-shadow: 0 0 10px rgba(0, 0, 0, 0.5); } and spin.","<div style='background: linear-gradient(to bottom, blue, green); border: 2px ridge cyan; font-size: 18px; text-align: center; display: none; justify-content: flex-end; align-items: center; animation: slide-up 2s; transition: all 0.3s ease; :hover { background-color: #555; color: white; }'>Search</div> @keyframes spin { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }"
904"A green button with medium Georgia text, using inline-block layout, aligned to the justify, with 2px 2px 5px rgba(0, 0, 0, 0.3), bounce, and a :hover { transform: scale(1.1); }.","<button style='background-color: yellow; font-size: 12px; font-family: Helvetica; display: grid; text-align: left; box-shadow: 4px 4px 10px rgba(0, 0, 0, 0.5); animation: spin 2s; transition: transform 0.2s ease-in-out; :hover { background-color: #555; color: white; }'>Search</button> @keyframes slide-up { from { transform: translateY(100%); } to { transform: translateY(0); } }"
905"A yellow button with medium Courier New text, using inline-block layout, aligned to the justify, with 2px 2px 5px rgba(0, 0, 0, 0.3), slide-up, and a :hover { box-shadow: 0 0 10px rgba(0, 0, 0, 0.5); }.","<button style='background-color: yellow; font-size: 12px; font-family: Verdana; display: inline-block; text-align: center; box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); animation: slide-up 2s; transition: transform 0.2s ease-in-out; :hover { box-shadow: 0 0 10px rgba(0, 0, 0, 0.5); }'>Contact Us</button> @keyframes slide-up { from { transform: translateY(100%); } to { transform: translateY(0); } }"
906"A small div with gray text, Verdana font, 0 4px 8px rgba(0, 0, 0, 0.2), and fade-in, displayed as flex with flex-end, responsive with media queries.","<header style='color: yellow; font-size: 22px; font-family: Arial; box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); display: flex; justify-content: flex-end; animation: bounce 2s; transition: all 0.3s ease;'>Hello World</header> @keyframes bounce { 0%, 20%, 50%, 80%, 100% { transform: translateY(0); } 40% { transform: translateY(-30px); } 60% { transform: translateY(-15px); } } @media (min-width: 600px) and (max-width: 1200px) { font-size: 16px; }"
907"A yellow box with dotted border, linear-gradient(to bottom, blue, green) background, small text centered inside, using block layout, with :hover { background-color: #555; color: white; } and fade-in.","<div style='background: linear-gradient(to right, red, yellow); border: 2px solid purple; font-size: 26px; text-align: center; display: grid; justify-content: center; align-items: center; animation: bounce 2s; transition: background-color 0.4s ease; :hover { transform: scale(1.1); }'>Search</div> @keyframes fade-in { from { opacity: 0; } to { opacity: 1; } }"
908"A textarea containing a list of options with purple text, each inside a dashed box, with 2px 2px 5px rgba(0, 0, 0, 0.3), bounce, and @media (max-width: 600px) { font-size: 14px; }.","<h3><ul style='box-shadow: none; animation: slide-up 1.5s;'><li style='color: blue; border: 1px solid white;'>Login</li><li style='color: red; border: 1px ridge red;'>Sign Up</li><li style='color: white; border: 1px double blue;'>Hello World</li><li style='color: yellow; border: 1px dotted yellow;'>Submit</li><li style='color: pink; border: 1px groove blue;'>Search</li></ul></h3> @keyframes bounce { 0%, 20%, 50%, 80%, 100% { transform: translateY(0); } 40% { transform: translateY(-30px); } 60% { transform: translateY(-15px); } } @media (max-width: 600px) { font-size: 14px; }"
909"A h1 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 (max-width: 600px) { font-size: 14px; }.","<textarea><ul style='box-shadow: 4px 4px 10px rgba(0, 0, 0, 0.5); animation: bounce 1.5s;'><li style='color: blue; border: 1px dashed gray;'>Login</li><li style='color: red; border: 1px groove red;'>Click Me</li><li style='color: black; border: 1px solid red;'>Submit</li><li style='color: red; border: 1px dotted yellow;'>Sign Up</li><li style='color: green; border: 1px dashed pink;'>Hello World</li></ul></textarea> @keyframes fade-in { from { opacity: 0; } to { opacity: 1; } } @media (min-width: 600px) and (max-width: 1200px) { font-size: 16px; }"
910"A textarea containing a list of options with pink text, each inside a dashed box, with none, slide-up, and @media (min-width: 600px) and (max-width: 1200px) { font-size: 16px; }.","<h3><ul style='box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); animation: bounce 1.5s;'><li style='color: cyan; border: 1px solid gray;'>Search</li><li style='color: purple; border: 1px dotted blue;'>Search</li><li style='color: orange; border: 1px solid orange;'>Enter Your Name</li><li style='color: pink; border: 1px double gray;'>Login</li><li style='color: orange; border: 1px solid black;'>Enter Your Name</li></ul></h3> @keyframes spin { from { transform: rotate(0deg); } to { transform: rotate(360deg); } } @media (min-width: 600px) and (max-width: 1200px) { font-size: 16px; }"
911"A white button with large Verdana text, using grid layout, aligned to the justify, with 4px 4px 10px rgba(0, 0, 0, 0.5), slide-up, and a :hover { transform: scale(1.1); }.",<button style='background-color: cyan; font-size: 26px; font-family: Helvetica; display: none; text-align: right; box-shadow: none; animation: bounce 2s; transition: transform 0.2s ease-in-out; :hover { background-color: #555; color: white; }'>Sign Up</button> @keyframes spin { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }
912"A p containing a list of options with pink text, each inside a solid box, with 4px 4px 10px rgba(0, 0, 0, 0.5), bounce, and @media (min-width: 1200px) { font-size: 18px; }.","<textarea><ul style='box-shadow: none; animation: spin 1.5s;'><li style='color: white; border: 1px dashed black;'>Click Me</li><li style='color: white; border: 1px dotted green;'>Contact Us</li><li style='color: gray; border: 1px dotted blue;'>Login</li><li style='color: purple; border: 1px dashed green;'>Hello World</li><li style='color: red; border: 1px groove blue;'>Hello World</li></ul></textarea> @keyframes bounce { 0%, 20%, 50%, 80%, 100% { transform: translateY(0); } 40% { transform: translateY(-30px); } 60% { transform: translateY(-15px); } } @media (max-width: 600px) { font-size: 14px; }"
913"A red box with ridge border, linear-gradient(to right, red, yellow) background, small text centered inside, using none layout, with :hover { background-color: #555; color: white; } and fade-in.","<div style='background: linear-gradient(to right, red, yellow); border: 2px dotted cyan; font-size: 14px; text-align: center; display: inline-block; justify-content: space-around; align-items: center; animation: spin 2s; transition: transform 0.2s ease-in-out; :hover { box-shadow: 0 0 10px rgba(0, 0, 0, 0.5); }'>Enter Your Name</div> @keyframes slide-up { from { transform: translateY(100%); } to { transform: translateY(0); } }"
914"A medium div with black text, Courier New font, 4px 4px 10px rgba(0, 0, 0, 0.5), and spin, displayed as block with space-around, responsive with media queries.","<div style='color: white; font-size: 30px; font-family: Courier New; box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); display: grid; justify-content: space-between; animation: fade-in 2s; transition: background-color 0.4s ease;'>Hello World</div> @keyframes bounce { 0%, 20%, 50%, 80%, 100% { transform: translateY(0); } 40% { transform: translateY(-30px); } 60% { transform: translateY(-15px); } } @media (min-width: 600px) and (max-width: 1200px) { font-size: 16px; }"
915"A large nav with purple text, Verdana font, none, and fade-in, displayed as grid with flex-start, responsive with media queries.","<span style='color: yellow; font-size: 14px; font-family: Times New Roman; box-shadow: 4px 4px 10px rgba(0, 0, 0, 0.5); display: grid; justify-content: flex-start; animation: bounce 2s; transition: transform 0.2s ease-in-out;'>Login</span> @keyframes bounce { 0%, 20%, 50%, 80%, 100% { transform: translateY(0); } 40% { transform: translateY(-30px); } 60% { transform: translateY(-15px); } } @media (min-width: 600px) and (max-width: 1200px) { font-size: 16px; }"
916"A gray button with medium Georgia text, using none layout, aligned to the justify, with 2px 2px 5px rgba(0, 0, 0, 0.3), fade-in, and a :hover { background-color: #555; color: white; }.","<button style='background-color: green; font-size: 28px; font-family: Verdana; display: inline-block; text-align: right; box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); animation: spin 2s; transition: transform 0.2s ease-in-out; :hover { transform: scale(1.1); }'>Choose Option</button> @keyframes slide-up { from { transform: translateY(100%); } to { transform: translateY(0); } }"
917"A medium textarea with orange text, Verdana font, none, and bounce, displayed as inline-block with space-between, responsive with media queries.",<p style='color: blue; font-size: 12px; font-family: Helvetica; box-shadow: none; display: none; justify-content: space-between; animation: spin 2s; transition: background-color 0.4s ease;'>Choose Option</p> @keyframes spin { from { transform: rotate(0deg); } to { transform: rotate(360deg); } } @media (max-width: 600px) { font-size: 14px; }
918"A small h1 with pink text, Helvetica font, none, and slide-up, displayed as flex with space-around, responsive with media queries.","<nav style='color: pink; font-size: 12px; font-family: Courier New; box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); display: inline-block; justify-content: flex-end; animation: slide-up 2s; transition: transform 0.2s ease-in-out;'>Choose Option</nav> @keyframes spin { from { transform: rotate(0deg); } to { transform: rotate(360deg); } } @media (min-width: 600px) and (max-width: 1200px) { font-size: 16px; }"
919"A red box with groove border, linear-gradient(to bottom, blue, green) background, small 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 solid yellow; font-size: 22px; text-align: center; display: inline-block; justify-content: space-around; align-items: center; animation: bounce 2s; transition: all 0.3s ease; :hover { box-shadow: 0 0 10px rgba(0, 0, 0, 0.5); }'>Submit</div> @keyframes bounce { 0%, 20%, 50%, 80%, 100% { transform: translateY(0); } 40% { transform: translateY(-30px); } 60% { transform: translateY(-15px); } }"
920"A blue box with solid border, linear-gradient(to right, red, yellow) background, medium text centered inside, using grid layout, with :hover { background-color: #555; color: white; } and bounce.","<div style='background: linear-gradient(to right, red, yellow); border: 2px double purple; font-size: 24px; text-align: center; display: grid; justify-content: flex-start; align-items: center; animation: slide-up 2s; transition: all 0.3s ease; :hover { box-shadow: 0 0 10px rgba(0, 0, 0, 0.5); }'>Enter Your Name</div> @keyframes slide-up { from { transform: translateY(100%); } to { transform: translateY(0); } }"
921"A header containing a purple button with linear-gradient(to bottom, blue, green) background that says 'Sign Up', followed by a large text description, with spin.","<input><button style='background-color: radial-gradient(circle, pink, purple); font-size: 20px; animation: bounce 2s;'>Enter Your Name</button><p style='font-size: 20px;'>login</p></input> @keyframes fade-in { from { opacity: 0; } to { opacity: 1; } } transition: all 0.3s ease;"
922"A small header with yellow text, Verdana font, none, and bounce, displayed as flex with center, responsive with media queries.","<h2 style='color: gray; font-size: 16px; font-family: Helvetica; box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); display: grid; justify-content: space-between; animation: slide-up 2s; transition: background-color 0.4s ease;'>Search</h2> @keyframes fade-in { from { opacity: 0; } to { opacity: 1; } } @media (min-width: 600px) and (max-width: 1200px) { font-size: 16px; }"
923"A gray button with small Courier New text, using block layout, aligned to the right, with 0 4px 8px rgba(0, 0, 0, 0.2), fade-in, and a :hover { transform: scale(1.1); }.","<button style='background-color: orange; font-size: 30px; font-family: Verdana; display: block; text-align: justify; box-shadow: 4px 4px 10px rgba(0, 0, 0, 0.5); animation: slide-up 2s; transition: background-color 0.4s ease; :hover { transform: scale(1.1); }'>Hello World</button> @keyframes bounce { 0%, 20%, 50%, 80%, 100% { transform: translateY(0); } 40% { transform: translateY(-30px); } 60% { transform: translateY(-15px); } }"
924"A responsive button with a grid layout using template '1fr 2fr', containing items with small text and :hover { background-color: #555; color: white; }.",<input style='display: grid; grid-template-columns: 1fr 2fr; gap: 10px; :hover { background-color: #555; color: white; }'><li style='color: orange; border: 1px ridge red;'>Choose Option</li><li style='color: yellow; border: 1px ridge black;'>Search</li><li style='color: purple; border: 1px dotted white;'>Hello World</li><li style='color: purple; border: 1px groove white;'>Hello World</li><li style='color: cyan; border: 1px ridge gray;'>Hello World</li></input> @keyframes fade-in { from { opacity: 0; } to { opacity: 1; } }
925"A cyan button with medium Tahoma text, using none layout, aligned to the center, with 0 4px 8px rgba(0, 0, 0, 0.2), bounce, and a :hover { transform: scale(1.1); }.","<button style='background-color: black; font-size: 16px; font-family: Helvetica; display: grid; text-align: right; box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.3); animation: bounce 2s; transition: background-color 0.4s ease; :hover { background-color: #555; color: white; }'>Choose Option</button> @keyframes bounce { 0%, 20%, 50%, 80%, 100% { transform: translateY(0); } 40% { transform: translateY(-30px); } 60% { transform: translateY(-15px); } }"
926"A small button with pink text, Verdana font, 2px 2px 5px rgba(0, 0, 0, 0.3), and spin, displayed as grid with space-around, responsive with media queries.","<div style='color: black; font-size: 12px; font-family: Arial; box-shadow: 4px 4px 10px rgba(0, 0, 0, 0.5); display: block; justify-content: space-around; animation: slide-up 2s; transition: background-color 0.4s ease;'>Hello World</div> @keyframes slide-up { from { transform: translateY(100%); } to { transform: translateY(0); } } @media (max-width: 600px) { font-size: 14px; }"
927"A select containing a red button with radial-gradient(circle, pink, purple) background that says 'Sign Up', followed by a small text description, with bounce.","<p><button style='background-color: radial-gradient(circle, pink, purple); font-size: 18px; animation: bounce 2s;'>Search</button><p style='font-size: 18px;'>contact us</p></p> @keyframes slide-up { from { transform: translateY(100%); } to { transform: translateY(0); } } transition: transform 0.2s ease-in-out;"
928"A yellow 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: radial-gradient(circle, pink, purple); border: 2px dotted white; font-size: 24px; text-align: center; display: grid; justify-content: center; align-items: center; animation: slide-up 2s; transition: background-color 0.4s ease; :hover { transform: scale(1.1); }'>Search</div> @keyframes fade-in { from { opacity: 0; } to { opacity: 1; } }"
929"A responsive h1 with a grid layout using template '100px 1fr', containing items with medium text and :hover { transform: scale(1.1); }.","<footer style='display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; :hover { transform: scale(1.1); }'><li style='color: blue; border: 1px dotted yellow;'>Click Me</li><li style='color: white; border: 1px double cyan;'>Contact Us</li><li style='color: pink; border: 1px dashed black;'>Search</li><li style='color: white; border: 1px solid purple;'>Login</li><li style='color: red; border: 1px double green;'>Submit</li></footer> @keyframes slide-up { from { transform: translateY(100%); } to { transform: translateY(0); } }"
930"A h2 containing a list of options with white text, each inside a double box, with 0 4px 8px rgba(0, 0, 0, 0.2), spin, and @media (max-width: 600px) { font-size: 14px; }.","<textarea><ul style='box-shadow: 4px 4px 10px rgba(0, 0, 0, 0.5); animation: bounce 1.5s;'><li style='color: white; border: 1px ridge blue;'>Hello World</li><li style='color: yellow; border: 1px dotted white;'>Choose Option</li><li style='color: purple; border: 1px double blue;'>Choose Option</li><li style='color: pink; border: 1px dotted orange;'>Search</li><li style='color: gray; border: 1px dashed black;'>Enter Your Name</li></ul></textarea> @keyframes slide-up { from { transform: translateY(100%); } to { transform: translateY(0); } } @media (max-width: 600px) { font-size: 14px; }"
931"A medium input with orange text, Tahoma font, 2px 2px 5px rgba(0, 0, 0, 0.3), and slide-up, displayed as inline-block with space-between, responsive with media queries.","<button style='color: yellow; font-size: 30px; font-family: Courier New; box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.3); display: inline-block; justify-content: space-around; animation: slide-up 2s; transition: transform 0.2s ease-in-out;'>Sign Up</button> @keyframes slide-up { from { transform: translateY(100%); } to { transform: translateY(0); } } @media (min-width: 1200px) { font-size: 18px; }"
932"A responsive button with a grid layout using template '100px 1fr', containing items with large text and :hover { background-color: #555; color: white; }.",<select style='display: grid; grid-template-columns: 100px 1fr; gap: 10px; :hover { transform: scale(1.1); }'><li style='color: green; border: 1px groove gray;'>Enter Your Name</li><li style='color: gray; border: 1px double pink;'>Hello World</li><li style='color: purple; border: 1px groove pink;'>Choose Option</li><li style='color: orange; border: 1px ridge blue;'>Contact Us</li><li style='color: purple; border: 1px solid yellow;'>Search</li></select> @keyframes fade-in { from { opacity: 0; } to { opacity: 1; } }
933"A yellow button with medium Verdana text, using none layout, aligned to the center, with 2px 2px 5px rgba(0, 0, 0, 0.3), bounce, and a :hover { box-shadow: 0 0 10px rgba(0, 0, 0, 0.5); }.","<button style='background-color: yellow; font-size: 18px; font-family: Verdana; display: grid; text-align: right; box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); animation: slide-up 2s; transition: all 0.3s ease; :hover { box-shadow: 0 0 10px rgba(0, 0, 0, 0.5); }'>Contact Us</button> @keyframes spin { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }"
934"A white button with large Georgia text, using block 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: Tahoma; display: flex; text-align: left; box-shadow: 4px 4px 10px rgba(0, 0, 0, 0.5); animation: spin 2s; transition: transform 0.2s ease-in-out; :hover { background-color: #555; color: white; }'>Hello World</button> @keyframes bounce { 0%, 20%, 50%, 80%, 100% { transform: translateY(0); } 40% { transform: translateY(-30px); } 60% { transform: translateY(-15px); } }"
935"A pink button with small Courier New text, using grid layout, aligned to the left, with 2px 2px 5px rgba(0, 0, 0, 0.3), bounce, and a :hover { background-color: #555; color: white; }.","<button style='background-color: purple; font-size: 24px; font-family: Arial; display: grid; text-align: center; 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); }'>Sign Up</button> @keyframes fade-in { from { opacity: 0; } to { opacity: 1; } }"
936"A white box with solid border, linear-gradient(to right, red, yellow) background, medium text centered inside, using block layout, with :hover { box-shadow: 0 0 10px rgba(0, 0, 0, 0.5); } and slide-up.","<div style='background: radial-gradient(circle, pink, purple); border: 2px double black; font-size: 28px; text-align: center; display: flex; justify-content: center; align-items: center; animation: spin 2s; transition: background-color 0.4s ease; :hover { box-shadow: 0 0 10px rgba(0, 0, 0, 0.5); }'>Login</div> @keyframes fade-in { from { opacity: 0; } to { opacity: 1; } }"
937"A gray box with ridge border, radial-gradient(circle, pink, purple) 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 bottom, blue, green); border: 2px solid green; font-size: 24px; text-align: center; display: block; justify-content: space-around; align-items: center; animation: spin 2s; transition: transform 0.2s ease-in-out; :hover { box-shadow: 0 0 10px rgba(0, 0, 0, 0.5); }'>Search</div> @keyframes spin { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }"
938"A pink button with large Courier New text, using grid layout, aligned to the right, with 4px 4px 10px rgba(0, 0, 0, 0.5), bounce, and a :hover { transform: scale(1.1); }.","<button style='background-color: cyan; font-size: 26px; font-family: Times New Roman; display: grid; text-align: justify; box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.3); animation: bounce 2s; transition: background-color 0.4s ease; :hover { background-color: #555; color: white; }'>Choose Option</button> @keyframes slide-up { from { transform: translateY(100%); } to { transform: translateY(0); } }"
939"A small input with blue text, Tahoma font, none, and slide-up, displayed as none with space-between, responsive with media queries.","<div style='color: cyan; font-size: 16px; font-family: Helvetica; box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); display: inline-block; justify-content: space-between; animation: bounce 2s; transition: background-color 0.4s ease;'>Click Me</div> @keyframes bounce { 0%, 20%, 50%, 80%, 100% { transform: translateY(0); } 40% { transform: translateY(-30px); } 60% { transform: translateY(-15px); } } @media (min-width: 600px) and (max-width: 1200px) { font-size: 16px; }"
940"A yellow button with small Courier New text, using flex layout, aligned to the left, with 4px 4px 10px rgba(0, 0, 0, 0.5), bounce, and a :hover { box-shadow: 0 0 10px rgba(0, 0, 0, 0.5); }.","<button style='background-color: purple; font-size: 28px; font-family: Georgia; display: flex; text-align: left; box-shadow: 4px 4px 10px rgba(0, 0, 0, 0.5); animation: slide-up 2s; transition: transform 0.2s ease-in-out; :hover { box-shadow: 0 0 10px rgba(0, 0, 0, 0.5); }'>Login</button> @keyframes spin { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }"
941"A p containing a list of options with blue text, each inside a double box, with 2px 2px 5px rgba(0, 0, 0, 0.3), bounce, and @media (max-width: 600px) { font-size: 14px; }.","<h1><ul style='box-shadow: 4px 4px 10px rgba(0, 0, 0, 0.5); animation: bounce 1.5s;'><li style='color: red; border: 1px double purple;'>Search</li><li style='color: cyan; border: 1px dashed black;'>Enter Your Name</li><li style='color: purple; border: 1px dotted gray;'>Contact Us</li><li style='color: orange; border: 1px dotted blue;'>Sign Up</li><li style='color: black; border: 1px solid blue;'>Click Me</li></ul></h1> @keyframes fade-in { from { opacity: 0; } to { opacity: 1; } } @media (min-width: 1200px) { font-size: 18px; }"
942"A select containing a white button with radial-gradient(circle, pink, purple) background that says 'Contact Us', followed by a small text description, with spin.","<select><button style='background-color: linear-gradient(to right, red, yellow); font-size: 26px; animation: fade-in 2s;'>Sign Up</button><p style='font-size: 26px;'>hello world</p></select> @keyframes bounce { 0%, 20%, 50%, 80%, 100% { transform: translateY(0); } 40% { transform: translateY(-30px); } 60% { transform: translateY(-15px); } } transition: all 0.3s ease;"
943"A h2 containing a list of options with black text, each inside a dotted box, with 2px 2px 5px rgba(0, 0, 0, 0.3), fade-in, and @media (min-width: 600px) and (max-width: 1200px) { font-size: 16px; }.","<footer><ul style='box-shadow: 4px 4px 10px rgba(0, 0, 0, 0.5); animation: spin 1.5s;'><li style='color: purple; border: 1px dashed white;'>Submit</li><li style='color: gray; border: 1px dotted orange;'>Hello World</li><li style='color: pink; border: 1px groove green;'>Contact Us</li><li style='color: yellow; border: 1px dashed red;'>Search</li><li style='color: cyan; border: 1px groove yellow;'>Search</li></ul></footer> @keyframes fade-in { from { opacity: 0; } to { opacity: 1; } } @media (max-width: 600px) { font-size: 14px; }"
944"A p containing a list of options with green text, each inside a dotted box, with none, fade-in, and @media (max-width: 600px) { font-size: 14px; }.",<header><ul style='box-shadow: none; animation: fade-in 1.5s;'><li style='color: pink; border: 1px double green;'>Choose Option</li><li style='color: orange; border: 1px ridge black;'>Choose Option</li><li style='color: pink; border: 1px dashed white;'>Choose Option</li><li style='color: pink; border: 1px double green;'>Enter Your Name</li><li style='color: white; border: 1px groove gray;'>Contact Us</li></ul></header> @keyframes slide-up { from { transform: translateY(100%); } to { transform: translateY(0); } } @media (max-width: 600px) { font-size: 14px; }
945"A select containing a list of options with purple text, each inside a groove box, with 0 4px 8px rgba(0, 0, 0, 0.2), bounce, and @media (min-width: 600px) and (max-width: 1200px) { font-size: 16px; }.","<button><ul style='box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); animation: fade-in 1.5s;'><li style='color: gray; border: 1px ridge orange;'>Enter Your Name</li><li style='color: black; border: 1px ridge yellow;'>Choose Option</li><li style='color: red; border: 1px groove red;'>Login</li><li style='color: blue; border: 1px double orange;'>Hello World</li><li style='color: pink; border: 1px ridge blue;'>Hello World</li></ul></button> @keyframes bounce { 0%, 20%, 50%, 80%, 100% { transform: translateY(0); } 40% { transform: translateY(-30px); } 60% { transform: translateY(-15px); } } @media (min-width: 600px) and (max-width: 1200px) { font-size: 16px; }"
946"A responsive button 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); }.","<p style='display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; :hover { transform: scale(1.1); }'><li style='color: white; border: 1px ridge orange;'>Sign Up</li><li style='color: purple; border: 1px dotted cyan;'>Enter Your Name</li><li style='color: black; border: 1px dotted cyan;'>Contact Us</li><li style='color: gray; border: 1px groove blue;'>Submit</li><li style='color: yellow; border: 1px dotted orange;'>Hello World</li></p> @keyframes slide-up { from { transform: translateY(100%); } to { transform: translateY(0); } }"
947"A responsive textarea with a grid layout using template 'repeat(3, 1fr)', containing items with small text and :hover { background-color: #555; color: white; }.","<textarea style='display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; :hover { transform: scale(1.1); }'><li style='color: white; border: 1px ridge yellow;'>Choose Option</li><li style='color: cyan; border: 1px groove red;'>Sign Up</li><li style='color: green; border: 1px ridge green;'>Click Me</li><li style='color: white; border: 1px ridge white;'>Submit</li><li style='color: pink; border: 1px dotted white;'>Enter Your Name</li></textarea> @keyframes bounce { 0%, 20%, 50%, 80%, 100% { transform: translateY(0); } 40% { transform: translateY(-30px); } 60% { transform: translateY(-15px); } }"
948"A large div with purple text, Georgia font, 0 4px 8px rgba(0, 0, 0, 0.2), and bounce, displayed as block with space-between, responsive with media queries.","<footer style='color: black; font-size: 28px; font-family: Verdana; box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.3); display: inline-block; justify-content: space-between; animation: spin 2s; transition: background-color 0.4s ease;'>Login</footer> @keyframes bounce { 0%, 20%, 50%, 80%, 100% { transform: translateY(0); } 40% { transform: translateY(-30px); } 60% { transform: translateY(-15px); } } @media (max-width: 600px) { font-size: 14px; }"
949"A responsive header with a grid layout using template '1fr 2fr', containing items with small text and :hover { transform: scale(1.1); }.","<h2 style='display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; :hover { background-color: #555; color: white; }'><li style='color: blue; border: 1px groove gray;'>Choose Option</li><li style='color: pink; border: 1px dotted green;'>Choose Option</li><li style='color: gray; border: 1px double cyan;'>Submit</li><li style='color: orange; border: 1px solid white;'>Click Me</li><li style='color: green; border: 1px groove gray;'>Search</li></h2> @keyframes fade-in { from { opacity: 0; } to { opacity: 1; } }"
950"A red button with small Verdana text, using inline-block layout, aligned to the justify, with none, fade-in, and a :hover { background-color: #555; color: white; }.","<button style='background-color: white; font-size: 22px; font-family: Helvetica; display: block; text-align: right; box-shadow: none; animation: spin 2s; transition: background-color 0.4s ease; :hover { box-shadow: 0 0 10px rgba(0, 0, 0, 0.5); }'>Click Me</button> @keyframes slide-up { from { transform: translateY(100%); } to { transform: translateY(0); } }"
951"A responsive button with a grid layout using template '1fr 2fr', containing items with small text and :hover { background-color: #555; color: white; }.",<select style='display: grid; grid-template-columns: 1fr 2fr; gap: 10px; :hover { background-color: #555; color: white; }'><li style='color: white; border: 1px dashed red;'>Contact Us</li><li style='color: orange; border: 1px solid green;'>Sign Up</li><li style='color: orange; border: 1px dotted cyan;'>Search</li><li style='color: gray; border: 1px ridge yellow;'>Contact Us</li><li style='color: yellow; border: 1px solid yellow;'>Click Me</li></select> @keyframes slide-up { from { transform: translateY(100%); } to { transform: translateY(0); } }
952"A responsive button with a grid layout using template '100px 1fr', containing items with medium text and :hover { background-color: #555; color: white; }.","<input style='display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px; :hover { background-color: #555; color: white; }'><li style='color: gray; border: 1px dotted cyan;'>Enter Your Name</li><li style='color: purple; border: 1px solid gray;'>Sign Up</li><li style='color: cyan; border: 1px double green;'>Enter Your Name</li><li style='color: cyan; border: 1px dotted purple;'>Search</li><li style='color: gray; border: 1px groove cyan;'>Login</li></input> @keyframes fade-in { from { opacity: 0; } to { opacity: 1; } }"
953"A blue box with double 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 bounce.","<div style='background: linear-gradient(to right, red, yellow); border: 2px dashed yellow; font-size: 20px; text-align: center; display: inline-block; justify-content: flex-end; align-items: center; animation: spin 2s; transition: transform 0.2s ease-in-out; :hover { box-shadow: 0 0 10px rgba(0, 0, 0, 0.5); }'>Submit</div> @keyframes fade-in { from { opacity: 0; } to { opacity: 1; } }"
954"A span containing a list of options with blue 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; }.","<select><ul style='box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); animation: slide-up 1.5s;'><li style='color: white; border: 1px ridge green;'>Contact Us</li><li style='color: cyan; border: 1px dashed purple;'>Search</li><li style='color: white; border: 1px ridge red;'>Choose Option</li><li style='color: orange; border: 1px ridge gray;'>Sign Up</li><li style='color: pink; border: 1px double black;'>Enter Your Name</li></ul></select> @keyframes slide-up { from { transform: translateY(100%); } to { transform: translateY(0); } } @media (min-width: 1200px) { font-size: 18px; }"
955"A red button with small Courier New text, using inline-block layout, aligned to the right, with 2px 2px 5px rgba(0, 0, 0, 0.3), fade-in, and a :hover { transform: scale(1.1); }.",<button style='background-color: yellow; font-size: 30px; font-family: Helvetica; display: grid; text-align: left; box-shadow: none; animation: fade-in 2s; transition: background-color 0.4s ease; :hover { background-color: #555; color: white; }'>Hello World</button> @keyframes fade-in { from { opacity: 0; } to { opacity: 1; } }
956"A green box with solid border, linear-gradient(to bottom, blue, green) background, small text centered inside, using grid 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 ridge orange; font-size: 14px; text-align: center; display: none; justify-content: space-between; align-items: center; animation: bounce 2s; transition: background-color 0.4s ease; :hover { box-shadow: 0 0 10px rgba(0, 0, 0, 0.5); }'>Search</div> @keyframes slide-up { from { transform: translateY(100%); } to { transform: translateY(0); } }"
957"A responsive button with a grid layout using template 'repeat(3, 1fr)', containing items with small text and :hover { box-shadow: 0 0 10px rgba(0, 0, 0, 0.5); }.","<button style='display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; :hover { transform: scale(1.1); }'><li style='color: white; border: 1px ridge yellow;'>Click Me</li><li style='color: orange; border: 1px ridge yellow;'>Choose Option</li><li style='color: red; border: 1px double orange;'>Sign Up</li><li style='color: gray; border: 1px dashed yellow;'>Login</li><li style='color: red; border: 1px ridge blue;'>Login</li></button> @keyframes slide-up { from { transform: translateY(100%); } to { transform: translateY(0); } }"
958"A pink box with solid border, linear-gradient(to bottom, blue, green) background, medium text centered inside, using block layout, with :hover { background-color: #555; color: white; } and slide-up.","<div style='background: linear-gradient(to bottom, blue, green); border: 2px dotted orange; font-size: 26px; text-align: center; display: inline-block; justify-content: space-between; align-items: center; animation: slide-up 2s; transition: background-color 0.4s ease; :hover { transform: scale(1.1); }'>Search</div> @keyframes bounce { 0%, 20%, 50%, 80%, 100% { transform: translateY(0); } 40% { transform: translateY(-30px); } 60% { transform: translateY(-15px); } }"
959"A blue box with double border, radial-gradient(circle, pink, purple) background, small text centered inside, using block layout, with :hover { box-shadow: 0 0 10px rgba(0, 0, 0, 0.5); } and bounce.","<div style='background: radial-gradient(circle, pink, purple); border: 2px solid red; font-size: 28px; text-align: center; display: inline-block; justify-content: space-around; align-items: center; animation: spin 2s; transition: transform 0.2s ease-in-out; :hover { transform: scale(1.1); }'>Login</div> @keyframes slide-up { from { transform: translateY(100%); } to { transform: translateY(0); } }"
960"A span containing a list of options with black text, each inside a groove box, with 0 4px 8px rgba(0, 0, 0, 0.2), spin, and @media (max-width: 600px) { font-size: 14px; }.",<select><ul style='box-shadow: none; animation: fade-in 1.5s;'><li style='color: black; border: 1px double black;'>Sign Up</li><li style='color: red; border: 1px ridge purple;'>Choose Option</li><li style='color: red; border: 1px groove gray;'>Login</li><li style='color: blue; border: 1px dashed red;'>Sign Up</li><li style='color: yellow; border: 1px dotted purple;'>Login</li></ul></select> @keyframes spin { from { transform: rotate(0deg); } to { transform: rotate(360deg); } } @media (min-width: 1200px) { font-size: 18px; }
961"A purple button with small Georgia text, using block layout, aligned to the center, with none, spin, and a :hover { background-color: #555; color: white; }.","<button style='background-color: green; font-size: 12px; font-family: Verdana; display: grid; text-align: right; box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); animation: spin 2s; transition: transform 0.2s ease-in-out; :hover { transform: scale(1.1); }'>Hello World</button> @keyframes bounce { 0%, 20%, 50%, 80%, 100% { transform: translateY(0); } 40% { transform: translateY(-30px); } 60% { transform: translateY(-15px); } }"
962"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 bounce.","<h1><button style='background-color: linear-gradient(to bottom, blue, green); font-size: 16px; animation: bounce 2s;'>Enter Your Name</button><p style='font-size: 16px;'>search</p></h1> @keyframes slide-up { from { transform: translateY(100%); } to { transform: translateY(0); } } transition: transform 0.2s ease-in-out;"
963"A blue button with small Times New Roman text, using grid layout, aligned to the center, with 0 4px 8px rgba(0, 0, 0, 0.2), spin, and a :hover { box-shadow: 0 0 10px rgba(0, 0, 0, 0.5); }.",<button style='background-color: black; font-size: 18px; font-family: Tahoma; display: block; text-align: justify; box-shadow: none; animation: slide-up 2s; transition: background-color 0.4s ease; :hover { background-color: #555; color: white; }'>Choose Option</button> @keyframes fade-in { from { opacity: 0; } to { opacity: 1; } }
964"A green button with small Tahoma text, using flex layout, aligned to the justify, with 2px 2px 5px rgba(0, 0, 0, 0.3), spin, and a :hover { box-shadow: 0 0 10px rgba(0, 0, 0, 0.5); }.","<button style='background-color: green; font-size: 18px; font-family: Courier New; display: grid; text-align: left; box-shadow: 4px 4px 10px rgba(0, 0, 0, 0.5); animation: slide-up 2s; transition: transform 0.2s ease-in-out; :hover { background-color: #555; color: white; }'>Enter Your Name</button> @keyframes spin { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }"
965"A responsive footer with a grid layout using template '1fr 2fr', containing items with medium text and :hover { background-color: #555; color: white; }.","<p 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: white; border: 1px double gray;'>Login</li><li style='color: red; border: 1px ridge purple;'>Login</li><li style='color: yellow; border: 1px dotted orange;'>Enter Your Name</li><li style='color: yellow; border: 1px dotted black;'>Hello World</li><li style='color: yellow; border: 1px double orange;'>Hello World</li></p> @keyframes fade-in { from { opacity: 0; } to { opacity: 1; } }"
966"A button containing a list of options with pink text, each inside a groove box, with 0 4px 8px rgba(0, 0, 0, 0.2), bounce, and @media (max-width: 600px) { font-size: 14px; }.","<span><ul style='box-shadow: 4px 4px 10px rgba(0, 0, 0, 0.5); animation: fade-in 1.5s;'><li style='color: green; border: 1px dotted gray;'>Enter Your Name</li><li style='color: orange; border: 1px solid purple;'>Choose Option</li><li style='color: purple; border: 1px ridge cyan;'>Submit</li><li style='color: red; border: 1px dashed green;'>Hello World</li><li style='color: black; border: 1px double gray;'>Contact Us</li></ul></span> @keyframes spin { from { transform: rotate(0deg); } to { transform: rotate(360deg); } } @media (min-width: 600px) and (max-width: 1200px) { font-size: 16px; }"
967"A footer containing a list of options with green text, each inside a solid box, with 2px 2px 5px rgba(0, 0, 0, 0.3), bounce, and @media (min-width: 1200px) { font-size: 18px; }.","<h2><ul style='box-shadow: 4px 4px 10px rgba(0, 0, 0, 0.5); animation: fade-in 1.5s;'><li style='color: orange; border: 1px double purple;'>Hello World</li><li style='color: blue; border: 1px double white;'>Choose Option</li><li style='color: black; border: 1px double cyan;'>Hello World</li><li style='color: cyan; border: 1px dotted blue;'>Sign Up</li><li style='color: pink; border: 1px ridge black;'>Search</li></ul></h2> @keyframes spin { from { transform: rotate(0deg); } to { transform: rotate(360deg); } } @media (min-width: 1200px) { font-size: 18px; }"
968"A blue button with medium Georgia text, using block layout, aligned to the right, with none, spin, and a :hover { box-shadow: 0 0 10px rgba(0, 0, 0, 0.5); }.","<button style='background-color: cyan; font-size: 22px; font-family: Verdana; display: inline-block; text-align: left; box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); animation: fade-in 2s; transition: all 0.3s ease; :hover { box-shadow: 0 0 10px rgba(0, 0, 0, 0.5); }'>Enter Your Name</button> @keyframes fade-in { from { opacity: 0; } to { opacity: 1; } }"
969"A small h2 with blue text, Georgia font, none, and spin, displayed as inline-block with flex-start, responsive with media queries.","<h1 style='color: white; font-size: 20px; font-family: Tahoma; box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); display: block; justify-content: space-around; animation: fade-in 2s; transition: transform 0.2s ease-in-out;'>Hello World</h1> @keyframes slide-up { from { transform: translateY(100%); } to { transform: translateY(0); } } @media (min-width: 600px) and (max-width: 1200px) { font-size: 16px; }"
970"A responsive footer with a grid layout using template 'repeat(3, 1fr)', containing items with small text and :hover { transform: scale(1.1); }.","<footer 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 groove pink;'>Choose Option</li><li style='color: purple; border: 1px dashed red;'>Sign Up</li><li style='color: white; border: 1px dotted blue;'>Search</li><li style='color: red; border: 1px dotted purple;'>Search</li><li style='color: cyan; border: 1px dashed blue;'>Login</li></footer> @keyframes slide-up { from { transform: translateY(100%); } to { transform: translateY(0); } }"
971"A responsive footer with a grid layout using template '1fr 2fr', containing items with medium text and :hover { background-color: #555; color: white; }.","<header style='display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; :hover { background-color: #555; color: white; }'><li style='color: white; border: 1px dotted red;'>Contact Us</li><li style='color: white; border: 1px groove pink;'>Sign Up</li><li style='color: gray; border: 1px double black;'>Hello World</li><li style='color: blue; border: 1px double yellow;'>Submit</li><li style='color: purple; border: 1px dashed green;'>Login</li></header> @keyframes fade-in { from { opacity: 0; } to { opacity: 1; } }"
972"A span containing a green button with linear-gradient(to right, red, yellow) background that says 'Enter Your Name', followed by a small text description, with spin.","<div><button style='background-color: linear-gradient(to right, red, yellow); font-size: 22px; animation: fade-in 2s;'>Sign Up</button><p style='font-size: 22px;'>choose option</p></div> @keyframes fade-in { from { opacity: 0; } to { opacity: 1; } } transition: transform 0.2s ease-in-out;"
973"A small nav with orange text, Times New Roman font, 4px 4px 10px rgba(0, 0, 0, 0.5), and spin, displayed as inline-block with space-between, responsive with media queries.","<footer style='color: red; font-size: 22px; font-family: Arial; box-shadow: none; display: flex; justify-content: space-between; animation: spin 2s; transition: all 0.3s ease;'>Hello World</footer> @keyframes bounce { 0%, 20%, 50%, 80%, 100% { transform: translateY(0); } 40% { transform: translateY(-30px); } 60% { transform: translateY(-15px); } } @media (min-width: 600px) and (max-width: 1200px) { font-size: 16px; }"
974"A green button with large Helvetica text, using block layout, aligned to the right, with 0 4px 8px rgba(0, 0, 0, 0.2), fade-in, and a :hover { background-color: #555; color: white; }.","<button style='background-color: cyan; font-size: 16px; font-family: Arial; display: block; text-align: center; box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.3); animation: bounce 2s; transition: all 0.3s ease; :hover { box-shadow: 0 0 10px rgba(0, 0, 0, 0.5); }'>Search</button> @keyframes fade-in { from { opacity: 0; } to { opacity: 1; } }"
975"A responsive span with a grid layout using template '100px 1fr', containing items with large text and :hover { background-color: #555; color: white; }.","<select style='display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; :hover { transform: scale(1.1); }'><li style='color: green; border: 1px dashed pink;'>Hello World</li><li style='color: red; border: 1px double red;'>Login</li><li style='color: gray; border: 1px dotted black;'>Submit</li><li style='color: red; border: 1px double black;'>Search</li><li style='color: white; border: 1px solid orange;'>Sign Up</li></select> @keyframes slide-up { from { transform: translateY(100%); } to { transform: translateY(0); } }"
976"A responsive div with a grid layout using template '100px 1fr', containing items with medium text and :hover { box-shadow: 0 0 10px rgba(0, 0, 0, 0.5); }.","<p style='display: grid; grid-template-columns: 100px 1fr; gap: 10px; :hover { background-color: #555; color: white; }'><li style='color: pink; border: 1px ridge blue;'>Sign Up</li><li style='color: orange; border: 1px double pink;'>Submit</li><li style='color: white; border: 1px dotted cyan;'>Contact Us</li><li style='color: yellow; border: 1px double black;'>Submit</li><li style='color: black; border: 1px double purple;'>Login</li></p> @keyframes bounce { 0%, 20%, 50%, 80%, 100% { transform: translateY(0); } 40% { transform: translateY(-30px); } 60% { transform: translateY(-15px); } }"
977"A input containing a list of options with purple text, each inside a solid box, with none, fade-in, and @media (min-width: 1200px) { font-size: 18px; }.","<h2><ul style='box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.3); animation: fade-in 1.5s;'><li style='color: blue; border: 1px solid orange;'>Enter Your Name</li><li style='color: purple; border: 1px double green;'>Hello World</li><li style='color: black; border: 1px groove purple;'>Search</li><li style='color: green; border: 1px dotted gray;'>Hello World</li><li style='color: white; border: 1px solid pink;'>Contact Us</li></ul></h2> @keyframes spin { from { transform: rotate(0deg); } to { transform: rotate(360deg); } } @media (min-width: 1200px) { font-size: 18px; }"
978"A blue box with solid border, linear-gradient(to bottom, blue, green) background, small text centered inside, using none layout, with :hover { background-color: #555; color: white; } and fade-in.","<div style='background: linear-gradient(to bottom, blue, green); border: 2px groove white; font-size: 24px; text-align: center; display: grid; justify-content: space-around; align-items: center; animation: fade-in 2s; transition: background-color 0.4s ease; :hover { box-shadow: 0 0 10px rgba(0, 0, 0, 0.5); }'>Submit</div> @keyframes bounce { 0%, 20%, 50%, 80%, 100% { transform: translateY(0); } 40% { transform: translateY(-30px); } 60% { transform: translateY(-15px); } }"
979"A span containing a list of options with green text, each inside a dashed box, with 0 4px 8px rgba(0, 0, 0, 0.2), spin, and @media (max-width: 600px) { font-size: 14px; }.","<footer><ul style='box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.3); animation: slide-up 1.5s;'><li style='color: pink; border: 1px double gray;'>Click Me</li><li style='color: orange; border: 1px solid green;'>Hello World</li><li style='color: cyan; border: 1px dashed white;'>Enter Your Name</li><li style='color: purple; border: 1px ridge gray;'>Submit</li><li style='color: black; border: 1px dotted orange;'>Login</li></ul></footer> @keyframes fade-in { from { opacity: 0; } to { opacity: 1; } } @media (min-width: 600px) and (max-width: 1200px) { font-size: 16px; }"
980"A responsive header with a grid layout using template 'repeat(3, 1fr)', containing items with small text and :hover { background-color: #555; color: white; }.","<header style='display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; :hover { background-color: #555; color: white; }'><li style='color: white; border: 1px dashed gray;'>Search</li><li style='color: yellow; border: 1px ridge orange;'>Enter Your Name</li><li style='color: purple; border: 1px ridge red;'>Submit</li><li style='color: white; border: 1px dotted blue;'>Sign Up</li><li style='color: purple; border: 1px double orange;'>Enter Your Name</li></header> @keyframes spin { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }"
981"A textarea containing a red button with linear-gradient(to bottom, blue, green) background that says 'Search', followed by a small text description, with bounce.","<select><button style='background-color: linear-gradient(to bottom, blue, green); font-size: 20px; animation: spin 2s;'>Submit</button><p style='font-size: 20px;'>enter your name</p></select> @keyframes bounce { 0%, 20%, 50%, 80%, 100% { transform: translateY(0); } 40% { transform: translateY(-30px); } 60% { transform: translateY(-15px); } } transition: transform 0.2s ease-in-out;"
982"A yellow button with medium Courier New text, using inline-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: cyan; font-size: 22px; font-family: Helvetica; display: grid; 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); }'>Login</button> @keyframes bounce { 0%, 20%, 50%, 80%, 100% { transform: translateY(0); } 40% { transform: translateY(-30px); } 60% { transform: translateY(-15px); } }"
983"A yellow box with dotted border, linear-gradient(to right, red, yellow) background, large text centered inside, using none layout, with :hover { transform: scale(1.1); } and bounce.","<div style='background: radial-gradient(circle, pink, purple); border: 2px double cyan; font-size: 14px; text-align: center; display: grid; justify-content: flex-start; align-items: center; animation: slide-up 2s; transition: background-color 0.4s ease; :hover { background-color: #555; color: white; }'>Search</div> @keyframes bounce { 0%, 20%, 50%, 80%, 100% { transform: translateY(0); } 40% { transform: translateY(-30px); } 60% { transform: translateY(-15px); } }"
984"A large h1 with orange text, Courier New font, 2px 2px 5px rgba(0, 0, 0, 0.3), and bounce, displayed as grid with space-around, responsive with media queries.","<input style='color: yellow; font-size: 20px; font-family: Georgia; box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); display: inline-block; justify-content: flex-end; animation: fade-in 2s; transition: all 0.3s ease;'>Hello World</input> @keyframes fade-in { from { opacity: 0; } to { opacity: 1; } } @media (max-width: 600px) { font-size: 14px; }"
985"A h1 containing a green button with radial-gradient(circle, pink, purple) background that says 'Hello World', followed by a small text description, with spin.","<nav><button style='background-color: linear-gradient(to right, red, yellow); font-size: 24px; animation: spin 2s;'>Choose Option</button><p style='font-size: 24px;'>search</p></nav> @keyframes fade-in { from { opacity: 0; } to { opacity: 1; } } transition: all 0.3s ease;"
986"A yellow button with small Tahoma text, using none layout, aligned to the justify, with none, spin, and a :hover { background-color: #555; color: white; }.","<button style='background-color: green; font-size: 26px; font-family: Times New Roman; display: grid; text-align: left; box-shadow: 4px 4px 10px rgba(0, 0, 0, 0.5); animation: spin 2s; transition: transform 0.2s ease-in-out; :hover { background-color: #555; color: white; }'>Login</button> @keyframes spin { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }"
987"A purple button with small Arial text, using flex layout, aligned to the justify, with 4px 4px 10px rgba(0, 0, 0, 0.5), slide-up, and a :hover { background-color: #555; color: white; }.",<button style='background-color: pink; font-size: 14px; font-family: Arial; display: grid; text-align: center; box-shadow: none; animation: fade-in 2s; transition: background-color 0.4s ease; :hover { transform: scale(1.1); }'>Sign Up</button> @keyframes spin { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }
988"A purple box with double border, linear-gradient(to right, red, yellow) background, small text centered inside, using none layout, with :hover { background-color: #555; color: white; } and bounce.","<div style='background: radial-gradient(circle, pink, purple); border: 2px solid white; font-size: 30px; text-align: center; display: inline-block; justify-content: space-between; align-items: center; animation: slide-up 2s; transition: transform 0.2s ease-in-out; :hover { transform: scale(1.1); }'>Choose Option</div> @keyframes spin { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }"
989"A medium h3 with purple text, Verdana font, none, and fade-in, displayed as flex with flex-end, responsive with media queries.",<div style='color: green; font-size: 24px; font-family: Arial; box-shadow: none; display: inline-block; justify-content: space-around; animation: spin 2s; transition: background-color 0.4s ease;'>Login</div> @keyframes spin { from { transform: rotate(0deg); } to { transform: rotate(360deg); } } @media (max-width: 600px) { font-size: 14px; }
990"A medium h3 with yellow text, Arial font, 0 4px 8px rgba(0, 0, 0, 0.2), and spin, displayed as flex with flex-start, responsive with media queries.","<header style='color: green; font-size: 16px; font-family: Times New Roman; box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.3); display: none; justify-content: flex-end; animation: spin 2s; transition: transform 0.2s ease-in-out;'>Submit</header> @keyframes bounce { 0%, 20%, 50%, 80%, 100% { transform: translateY(0); } 40% { transform: translateY(-30px); } 60% { transform: translateY(-15px); } } @media (max-width: 600px) { font-size: 14px; }"
991"A responsive h2 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); }.","<button style='display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; :hover { transform: scale(1.1); }'><li style='color: orange; border: 1px ridge orange;'>Click Me</li><li style='color: orange; border: 1px solid green;'>Submit</li><li style='color: purple; border: 1px ridge cyan;'>Enter Your Name</li><li style='color: pink; border: 1px double pink;'>Submit</li><li style='color: purple; border: 1px double black;'>Search</li></button> @keyframes fade-in { from { opacity: 0; } to { opacity: 1; } }"
992"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); }.","<footer style='display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px; :hover { transform: scale(1.1); }'><li style='color: pink; border: 1px dashed green;'>Submit</li><li style='color: cyan; border: 1px ridge yellow;'>Choose Option</li><li style='color: orange; border: 1px solid green;'>Contact Us</li><li style='color: yellow; border: 1px dotted gray;'>Choose Option</li><li style='color: yellow; border: 1px double purple;'>Submit</li></footer> @keyframes fade-in { from { opacity: 0; } to { opacity: 1; } }"
993"A black box with dotted border, radial-gradient(circle, pink, purple) background, small text centered inside, using none layout, with :hover { transform: scale(1.1); } and spin.","<div style='background: linear-gradient(to right, red, yellow); border: 2px dotted gray; font-size: 26px; text-align: center; display: grid; justify-content: space-between; align-items: center; animation: spin 2s; transition: background-color 0.4s ease; :hover { transform: scale(1.1); }'>Login</div> @keyframes fade-in { from { opacity: 0; } to { opacity: 1; } }"
994"A h2 containing a list of options with pink text, each inside a solid box, with 0 4px 8px rgba(0, 0, 0, 0.2), spin, and @media (min-width: 600px) and (max-width: 1200px) { font-size: 16px; }.","<button><ul style='box-shadow: 4px 4px 10px rgba(0, 0, 0, 0.5); animation: bounce 1.5s;'><li style='color: gray; border: 1px groove purple;'>Sign Up</li><li style='color: blue; border: 1px double white;'>Contact Us</li><li style='color: purple; border: 1px double orange;'>Enter Your Name</li><li style='color: pink; border: 1px dashed orange;'>Search</li><li style='color: red; border: 1px groove cyan;'>Choose Option</li></ul></button> @keyframes fade-in { from { opacity: 0; } to { opacity: 1; } } @media (min-width: 600px) and (max-width: 1200px) { font-size: 16px; }"
995"A blue box with dashed border, linear-gradient(to bottom, blue, green) background, small text centered inside, using inline-block layout, with :hover { transform: scale(1.1); } and spin.","<div style='background: radial-gradient(circle, pink, purple); border: 2px solid blue; font-size: 18px; text-align: center; display: grid; justify-content: center; align-items: center; animation: slide-up 2s; transition: transform 0.2s ease-in-out; :hover { transform: scale(1.1); }'>Login</div> @keyframes spin { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }"
996"A cyan button with small Georgia text, using inline-block layout, aligned to the right, with none, bounce, and a :hover { transform: scale(1.1); }.","<button style='background-color: cyan; font-size: 24px; font-family: Arial; display: none; 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 { transform: scale(1.1); }'>Login</button> @keyframes spin { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }"
997"A large p with orange text, Verdana font, 2px 2px 5px rgba(0, 0, 0, 0.3), and fade-in, displayed as inline-block with flex-start, responsive with media queries.","<h3 style='color: purple; font-size: 26px; font-family: Georgia; box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); display: block; justify-content: space-between; animation: slide-up 2s; transition: transform 0.2s ease-in-out;'>Hello World</h3> @keyframes slide-up { from { transform: translateY(100%); } to { transform: translateY(0); } } @media (min-width: 1200px) { font-size: 18px; }"
998"A header containing a blue button with linear-gradient(to right, red, yellow) background that says 'Login', followed by a large text description, with slide-up.","<h2><button style='background-color: radial-gradient(circle, pink, purple); font-size: 14px; animation: spin 2s;'>Contact Us</button><p style='font-size: 14px;'>login</p></h2> @keyframes fade-in { from { opacity: 0; } to { opacity: 1; } } transition: background-color 0.4s ease;"
999"A large footer with cyan text, Times New Roman font, 4px 4px 10px rgba(0, 0, 0, 0.5), and spin, displayed as inline-block with center, responsive with media queries.","<p style='color: gray; font-size: 18px; font-family: Times New Roman; box-shadow: 4px 4px 10px rgba(0, 0, 0, 0.5); display: block; justify-content: space-between; animation: slide-up 2s; transition: transform 0.2s ease-in-out;'>Click Me</p> @keyframes slide-up { from { transform: translateY(100%); } to { transform: translateY(0); } } @media (min-width: 600px) and (max-width: 1200px) { font-size: 16px; }"
1000"A orange box with solid border, linear-gradient(to bottom, blue, green) 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 dashed gray; font-size: 24px; text-align: center; display: none; justify-content: center; align-items: center; animation: slide-up 2s; transition: background-color 0.4s ease; :hover { transform: scale(1.1); }'>Search</div> @keyframes bounce { 0%, 20%, 50%, 80%, 100% { transform: translateY(0); } 40% { transform: translateY(-30px); } 60% { transform: translateY(-15px); } }"
1001"A small footer with orange text, Arial font, 4px 4px 10px rgba(0, 0, 0, 0.5), and bounce, displayed as block with flex-end, responsive with media queries.",<button style='color: red; font-size: 22px; font-family: Verdana; box-shadow: none; display: flex; justify-content: center; animation: bounce 2s; transition: background-color 0.4s ease;'>Login</button> @keyframes fade-in { from { opacity: 0; } to { opacity: 1; } } @media (max-width: 600px) { font-size: 14px; }