HTML Syntax
Intro
HTML (HyperText Markup Language) was invented by Tim Burners-Lee in 1989. It is a subset of XML (eXtensible Markup Language) and is not a programming language - it is a markup language. That means it is used to describe data and documents. Since it was first invented, HTML has been revised, updated, and improved since then. The latest version of HTML, HTML5, emphasizes media and syntactically correct markup.
This badge is fairly simple - learn the language and structure of an HTML document.
HTML Template
<!DOCTYPE html>
<html>
<head>
<title></title>
<style>
// Paste your CSS code here
</style>
</head>
<body>
<!-- Paste your HTML code here -->
<script>
// Paste your JavaScript code here
</script>
</body>
</html>
Video
Suggested Learning
- Anatomy of an HTML Element
- Syntax Basics
- Best Practices - A list of good and bad ways to write HTML.
Requirements
- Create a simple HTML page with the following features:
- Corret HTML syntax, following best practices
DOCTYPE
html
taghead
tagtitle
tagbody
tag- tags inside of the
body
tag
- Show your page to the
#requirements
Discord channel to show you have passed this requirement off.