If you are really interested to learn or test a HTML script, then here are the steps. There are plenty of tools to create webpages using HTML codes. But I am going to give you the most simple tool to learn HTML.The tool, you will need to use a text editor like “Notepad (for Windows).”

Steps to Create a Webpage in HTML using Notepad:

  1. Open Notepad
  2. Create a New Document (copy and paste the Code given below)
  3. Save File in HTML
  4. View the saved File in Web browser

See the Output and HTML Tags below. The link to the image should be from your own online media library. The size of the video to be played may be given in HTML. In this case, the video width is set to “350” and height is set to “250”.

The Output

The Code

<html>
<Body>
<video width="350" height="250" controls="">
<source src="https://webofonlineresources.com/wp-content/uploads/2020/07/Book-11253.mp4">
</video>
</Body>
</html>