28 lines
644 B
HTML
28 lines
644 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
|
|
<body style="background-color: #00aaff;">
|
|
<h1 id="heading">Welcome to My eCommerce Store!</h1>
|
|
<div style="position: relative;">Shop for amazing products here!</div>
|
|
|
|
<script>
|
|
/*window.onload = () => {
|
|
alert('Sale, 50% off on new vegetables');
|
|
}*/
|
|
|
|
const headingElm = document.getElementById('heading');
|
|
headingElm.onmouseover = function () {
|
|
headingElm.style.color = "green";
|
|
}
|
|
|
|
headingElm.onmouseout = function () {
|
|
headingElm.style.color = "white";
|
|
}
|
|
headingElm.ondblclick = function () {
|
|
alert('Get fresh vegetables');
|
|
}
|
|
</script>
|
|
</body>
|
|
|
|
</html>
|