Online Learning Applications for Technical English


Home
Syllabus
Assignments

Instructor



Adding video to a homepage

The video in Snapshot 4 was added to the homepage as follows:

  <video width="320" height="240" controls>
    <source src="./movie/mov_short_clip11.mp4" type="video/mp4">
    Your browser does not support the video tag.
  </video>

Figure 1. Inclusion of movie on a homepage using the <video> tag.

You can also use other video format sources (e.g., video/webm, video/ogg). The text between the <video> </video> tags (in the above example, "Your browser does not support the video tag.") will be displayed if a browser cannot support <video> elements.

Contact the instructor for more help.

[ Back ]