19 lines
231 B
HTML
19 lines
231 B
HTML
<!DOCTYPE HTML>
|
|
<html>
|
|
|
|
<head>
|
|
<meta charset="utf-8">
|
|
</head>
|
|
|
|
<body>
|
|
|
|
<input type="button" id="hider" value="Click to hide the text" />
|
|
|
|
<div id="text">Text</div>
|
|
|
|
<script>
|
|
/* your code */
|
|
</script>
|
|
|
|
</body>
|
|
</html>
|