13 lines
245 B
HTML
13 lines
245 B
HTML
<html>
|
|
<head>
|
|
<title>My simple program</title>
|
|
</head>
|
|
|
|
<body>
|
|
<input type="text" id="text-field"/>
|
|
<input type="button" id="button" value="Click me"/>
|
|
|
|
<p>Hello <span id="template">fill-me-in</span>!</p>
|
|
</body>
|
|
</html>
|