What is basic HTML code?
Below is an example of a very basic webpage:
<html>
<head>
<title>My First Webpage</title>
</head>
<body bgcolor="yellow">
<p>This is a yellow webpage</p>
</body>
</html>