about.html code example
Example 1: 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 2: what does html stand for
HYPER-TEXT MARKUP LANGUAGE
It is one of the standardised markup languages that
defines the layout of a webpage.
You can use CSS to aid in the styling of the webpage.