17 lines
341 B
HTML
17 lines
341 B
HTML
|
<!doctype html>
|
||
|
<html xmlns="http://www.w3.org/1999/xhtml" xmlns:foo="http://www.w3.org/2000/svg">
|
||
|
<head>
|
||
|
<title>My Halogen App</title>
|
||
|
<style>
|
||
|
body {
|
||
|
font-family: sans-serif;
|
||
|
max-width: 800px;
|
||
|
margin: auto;
|
||
|
}
|
||
|
</style>
|
||
|
</head>
|
||
|
<body>
|
||
|
<script src="app.js"></script>
|
||
|
</body>
|
||
|
</html>
|