basic html codes code example
Example 1: html basic code
<!DOCTYPE html>
<html>
<title>"TEXT"</title>
<body>
"Eliments"
</body>
</html>
Example 2: html basic code
<!DOCTYPE html>
<html>
<body>
<h1>My First Heading</h1>
<p>My first paragraph.</p>
</body>
</html>
Example 3: basic html document
<!DOCTYPE html>
<html lang="pt-br" xml:lang="fr" xmlns="http://www.w3.org/1999/xhtml">
<head>
<link rel="stylesheet" type="text/css" href="style.css">
<title>...</title>
</head>
<body>
...
<script type="text/javascript" src="script.js"></script>
</body>
</html>
Example 4: basic html codes
<html> </html>
<body> </body>
<h1> </h1>
<br>
<p> </p>
<head> </head>