28 lines
431 B
HTML
28 lines
431 B
HTML
|
<!doctype html>
|
||
|
|
||
|
<html lang="en">
|
||
|
<head>
|
||
|
<meta charset="utf-8">
|
||
|
<title>Hello, world!</title>
|
||
|
|
||
|
<style type="text/css">
|
||
|
@page {
|
||
|
font-family: monospace;
|
||
|
margin: 2.0in;
|
||
|
size: letter portrait;
|
||
|
}
|
||
|
body {
|
||
|
background-color: #ffffff;
|
||
|
color: #0000ff;
|
||
|
font-family: monospace;
|
||
|
font-size: 15pt;
|
||
|
line-height: 1.3;
|
||
|
}
|
||
|
</style>
|
||
|
</head>
|
||
|
|
||
|
<body>
|
||
|
<h1>Hello, world!</h1>
|
||
|
<p>This is an HTML page.</p>
|
||
|
</body>
|
||
|
</html>
|