27 lines
489 B
HTML
27 lines
489 B
HTML
|
<!DOCTYPE html>
|
||
|
<html lang="en">
|
||
|
|
||
|
<head>
|
||
|
<meta charset="UTF-8">
|
||
|
<meta name="viewport" content="width=1.0, initial-scale=1.0">
|
||
|
<script src="/main.js" type="text/javascript"></script>
|
||
|
<link rel="stylesheet" href="style.css">
|
||
|
<title>javascripting(tm)</title>
|
||
|
</head>
|
||
|
|
||
|
<body>
|
||
|
<header>
|
||
|
<div></div>
|
||
|
<h1>Hello world</h1>
|
||
|
</header>
|
||
|
<main>
|
||
|
<section>
|
||
|
<h2>Example text</h2>
|
||
|
</section>
|
||
|
</main>
|
||
|
<footer>
|
||
|
<p>some footer text</p>
|
||
|
</footer>
|
||
|
</body>
|
||
|
|
||
|
</html>
|