15 lines
322 B
HTML
15 lines
322 B
HTML
|
<!DOCTYPE html>
|
||
|
<html lang="en">
|
||
|
<head>
|
||
|
<meta charset="UTF-8">
|
||
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||
|
<title>DOM</title>
|
||
|
<script src="index.js" defer></script>
|
||
|
</head>
|
||
|
<body>
|
||
|
<h1>
|
||
|
THE TITLE OF YOUR WEBPAGE
|
||
|
</h1>
|
||
|
<div id="container"></div>
|
||
|
</body>
|
||
|
</html>
|