Yahoo Answers is shutting down on May 4th, 2021 (Eastern Time) and beginning April 20th, 2021 (Eastern Time) the Yahoo Answers website will be in read-only mode. There will be no changes to other Yahoo properties or services, or your Yahoo account. You can find more information about the Yahoo Answers shutdown and how to download your data on this help page.
Trending News
I want to put a presentation, including pictures, on a website. How do I do it?
The presentation is already prepared but I don't know how to get it to the site. Can you tell me what I'm supposed to do?
4 Answers
- 1 decade agoFavorite Answer
You can make a flash presentation. It would look nice and you can put music, design other crap like that. if you choose to do it this way type
<embed
src="mediaplayer.swf"
width="300"
height="300"
allowscriptaccess="always"
allowfullscreen="true"
flashvars="file=playlist.xml&backcolor=0x000000&autostart=true"
/>
"mediaplayer.swf" being the file name. adjust the pixels to what you want. You can find flash tutorials online. Flash is a little hard at first to learn, but when you learn it its obv the best:]
- 1 decade ago
first u select topic of presentation that u collect revelent information abt this tpoic with some pics and some drawing including graphics that u create headings and sub heading included at least one pic and at end suibmit that report with slide show
- 1 decade ago
what program are you using to make your website?
depending on which progrma your using i can help you.
I recommend using Freewebs.com
there you can make an awesome website for free.
- Anonymous1 decade ago
You can porgram a slide show using JavaScript. I have programmed such slide before, its code is as follows:
<SCRIPT LANGUAGE="JavaScript">
function goBack() {
if (parent.CurrentPage!=1) {
sCurPage=--parent.CurrentPage;
parent.frame1.location="slide"+sCurPage+".html"
}
}
function goForward() {
if (parent.CurrentPage<parent.MaxPages) {
sCurPage=++parent.CurrentPage;
parent.frame1.location="slide" +sCurPage+".html" }
else{
toc();}
}
function toc() { sCurPage=parent.CurrentPage=1;
parent.frame1.location="slide"+sCurPage+".html" } </SCRIPT>
</HEAD>
<BODY>
<center>
<img src="control2.jpg" usemap="#control">
</center>
To learn more about JavaScript, you can visit this website