• Our friends from the Johto Times are hosting a favorite Pokémon poll - and we'd love for you to participate! Click here for information on how to vote for your favorites!
  • Welcome to PokéCommunity! Register now and join one of the best fan communities on the 'net to talk Pokémon and more! We are not affiliated with The Pokémon Company or Nintendo.

Help meeee...PLEASE!

Soph

Chasing Arcanine with a spoon XD
  • 1,278
    Posts
    21
    Years
    Im in one of my clases at the moment and we are doing HTML, designing sites on a host exclusive to the TAFE I'm at. I cant show you the site since its required you log into the TAFE homepage but that isnt the problem. Im trying to do something and I caht find the HTML I need.

    I went onto some ones sote once and they had this option where you could click on a sound clip and it would play, and they had 4 or 5 of those. Now I cannot for the life of me work out what HTML I need to do that. Can anyone help me? PLEASE? I need the help right away....pretty please...
     
    Lissa Explains is much easier to use in my opinion...I've never been a fan of FCs.....
     
    well dont' u just have to upload the file, and link to it like u would any link, it will just play with your default media player.
     
    I just came up with this idea out of nowhere. o.O But I think it would work.

    First, in the page that you would be adding the music, put this code where you would want the player to be:
    Code:
    <a href="songa.htm target="player"><br>
    <a href="songb.htm target="player"><br>
    <iframe width="WIDTHA" height="HEIGHTA" frameborder="0" src="songa.htm" name="player"></iframe>
    Be sure to replace the WIDTHA and HEIGHTA with whatever height you want the player to be plus an extra... 5 or so pixels. And you can name the songa/songb or whatever you want, just make sure it's a universal change. Then just stick the embed information in the songa.htm/songb.htm and it should play.

    *adds in possible coding*
    Code:
    [b]index.htm[/b]
    <center>
    <b>Play Your Favorite Music!</b><br>
    <a href="toxic.htm" target="player"> | <a href="breathe.htm" target="player"><br>
    <iframe width="155" height="155" frameborder="0" src="default.htm" name="player"></iframe>
    </center>
    Code:
    [b]default.htm[/b]
    <html></html>
    Code:
    [b]toxic.htm[/b]
    <embed src="toxic.mid" height="150" width="150">
    Code:
    [b]breathe.htm[/b]
    <embed src="breathe.mid" height="150" width="150">


    In theory, that should work. But I haven't tested it... so meh. =/
     
    Back
    Top