What does HTML look like?

When you make a new file in Neocities, it will look like this:

<!DOCTYPE html>

<html>

<head>

<meta-charset="UTF-8">

<meta-name="viewport" content="width-device-width, initial-scale=1.0">

<title>My Page</title>

<link href="/style.css" rel="stylesheet" type="text/css" media="all">

</head>

<body>

</body>

</html>

It may look intimidating, but here's a breakdown of all the parts:


You will do most of your coding in the body area.


The Less Than and Greater Than symbols are your tags. They say what type of element the code is. Most elements have an Opening Tag (<x>) and a Closing Tag (</x>)

In all the tutorials, everything will have both an Opening Tag and a Closing Tag unless specified otherwise.