25 lines
492 B
HTML
25 lines
492 B
HTML
<html lang="en">
|
|
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<title>The DOM</title>
|
|
</head>
|
|
|
|
<body>
|
|
<h1 id="page-title">The DOM</h1>
|
|
<div>
|
|
<p>Hello, World</p>
|
|
<p>lorem ipsum</p>
|
|
<p class="error">this is an error message</p>
|
|
</div>
|
|
<div class="error">This is another error</div>
|
|
|
|
<div class="content">
|
|
<p>this is the content</p>
|
|
</div>
|
|
<script src="adding_changing_page_content.js">
|
|
</script>
|
|
</body>
|
|
|
|
|
|
</html> |