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