Online Html Editor

<!DOCTYPE html> <html lang="en"> <head> <style> input{ padding:3px; } input:focus { border-color: green; background-color: lightgrey; } </style> </head> <body> <h2>Pseudo-Class focus Example</h2> <h3>Focus on input text</h3> <input type="text" placeholder="Type Something!"> </body> </html>