4.Write an HTML page that contains a selection box with a list of 5 countries. When the user selects a country, its capital should be printed next to the list. Add CSS to customize the properties of the font of the capital (color, bold and font size). <html> <head> <title>WT Lab Experiment-4</title> <style> #cc { color: red; font: 20px verdana; font-weight: bold; } </style> <script> function getCapital() { var x; ...
JNTU lab material for all JNTU engineering students