Page skeleton
html
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<title>My Page</title>
</head>
<body>
<h1>Hello</h1>
</body>
</html>Links, images, lists
| Term | Meaning |
|---|---|
<a href="url"> | A link to another page |
<img src="url" alt="..."> | An image with alt text |
<ul> / <li> | A bulleted list and its items |
<ol> / <li> | A numbered list and its items |
Tagshtmlweb
Practise the reference.
Open the compiler, paste one snippet, and change it until you understand what it does.
Related