A little bit on HTML Code. Below is how a web developer starts to code a HTML web design code.
<html>
<head>
<title>A Simple Web Page</title>
<style>
here is where you put your css and example of css code is
h1{
color: green
}
</style>
</head>
<body>
<h1> This is a Simple Web Page Heading. </h1>
<p>
This is a simple web page content. The heading is always enclosed in the "H" tags and we have h1 - h6. The paragraph tag encloses every single paragraph and I know we all know what a paragraph is.
</p>
</body>
</html>
Take this little tip and do the homework by yourself. Have a nice day.