Difference between revisions of "English Language Lab"
Jump to navigation
Jump to search
Line 3: | Line 3: | ||
|style=" width:10%; border:none; border-radius:5px;box-shadow: 10px 10px 10px #888888; background:#f9f9ff; vertical-align:middle; text-align:center; "| | |style=" width:10%; border:none; border-radius:5px;box-shadow: 10px 10px 10px #888888; background:#f9f9ff; vertical-align:middle; text-align:center; "| | ||
[[https://karnatakaeducation.org.in/KOER/en/index.php/Language_Lab|'''Back to main page''']] | [[https://karnatakaeducation.org.in/KOER/en/index.php/Language_Lab|'''Back to main page''']] | ||
+ | |||
+ | <!DOCTYPE html> | ||
+ | <html> | ||
+ | <head> | ||
+ | <style> | ||
.button { | .button { | ||
Line 15: | Line 20: | ||
cursor: pointer; | cursor: pointer; | ||
} | } | ||
+ | .button1 {background-color: #4CAF50;} /* Green */ | ||
+ | .button2 {background-color: #008CBA;} /* Blue */ | ||
− | + | <button class="button button1">Green</button> | |
+ | <button class="button button2">Blue</button> | ||
+ | </body> | ||
+ | </html> | ||
{| class="wikitable" | {| class="wikitable" |
Revision as of 11:29, 7 February 2023
<!DOCTYPE html> <html> <head> <style> .button { border: none; color: white; padding: 15px 32px; text-align: center; text-decoration: none; display: inline-block; font-size: 16px; margin: 4px 2px; cursor: pointer; } .button1 {background-color: #4CAF50;} /* Green */ .button2 {background-color: #008CBA;} /* Blue */ <button class="button button1">Green</button> <button class="button button2">Blue</button> </body> </html>
|