Correction status:Uncorrected
Teacher's comments:
<!DOCTYPE html> <html> <head> <title>haha 我进来了 ,快say Hallo跟我</title> <meta charset="utf-8"> <style type="text/css"> div{ width: 400PX; height: 300PX; padding: 10PX; border-radius: 10PX; box-shadow: 10PX 10PX 10PX #777; background-image: url(images/1.jpg); background-size: 420px 320px; background-repeat: no-repeat; } .text{ color: #345666; text-indent: 1em; line-height: 2em; } </style> </head> <body> <div> <h3 style="color: orange; text-align: center; font-size: 15px" onmouseover="change(this)" onmouseout="old(this)" >古朗月行</h3> <p>小时不识月,呼作白玉盘。 又疑瑶台镜,飞在青云端。 仙人垂两足,桂树作团团。 白兔捣药成,问言与谁餐。 蟾蜍蚀圆影,大明夜已残。 羿昔落九乌,天人清且安。 阴精此沦惑,去去不足观。 忧来其如何,凄怆摧心肝。</p></div> </body> <script type="text/javascript"> function change(elemnet) { elemnet.style.fontSize='30px' elemnet.style.color='red' } function old(elemnet) { elemnet.style.fontSize='15px' elemnet.style.color='orange' } </script> </html>