Use this HTML poster to give your students an overall understanding of the basic code that makes up a web page.
Posters include the following content:
<html>
<head>
The <head> element stores extra information about your page, called metadata. This metadata provides instructions for your web browser. One piece of metadata is your page <title>:
<title>My first website!</title>
</head>
<body>
The <body> element stores the visible content of your page. This includes headings, paragraphs and other special elements like divs.
<h1>Welcome to my website</h1>
<p>I love creating websites.</p>
</body>
</html>
0 Comments
Write a review to help other teachers and parents like yourself. If you'd like to request a change to this resource, or report an error, select the corresponding tab above.