window.onload = function(){
var lol = document.querySelector('h1');
lol.onmousemove = function(){
this.style.color = 'yellow';
};
lol.onmouseout = function(){
this.style.color = 'white';
};
};
window.onload = function(){
var lol = document.querySelectorAll('h1');
lol.onmousemove = function(){
this.style.color = 'yellow';
};
lol.onmouseout = function(){
this.style.color = 'white';
};
};
window.onload = () => {
const h2 = document.querySelectorAll('h2');
[...h2].map(item => {
item.addEventListener('mousemove', e => {
e.target.style.color = 'yellow';
});
item.addEventListener('mouseout', e => {
e.target.style.color = 'red';
});
});
}