You know what, for now. Instead of private messaging me, lets keep the conversation here. For learning to code, an online course is khan academy for HTML and js. And if you wish, I can supply material. And I was also basing my assumption on elementary based on my younger brother in 4th grade.
<!DOCTYPE html>
<!--Html consists of tags. most html documents have html as the base tag.-->
<html>
<!--The head tag containes page info, like the title, icon and more.-->
<head> <!--This is a comment, it does not do anything. It just is like info.-->
<title>This is the title. It is the browser title</title>
</head>
<!--The body containes the actual web page. This containes all the elements that are displayed.-->
<body>
<h1>This is a title, h1 is a header.</h1>
<h2>Smaller header, these go from h1-h6</h2>
<h6>Smallest header.</h6>
<p>This is paragraph text.</p>
<button>This is a button</button>
</body>
</html>