आप लागू करने के लिए निम्न कोड को चलाने का प्रयास कर सकते हैं:फोकस स्यूडो-क्लास
उदाहरण
<!DOCTYPE html>
<html>
<head>
<style>
input:focus {
background-color: orange;
}
</style>
</head>
<body>
<form action = "">
Subject <input type = "text" name = "subject"><br>
Student: <input type = "text" name = "student"><br>
Age: <input type = "number" name = "age"><br>
<input type = "submit" value = "Submit">
</form>
</body>
</html> आउटपुट
