I have this code example :
input[type=submit]:active{
background-color: black;
}
input[type=submit]:focus {
background-color: black;
}
In my achievement I want my form submit button to be on black when click on it. My problem is how do i keep this button remain unchange even when page refress example :- I want the click submit button to remain black even when page refress or relaod
big thanks in advances