18 lines
280 B
HTML
18 lines
280 B
HTML
<!DOCTYPE html>
|
|
<head>
|
|
<title>Test Document</title>
|
|
<style>
|
|
body {
|
|
width: 640px;
|
|
margin: 64px auto;
|
|
font-family: Arial;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<h2>This is test page</h2>
|
|
<button>Test Button</button>
|
|
<div id="output"></div>
|
|
</body>
|
|
</html>
|