JavaScript is disabled! Please enable JavaScript in your web browser!

Freestyle Academy of Communication Arts & Technology

1299 Bryant Ave, Mt. View, CA 94040 T 650-940-4650 x5090
2 Required Classes: English and Digital Media 3rd/Elective Class:  + Animation or Design or Film

Back to list of all examples

Useful Stuff About:

Basic HTML

Here's what the most basic HTML codes looks like:

<!doctype html>
<html>

<head>
    <meta charset="UTF-8">
    <title>Title on Browser window or tab</title>
</head>

<body>
    <p>Visible content on page</p>
</body>

</html>