- Create a new HTML5 document using the
<!DOCTYPE html> - Add the
<html>,<head>, and<body>tags to your document. - Inside the
<head>tag, include a<title>titled 'My HTML5 Document' and a<meta name="description" content="Lec3 Introduction to HMTL">.
- Inside the
<body>tag of your HTML document, add a header using the<h1>tag titled 'Introduction to HTML'. - Below the header, add a paragraph using the
<p>tag with some sample text. - Create a hyperlink to hkr.se/en using the
<a href="https://www.hkr.se/en">Visit HKR</a>tag.
- Add headers ranging from
<H1>to<H6>to your HTML document, each with a sample title. - Below each header, add a paragraph using the
<p>tag with some sample text.