Welcome!
This are some of the HTML Basics
Most tags in HTML has a starting and ending tag.
A tag begins with a 'less than' symbol, or < and end
with a 'greater than' or a > symbol.
The ending tag is the same thing, but has a / (slash) in it. Here is an example:
<tag>Content</tag>Here is an example of an actual tag:
<h1>Hello World!</h1>Comes out as:
Hello World!
Most documents are structured like this:
<!DOCTYPE html><html>
<head>
<title>Title</title>
</head>
<body>
Input
</body>
</html>
Click on one to go to its breakdown, or click the 'next' button to go through them, one by one.
There are also things called 'comments'. These are a way of organising your code,
and understanding what
does
what. They are not visible. The tag for it is
<!-- Comment here -->
Example: <!-- Heading tag with 'Welcome' printed in -->
<h1>Welcome!</h1>
Comes out as: