19 lines
595 B
HTML
19 lines
595 B
HTML
<!doctype html>
|
|
<html>
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
|
<title>Example</title>
|
|
<meta name="description" content="">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
|
</head>
|
|
<body>
|
|
<p id="width">100px wide</p>
|
|
<p style="resize:both;width:100px;overflow:scroll;border:1px solid black;" id="resize">You can resize me!</p>
|
|
|
|
<textarea>You can focus me!</textarea>
|
|
|
|
<script src="example/bundle.js"></script>
|
|
</body>
|
|
</html>
|