tag selector example

by VIvek Vaishnav

HTML

<html>
<head>
<title>Tag Selector Example</title>
</head>
<body>
Enter Your Name:<input type="text">
</body>
</html>

CSS

input{
  background-color:lightblue;
}