22 lines
397 B
HTML
Executable file
22 lines
397 B
HTML
Executable file
<!doctype html>
|
|
<html>
|
|
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<link rel="stylesheet" href="style.css">
|
|
</head>
|
|
|
|
<body>
|
|
|
|
<div id="parent" onmouseenter="mouselog(event)" onmouseleave="mouselog(event)">parent
|
|
<div id="child">child</div>
|
|
</div>
|
|
|
|
<textarea id="text"></textarea>
|
|
<input type="button" onclick="text.value=''" value="Clear">
|
|
|
|
<script src="script.js"></script>
|
|
|
|
</body>
|
|
|
|
</html>
|