Skip to content

Topic 1: Example of a code block

html

introduction to html
<!-- this is html -->
<!DOCTYPE html>
<html>
<body>
<h1>My First Web Page</h1> <!-- (1)! -->
<p id="demo">My First Paragraph</p>
<script>
document.getElementById("demo").innerHTML = 5 + 6; // (2)
</script>
</body>
</html>
  1. including a h1 element to improve SEO
  2. script

css

js

Assignment 1