CSS Hover Effects
Program 1 <html> <head><title>Demo of Hover</title> <style> a:hover { color: blue; } a:active { color: red; } a:visited { color: chartreuse; } h1 { text-align: center; font-size: 30; font-family: ‘Lucida Sans’, ‘Lucida Sans Regular’,...

