Adding Movies to Web Pages
It is just as easy to put links to movies on your web pages as it was to add links to sounds and external image files. For example, get the files named simpsons-2001.mpg and rocket.mpg from www.acm.uiuc.edu:
<hr>
<h2> Some Movie Files </h2>
<ul>
<li>
<a href="simpsons-2001.mpg">Homer 2001</a>
<li>
<a href="rocket.mpg">Rocket</a>
</ul>
<hr>
Save this, point the browser to your homepage file, and reload. You should see
something like the following:
In this HTML, <ul> starts an un-numbered list, </ul> ends the un-numbered list, and <li> precedes each separate member of the list. In this example we have put only two elements in the list, but we could add any number by repeating the above.
Now use the preceding example as a guideline to add some more movie links to your homepage. Here are some movie resources to help you out:
Next
Back
Top
Home
Help