Question
Hover (Change colour of RollOver)
How can I change the colour of a RollOver during Hover, when I press the word 'Portfolio' so it changes from "White" to "Yellow" when touched.
Where about in the below code would I add the Hover/RollOver for colour change?
<!DOCTYPE html>
<html><head>
<meta charset="UTF-8">
<title>Ben</title>
<style>
img {
display: block;
margin-left: auto;
margin-right: auto;
}
h1 {
background-color: ;
color: white;
}
h2 {
background-color: ;
color: white
}
body {
font-family: 'DotMatrix',sans-serif, sans-serif;
font-size: 7px;
color: #000;
position: relative;
line-height: 24px;
line-height: 1.5em;
background: #000;
-webkit-font-smoothing: antialiased;
</style>
</head>
<body>
<style>A {text-decoration: none;} </style>
<a href="Ben.html" >
<h1>PORTFOLIO</h1>
</a>
<h1>ABOUT</h1>
<img src="NIKE Air Tailwind 79.jpg"/"NIKE" width="229" style="width:37%">
</body>
</html>
