Can someone tell me why my video won't play?

3 replies
I am trying to build a web page, and I have a video I want to play, but all I get is the first frame as a graphic. How do I get my video to play?

Untitled Document

Also, I can't seem to get the link inserted into the button. In Dreamweaver, the link always shows up prior, or after the button. I can't figure out what I am doing wrong.

Can someone please help. Link for button needs to be: https://ys228.isrefer.com/go/webinar/timpears/

Here is my index file code:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>Untitled Document</title>
<style type="text/css">
.blue {
color: #0080C0;
}
.blue {
color: #0080FF;
}
.blue {
color: #004E9B;
}
.red {
color: #F00;
}
.red {
color: #F00;
}
.blue {
color: #0080C0;
}
.blue strong {
color: #00F;
}
.blue {
color: #0000A0;
}
</style>
</head>

<body>
<p align="center"><strong>Register Now: Space Extremely Limited
</strong></p>
<h1 align="center"><em><strong>Free Online Seminar</strong></em> <br />
<span class="blue">5 Steps To Doubling Sales In The Next 12 Months</span></h1>
<h2 align="center" class="red">100% guarantee! If you follow thesteps outlined in this online seminar, your revenues will double in the next 12 months.</h2>
<div align="center">
<div align="right"></div>
</div>
<p align="center"><video src="Register Now! 5 Steps To Doubling Sales.mp4"</video><controls></p>
<p align="center" class="blue"><strong>Register for this FREE online seminar.</strong></p>
<p align="center"><img src="register-now-button-pilll-red-hi.png" alt="" width="269" height="69" /></p>
</body>
</html>
#play #video
  • Profile picture of the author KirkMcD
    Originally Posted by timpears View Post

    <video src="Register Now! 5 Steps To Doubling Sales.mp4"</video>
    You left out a ">"

    <video src="Register Now! 5 Steps To Doubling Sales.mp4"></video>
    {{ DiscussionBoard.errors[9876268].message }}
  • Profile picture of the author Cthulchu
    It's easier to rewrite that part than to fix all that errors. try this:

    HTML Code:
    <video width="500" height="250" controls>
       <source src="Register Now!  5 Steps To Doubling Sales.mp4" type="video/mp4">
       Your browser does not support the video tag.
    </video>

    Here's your code for the "button":
    HTML Code:
    <a href="https://ys228.isrefer.com/go/webinar/timpears/"><img src="register-now-button-pilll-red-hi.png" alt="" width="269" height="69" /></a>
    {{ DiscussionBoard.errors[9876270].message }}
  • Profile picture of the author timpears
    Thanks folks, I finally got it working thanks to you.
    Signature

    Tim Pears

    {{ DiscussionBoard.errors[9876358].message }}

Trending Topics