tag selector example
HTML
<html>
<head>
<title>Tag Selector Example</title>
</head>
<body>
Enter Your Name:<input type="text">
</body>
</html>
CSS
input{
background-color:lightblue;
}
<html>
<head>
<title>Tag Selector Example</title>
</head>
<body>
Enter Your Name:<input type="text">
</body>
</html>
input{
background-color:lightblue;
}