INTERACTIVE MEDIA Ex 4: Salary and Tax
- Get link
- X
- Other Apps
Determine Salary and Tax
Enter your details :
>
Popular posts from this blog
Assignment 1: HEX CODE
Hexadecimal Color Code In computing we can identify a color using a unique color code which consists of a # followed by 6 digits. This is called the hexadecimal RGB color code. RGB stands for Red, Green and Blue. These 3 colors are in computing the the primary colors: which means that every color is made of a combination of these three colors. Red = #FF0000 = RGB(255, 0, 0) Green = #008000 = RGB(1, 128, 0) Blue = #0000FF = RGB(0, 0, 255) White = #FFFFFF = RGB(255,255,255) Ivory = #FFFFF0 = RGB(255, 255, 240) Black = #000000 = RGB(0, 0, 0) Gray = #808080 = RGB(128, 128, 128) Silver = #C0C0C0 = RGB(192, 192, 192) Yellow = #FFFF00 = RGB(255, 255, 0) Purple = #800080 = RGB(128, 0, 128) Orange = FFA500 = RGB(255, 165, 0) Maroon = #800000 = RGB(128, 0, 0) Fuchsia = #FF00FF = RGB(255, 0, 255) Lime = #00FF00 = RGB(0, 255, 0) Aqua = #00FFFF = RGB(0, 255, 255) Teal = #008080 = RGB(0, 128, 128) Olive = #808000 = RGB(128, 128, 0) Navy = #000080 = RGB(0, 0, 128)...
MIDTERM* WEB PROG Ex: 9 CSS flexbox and iframe
<!DOCTYPE html> <html> <head> <style> fieldset { background: #32a852; } body {background-color: #2a8017;} } iframe:focus { outline: none; } iframe[seamless] { display: block; } .navbar { overflow: hidden; background-color: #121211; } .navbar a { float: left; font-size: 16px; color: #c6ff94; text-align: center; padding: 14px 16px; text-decoration: none; } .dropdown { float: left; overflow: hidden; } .dropdown .dropbtn { font-size: 16px; border: none; outline: none; color:#c6ff94; ...