* {
margin
:
0
;
padding
}
.a {
height
400px
width
position
absolute
top
50%
left
margin-top
-200px
margin-left
background-color
#7092BE
color
#FFF
text-align
center
line-height
font-size
50px
function
funMouseOver() {
var
val = document.getElementById(
'd1'
);
val.className =
'a'
val.style.backgroundColor =
'#3BA9DE'
val.innerHTML =
'Привет Мир!'
funMouseOut() {
'#7092BE'
'Hello World!'
window.onload =
() {
document.getElementById(
).onmouseover = funMouseOver;
).onmouseout = funMouseOut;
<!DOCTYPE html>
<
html
>
head
meta
charset
=
"utf-8"
/>
title
>New Page</
link
href
"css/style.css"
rel
"stylesheet"
script
src
"js/script.js"
></
</
body
div
id
"d1"
class
"a"
>Hello World!</