<!DOCTYPE html> <!-- Special tag for specifying the document is HTML5 --><html></html> <!-- Wraps the entire webpage --><head></head> <!-- For your webpage metadata --><body></body> <!-- Wraps everything that will be visible on the website -->
Toggle Example
<!DOCTYPE html><html> <head> <!-- Meta content here --> </head> <body> <!-- Visible content here --> <body></html>
<nav></nav> <!-- A wrapper for your navigation --><section></section> <!-- Sections --><div></div> <!-- Tag from grouping elements --><span></span> <!-- Tag from wrapping inline elements --><footer></footer> <!-- A wrapper for your footer info -->
<!-- Links --><a href="/your/web/page">Link name</a> <!-- A link to a webpage on your site --><a href="http://example.com">Link name</a> <!-- A link to a webpage on the internet --><!-- Images --><img src="/your/image.jpg" alt="Some image description" /> <!-- An image hosted on your website --><img src="https://placekitten.com/300/300" alt="A cute cat" /> <!-- An from another website -->
<title>Title of your webpage</title><meta name="description" content="Description of your site" /><meta name="keywords" content="keywords describing your site" /><!-- Styling --><link rel="stylesheet" type="text/css" href="mystyle.css"> <!-- Link to external CSS --><style> /* Your own custom rules */</style> <!-- Javascript --><script src="some/script.js"></script> <!-- Link to external JS file --><script> // Your own Javaxcript</script>
Toggle Example
<head> <title>Title of your webpage</title> <meta name="description" content="Description of your site" /> <meta name="keywords" content="keywords describing your site" /> <!-- Use https://bulma.io to style your website --> <meta charset="utf-8"> <meta name="viewport" content="width=device-width, initial-scale=1"> <link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/[email protected]/css/bulma.min.css"> <script defer src="https://use.fontawesome.com/releases/v5.3.1/js/all.js"></script></head>