With what you learned in the previous learning objectives, you are now only minutes away from making your first website.
	We have looked at how we can style the elements on a web page we are now going to create our own web page using Notepad. 
	
     Exercise - Create a web page
 
   
      Copy the text below into notepad
     
       
         <!DOCTYPE html>
         
<html>
         
<body>
         
<h1>My First Web Page</h1>
         
<p>My first paragraph.</p>
         
</body>
</html>
       
       Now save your web page in a folder called 'Web Design' using 'All files', as a file called index.html
       