hi guys im lost dont know where to put this

aksampras

Beta member
Messages
5
ok i got some real pain the ass problem here, i want to put a video on a microsoft web page but i dont know how to, i tried putting the video in a flv format and a wmv one then copy and pasting a hyperlink to it and all that crap, and it works as in the user has to click the link to then download it or open it, but i need it so that when somone opens my webpage the video is already embedded and ready to go with only 1 click needed


thanks so much
 
mmm im having a little trouble understanding, but i am using microsoft word document and then saving it as a web page, how do i use the coding and all that for this, all i need is to embed a video and some sound on to the page i have posted this everywhere stupid assignment :'(
 
okay what you are working with is called HTML. Hypertext markup language.
I would recommend you use Notepad (that's what I prefer).

But anyway, what you want to do is save the embed code from youtube.

yours happens to be:

Code:
<object width="425" height="344"><param name="movie" value="http://www.youtube.com/v/HizZO5gsUDo&hl=en_US&fs=1&"></param><param name="allowFullScreen" value="true"></param><param name="allowscriptaccess" value="always"></param><embed src="http://www.youtube.com/v/HizZO5gsUDo&hl=en_US&fs=1&" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="425" height="344"></embed></object>

Save that in your "webpage" file. The ".html" file.

Make sure that the computer you are trying to view this webpage file has internet access.


EDIT:
In case I some how lost you, just save this code in a file with the extension ".html" with out the quotes of course.

Code:
<html>
<head>
<title>Project</title>
</head>
<body>
<object width="425" height="344"><param name="movie" value="http://www.youtube.com/v/HizZO5gsUDo&hl=en_US&fs=1&"></param><param name="allowFullScreen" value="true"></param><param name="allowscriptaccess" value="always"></param><embed src="http://www.youtube.com/v/HizZO5gsUDo&hl=en_US&fs=1&" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="425" height="344"></embed></object>
</body>
</html>
 
Back
Top Bottom