Search Support

Avoid support scams. We will never ask you to call or text a phone number or share personal information. Please report suspicious activity using the “Report Abuse” option.

Learn More

How can I play embedded .wav files on my personal website?

  • 18 iimpendulo
  • 1 inayo le ngxaki
  • 1 view
  • Impendulo yokugqibela ngu user1391240

more options

I created a personal website using Kompozer. I downloaded .wav files and embedded them on my website. Now, they will not play when I view my website using the latest version of Firefox. What gives? Here is the code I used to embed the .wav files.

<embed src="andnow2.wav" autostart="true" hidden="true"

loop="false" volume="50" height="25" width="25">

If anyone can help, I'd appreciate it.

Thanks.

I created a personal website using Kompozer. I downloaded .wav files and embedded them on my website. Now, they will not play when I view my website using the latest version of Firefox. What gives? Here is the code I used to embed the .wav files. <embed src="andnow2.wav" autostart="true" hidden="true" loop="false" volume="50" height="25" width="25"> If anyone can help, I'd appreciate it. Thanks.

Isisombulu esikhethiweyo

Can't you paste the full text I posted?

This is similar to <object><param></object>

Maybe try a more recent editor if you can't make it work with Kompozer:

Funda le mpendulo kwimeko leyo 👍 0

All Replies (18)

more options

You will have to use the AUDIO tag with the HTML5 media player and not the EMBED tag.

Firefox 52 and later releases only support the Shockwave Flash plugin and disable all other plugins. If you need to use other plugins then you can use the Firefox 52 ESR release. Otherwise you can stay with the current Firefox release version.

Why-do-Java-Silverlight-Adobe-Acrobat-and-other-plugins-no longer work.

more options

Thanks for the info, but now a miniplayer appears on my webpage - paulrdavis.com. What I want to have happen is for the audio file (.wav) to play when the webpage opens, but not have a miniplayer show. Essentially, I want the .wav file to play in background when the webpage opens. Can this be done?

Thanks.

more options

You can hide the player with CSS and add an autoplay attribute.

<audio controls="" preload="auto" autoplay="" style="visibility:hidden">
<source src="andnow2.wav" type="audio/mpeg">
</audio>
more options

Dear Cor-el (any relation to Jor-el?):

Your last solution worked for the most part, but I have two pages where it doesn't.

Here's the code for the two pages:

<html>
<head>
  <title>just for fun</title>
</head>
<body
 style="color: rgb(0, 0, 0); background-color: rgb(255, 255, 255); background-image: url(FIL60.JPG);"
 alink="#ff0033" link="#663366" vlink="#0000ff">
<audio controls="" preload="auto" autoplay=""
 style="visibility: hidden;"></audio>
<source src="woody2.wav" type="audio/mpeg"></source>
<div align="center"><big><big><big>Just
for Fun<br>
<br>
<a href="Actual%20Canadian%20Commercial.wmv">Actual
Canadian Commercial</a><br>
<br>
<a href="KissingPrank.wmv">Kissing Prank</a><br>
<br>
<a href="PianoBrothers.wmv">Piano Brothers</a><br>
<br>
<a href="Thisguyisamazing.wmvbylenn.wmv">This Guy is
Amazing</a><br>
<br>
<a href="TORO.wmv">Toro!</a></big></big></big>
<p><big> </big></p>
<div style="text-align: center;"><big> <a
 href="Index.html"><span style="color: rgb(135, 53, 228);">Return
Home</span></a><br>
</big></div>
<big> </big>
<div style="text-align: center;"></div>
</div>
</body>
</html>


AND

<html>
<head>
  <meta content="text/html; charset=ISO-8859-1"
 http-equiv="content-type">
  <title>Some of What I've Written</title>
</head>
<body style="background-image: url(FIL41.JPG);">
<audio controls="" preload="auto" autoplay=""
 style="visibility: hidden;"></audio>
<source src="ed_sul01.wav" type="audio/mpeg"></source>
<table border="0" cellpadding="0" cellspacing="10"
 width="100%">
  <tbody>
    <tr>
      <td class="body_text" valign="top" width="100%"><span
 style="color: rgb(0, 0, 153);">
      <font style="font-weight: bold;" size="3"><span
 style="font-family: verdana;"><span
 style="font-family: verdana;"><a
 name="Some_of_What_Ive_Written"></a>All Poems
© 1994-2017</span><br style="font-family: verdana;">
      <br style="font-family: verdana;">
      <br style="font-family: verdana;">
      <br style="font-family: verdana;">
      <span style="font-family: verdana;">Email me at <span
 style="text-decoration: underline;">19suomi48@gmail.com</span>
for permission to reprint these poems.</span><br
 style="font-family: verdana;">
      <br style="font-family: verdana;">
      <br style="font-family: verdana;">
      <br style="font-family: verdana;">
      <span style="font-family: verdana;"><a
 target="_blank" name="Table of Contents">
      <h1><a name="Table_of_Contents:"></a>Table
of
Contents:</h1>
      </a></span><br style="font-family: verdana;">
      <br style="font-family: verdana;">
      <br style="font-family: verdana;">
      <a style="color: rgb(51, 51, 255);"
 href="#Put%20the%20Fingers%20of%20Your%20Left%20Hand%20in%20the%20Palm%20of%20Your%20Right"><br
 style="font-family: verdana;">
      <span style="font-family: verdana;"><br>
      </span></a><a style="color: rgb(51, 51, 255);"
 href="#Put%20the%20Fingers%20of%20Your%20Left%20Hand%20in%20the%20Palm%20of%20Your%20Right">Put
the Fingers of Your Left Hand in the Palm of Your Right</a>
      <br style="font-family: verdana; color: rgb(51, 51, 255);">
      <br style="font-family: verdana; color: rgb(51, 51, 255);">
      <a style="color: rgb(51, 51, 255);"
 href="#%0D%0A%0D%0A%0D%0ARazor%20Blade%20Life%20on%20the%20Mountaintop%20as%20Seen%20from%20the%20Lighthouse%20on%20the%20Rocky%20Shore">
      <span style="font-family: verdana;"><b>Razor
Blade Life on the Mountaintop as Seen from the Lighthouse on the Rocky
Shore<


If you can figure out how the code should be arranged, I'd really appreciate it.

Thanks.

Ilungisiwe ngu cor-el

more options

That is easy to fix. You misplaced the SOURCE tag outside the AUDIO tag:

<audio controls="" preload="auto" autoplay=""
 style="visibility: hidden;"></audio>
<source src="ed_sul01.wav" type="audio/mpeg"></source>

This should work:

<audio controls="" preload="auto" autoplay=""
 style="visibility: hidden;">
<source src="ed_sul01.wav" type="audio/mpeg"></source>
</audio>

Note that you can use the builtin Inspector to check the code.

Ilungisiwe ngu cor-el

more options

Hi Cor-el,

It didn't solve my problem with those two pages. What next?

Thanks.

more options

Also, on my website builder, Kompozer, the closing tag, </audio>, could not be saved when I wrote it on the two pages.

more options

Isisombululo esiKhethiweyo

Can't you paste the full text I posted?

This is similar to <object><param></object>

Maybe try a more recent editor if you can't make it work with Kompozer:

more options

The only part of the full text you posted that I couldn't paste is: </audio>. I'm going to give bluegriffon I try. I'll let you know how that works.

Thanks,.

more options

Dear Cor-el,

Bluegriffon worked! My website, paulrdavis.com, is now fully functional, thanks to you. I'm sending you a virtual boxcar of your favorite snack or beverage. Again, many thanks!

more options

Dear Cor-el

I have one more problem that needs fixing: On the page "Some of What I've Written, I have a Table of Content, and also individual poems. Each poem in the Table of Contents should re-direct directly to that poem, and each poem has under it a link "Table of Contents" that should re-direct directly to the Table of Contents. Some of the poem links in the Table of Contents work, some don't. Some of the poems' links to re-direct to the Table of Contents work, and some don't.

Could you give me the proper code for each problem?

Here is the code I now have:

<html>
  <head>
    <meta content="text/html; charset=ISO-8859-1" http-equiv="content-type">
    <title>Some of What I've Written</title>
  </head>
  <body style="background-image: url(FIL41.JPG);"> <audio controls="controls"

      preload="auto" autoplay="autoplay" style="visibility: hidden;"> <source src="ed_sul01.wav"

        type="audio/mpeg"></audio>
    <table border="0" cellpadding="0" cellspacing="10" width="100%">
      <tbody>
        <tr>
          <td class="body_text" valign="top" width="100%"><span style="color: rgb(0, 0, 153);">
              <font style="font-weight: bold;" size="3"><span style="font-family: verdana;"><span

                    style="font-family: verdana;"><a name="Some_of_What_Ive_Written"></a>All
                    Poems © 1994-2017</span><br style="font-family: verdana;">
                  <br style="font-family: verdana;">
                  <br style="font-family: verdana;">
                  <br style="font-family: verdana;">
                  <span style="font-family: verdana;">Email me at <span style="text-decoration: underline;">19suomi48@gmail.com</span>
                    for permission to reprint these poems.</span><br style="font-family: verdana;">
                  <br style="font-family: verdana;">
                  <br style="font-family: verdana;">
                  <br style="font-family: verdana;">
                  <span style="font-family: verdana;"><a target="_blank" name="Table of Contents">
                    </a>
                    <h1><a target="_blank" name="Table of Contents"></a><a name="Table_of_Contents:"></a>Table
                      of Contents:</h1>
                  </span><br style="font-family: verdana;">
                  <br style="font-family: verdana;">
                  <br style="font-family: verdana;">
                  <a style="color: rgb(51, 51, 255);" href="#Put%20the%20Fingers%20of%20Your%20Left%20Hand%20in%20the%20Palm%20of%20Your%20Right"><span

                      style="font-family: verdana;">Put the Fingers of Your Left
                      Hand in the Palm of Your Right</span></a><br style="font-family: verdana; color: rgb(51, 51, 255);">
                  <br style="font-family: verdana; color: rgb(51, 51, 255);">
                  <a style="color: rgb(51, 51, 255);" href="#%0D%0A%0D%0A%0D%0ARazor%20Blade%20Life%20on%20the%20Mountaintop%20as%20Seen%20from%20the%20Lighthouse%20on%20the%20Rocky%20Shore">
                    <span style="font-family: verdana;"><b>Razor Blade Life on
                        the Mountaintop as Seen from the Lighthouse on the Rocky
                        Shore</b></span><br style="font-family: verdana;">
                  </a><span style="font-family: verdana; color: rgb(51, 51, 255);"></span><br

                    style="font-family: verdana; color: rgb(51, 51, 255);">
                  <a style="color: rgb(51, 51, 255);" href="#Christmas%20Day"><span

                      style="font-family: verdana;"> Christmas Day </span></a><br

                    style="font-family: verdana; color: rgb(51, 51, 255);">
                  <br style="font-family: verdana; color: rgb(51, 51, 255);">
                  <a style="color: rgb(51, 51, 255);" href="#The_Bystander_"><span

                      style="font-family: verdana;">The Bystander</span></a><br

                    style="font-family: verdana; color: rgb(51, 51, 255);">
                </span></font></span>
            <div style="text-align: center; color: rgb(51, 51, 255);"><font style="font-weight: bold;"

                size="3"><span style="font-family: verdana;"></span></font><br style="font-family: verdana;">
              <font style="font-weight: bold;" size="3"><span style="font-family: verdana;"></span></font></div>
            <span style="color: rgb(51, 51, 255);"><font style="font-weight: bold;"

                size="3"><span style="font-family: verdana;"><a href="#%0D%0A%0D%0AAscension"><span

                      style="font-family: verdana;">Ascension</span><br style="font-family: verdana;">
                  </a><a href="#I_Want_to_Write_Like_Pablo_Neruda_"><br style="font-family: verdana;">
                    <span style="font-family: verdana;">I Want to Write Like
                      Pablo Neruda</span></a><br style="font-family: verdana;">
                  <br style="font-family: verdana;">
                  <a href="#I_Did_It_"><span style="font-family: verdana;">I Did
                      It</span></a><br style="font-family: verdana;">
                  <br style="font-family: verdana;">
                  <a href="#The_Verdict_"><span style="font-family: verdana;">The
                      Verdict</span></a><br style="font-family: verdana;">
                  <br style="font-family: verdana;">
                  <a href="#The_Beginning_"><span style="font-family: verdana;">The
                      Beginning</span></a><br style="font-family: verdana;">
                  <br style="font-family: verdana;">
                  <a href="#Time_the_Hero_"><span style="font-family: verdana;">Time,
                      the Hero</span></a></span></font></span><span style="font-family: verdana; color: rgb(51, 51, 255);"><span

                style="text-decoration: underline;"><span style="font-weight: bold;"><br>
                  <br>
                  <a href="#Failure_Death_and_Necessity_">Failure, Death and
                    Necessity</a><br>
                </span></span></span><span style="color: rgb(51, 51, 255);"><font

                style="font-weight: bold;" size="3"><span style="font-family: verdana;"></span></font></span><span

              style="color: rgb(0, 0, 153);"><font style="font-weight: bold; color: rgb(51, 51, 255);"

                size="3"><span style="font-family: verdana;"><br style="font-family: verdana;">
                  <a href="#Away_"><span style="font-family: verdana;">Away</span></a><br

                    style="font-family: verdana;">
                  <br style="font-family: verdana;">
                  <a href="#Squirrels_Sailing_and_Five_Notes_"><span style="font-family: verdana;">Squirrels,
                      Sailing and Five Notes</span></a><br style="font-family: verdana;">
                </span></font><span style="font-weight: bold; color: rgb(51, 51, 255);"><font

                  size="3"><span style="font-family: verdana;"><br>
                    <a href="#Veterans">Veterans</a><br>
                    <br>
                    <a href="#You_Know_Its_Love">You Know It's Love<br>
                    </a><br>
                    <a href="#Overtaken">Overtaken</a><br>
                    <br>
                    <a href="#Before_Existence">Before Existence</a><br>
                    <br>
                    <a href="#Radiant_Heat">Radiant Heat</a><br>
                    <br>
                    <a href="#Come_Back_to_the_Breath_">Come Back to the Breath<br>
                    </a><br>
                    <a href="#Why_Is_the_Universe_Smiling">Why is the Universe
                      Smiling?<br>
                    </a><br>
                    <a href="#Picnic_On_Mars">Picnic On Mars</a><br>
                    <br>
                    <a href="#Encounter_at_Ground_Zero">Encounter at Ground Zero</a>
                    <br>
                    <br>
                    <a href="#Come_Eden,_Slowly" target="_top"><span style="text-decoration: underline;">Come
                        Eden, Slowly</span></a><br>
                    <br>
                    <span style="text-decoration: underline;"><a href="#We_Will_Wait">We
                        Will Wait</a><br>
                      <br>
                      <a href="#Interim"><span style="text-decoration: underline;">Interim</span></a><br>
                      <br>
                      <a href="#How_a_Family_Relates_to_Death"><span style="text-decoration: underline;">How
                          a Family Relates to Death</span></a><br>
                      <br>
                      <span style="text-decoration: underline;"><a href="#The_Little_Man_Who_Thought_He_Was_Gosd">The
                          Little Man Who Thought He Was God</a><br>
                        <br>
                        <a href="#Make_Me_Laugh">Make Me Laugh</a><br>
                        <br>
                        <a href="#Sarajevo_1914"><span style="text-decoration: underline;">Sarajevo,
                            1914</span></a><br>
                        <br>
                        <a href="#The_Shore_of_My_Name"><span style="text-decoration: underline;">The
                            Shore of My Name</span></a><br>
                        <br>
                      </span><a href="#Leave_Us_In_Darkness">Leave Us In
                        Darkness</a><br>
                      <br>
                      <a href="#Not_to_Speak_So_Kindly"><span style="text-decoration: underline;">Not
                          to Speak So Kindly</span></a><br>
                      <br>
                      <a href="#Perception"><span style="text-decoration: underline;">Perception</span></a><br>

Ilungisiwe ngu cor-el

more options

If you check the links then you can see that some links include HTML code or escaped ASCII code (%0D%0A) and not all links have spaces converted to an underscore or have a typo (god -> gosd). There are also links that have a trailing underscore. You will have to go through them all.

This is a simple bookmarklet to make the name links visible: javascript:(function(){var d=document,sS='[name]:before{content:" [" attr(name) "] ";font-size:75%;color:#f44;background-color:#eee}',nS;nS=d.createElement('STYLE');nS.id='style_nam';nS.type='text/css';nS.innerHTML=unescape(sS);d.querySelector('head').appendChild(nS);})()

This is a simple bookmarklet to make the href links visible: javascript:(function(){var d=document,sS='[href]:before{content:" [" attr(href) "] ";font-size:75%;color:#f44;background-color:#eee}',nS;nS=d.createElement('STYLE');nS.id='style_nam';nS.type='text/css';nS.innerHTML=unescape(sS);d.querySelector('head').appendChild(nS);})()


Ascension «/Some%20of%20What%20I%27ve%20Written.html#%0D%0A%0D%0AAscension»
Ascension «Ascension»
Away «/Some%20of%20What%20I%27ve%20Written.html#Away_»
Away_ «Away_»
Before Existence «/Some%20of%20What%20I%27ve%20Written.html#Before_Existence»
Before_Existence «Before_Existence»
Christmas Day «/Some%20of%20What%20I%27ve%20Written.html#Christmas%20Day»
Christmas Day «Christmas Day»
Come Eden, Slowly «/Some%20of%20What%20I%27ve%20Written.html#Come_Eden,_Slowly»
Come_Eden,_Slowly «Come_Eden,_Slowly»
Come Back to the Breath «/Some%20of%20What%20I%27ve%20Written.html#Come_Back_to_the_Breath_»
Come_Back_to_the_Breath_ «Come_Back_to_the_Breath_»
Death of a Flapper «/Some%20of%20What%20I%27ve%20Written.html#Death_of_a_Flapper»
Death_of_a_Flapper «Death_of_a_Flapper»
Encounter at Ground Zero «/Some%20of%20What%20I%27ve%20Written.html#Encounter_at_Ground_Zero»
Encounter_at_Ground_Zero «Encounter_at_Ground_Zero»
Failure, Death and Necessity «/Some%20of%20What%20I%27ve%20Written.html#Failure_Death_and_Necessity_»
Failure_Death_and_Necessity_ «Failure_Death_and_Necessity_»
How a Family Relates to Death «/Some%20of%20What%20I%27ve%20Written.html#How_a_Family_Relates_to_Death»
How_a_Family_Relates_to_Death «How_a_Family_Relates_to_Death»
I Did It «/Some%20of%20What%20I%27ve%20Written.html#I_Did_It_»
I_Did_It_ «I_Did_It_»
I Want to Write Like Pablo Neruda «/Some%20of%20What%20I%27ve%20Written.html#I_Want_to_Write_Like_Pablo_Neruda_»
I_Want_to_Write_Like_Pablo_Neruda_ «I_Want_to_Write_Like_Pablo_Neruda_»
Interim «/Some%20of%20What%20I%27ve%20Written.html#Interim»
Interim «Interim»
Leave Us In Darkness «/Some%20of%20What%20I%27ve%20Written.html#Leave_Us_In_Darkness»
Leave_Us_In_Darkness «Leave_Us_In_Darkness»
Make Me Laugh «/Some%20of%20What%20I%27ve%20Written.html#Make_Me_Laugh»
Make_Me_Laugh «Make_Me_Laugh»
Morocco:  1926 «/Some%20of%20What%20I%27ve%20Written.html#Morocco:__1926»
Morocco:__1926 «Morocco:__1926»
Not to Speak So Kindly «/Some%20of%20What%20I%27ve%20Written.html#Not_to_Speak_So_Kindly»
Not_to_Speak_So_Kindly «Not_to_Speak_So_Kindly»
Overtaken «/Some%20of%20What%20I%27ve%20Written.html#Overtaken»
Overtaken «Overtaken»
Perception «/Some%20of%20What%20I%27ve%20Written.html#Perception»
Perception «Perception»
Picnic On Mars «/Some%20of%20What%20I%27ve%20Written.html#Picnic_On_Mars»
Picnic_On_Mars «Picnic_On_Mars»
Put the Fingers of Your Left Hand in the Palm of Your Right «/Some%20of%20What%20I%27ve%20Written.html#Put%20the%20Fingers%20of%20Your%20Left%20Hand%20in%20the%20Palm%20of%20Your%20Right»
Radiant Heat «/Some%20of%20What%20I%27ve%20Written.html#Radiant_Heat»
Radiant_Heat «Radiant_Heat»
Razor Blade Life on the Mountaintop as Seen from the Lighthouse on the Rocky Shore «/Some%20of%20What%20I%27ve%20Written.html#%0D%0A%0D%0A%0D%0ARazor%20Blade%20Life%20on%20the%20Mountaintop%20as%20Seen%20from%20the%20Lighthouse%20on%20the%20Rocky%20Shore»
Razor Blade Life on the Mountaintop as Seen from the Lighthouse on the Rocky Shore «Razor Blade Life on the Mountaintop as Seen from the Lighthouse on the Rocky Shore »
Return Home «/Index.html»
Sarajevo, 1914 «/Some%20of%20What%20I%27ve%20Written.html#Sarajevo_1914»
Sarajevo_1914 «Sarajevo_1914»
Squirrels, Sailing and Five Notes «/Some%20of%20What%20I%27ve%20Written.html#Squirrels_Sailing_and_Five_Notes_»
Squirrels_Sailing_and_Five_Notes_ «Squirrels_Sailing_and_Five_Notes_»
The Shore of My Name «/Some%20of%20What%20I%27ve%20Written.html#The_Shore_of_My_Name»
The_Shore_of_My_Name «The_Shore_of_My_Name»
The Little Man Who Thought He Was God «/Some%20of%20What%20I%27ve%20Written.html#The_Little_Man_Who_Thought_He_Was_Gosd»
The_Little_Man_Who_Thought_He_Was_Gosd «The_Little_Man_Who_Thought_He_Was_Gosd»
The Beginning «/Some%20of%20What%20I%27ve%20Written.html#The_Beginning_»
The_Beginning_ «The_Beginning_»
The Bystander «/Some%20of%20What%20I%27ve%20Written.html#The_Bystander_»
The_Bystander_ «The_Bystander_»
The Verdict «/Some%20of%20What%20I%27ve%20Written.html#The_Verdict_»
The_Verdict_ «The_Verdict_»
Time, the Hero «/Some%20of%20What%20I%27ve%20Written.html#Time_the_Hero_»
Time_the_Hero_ «Time_the_Hero_»
Veterans «/Some%20of%20What%20I%27ve%20Written.html#Veterans»
Veterans «Veterans»
We Will Wait «/Some%20of%20What%20I%27ve%20Written.html#We_Will_Wait»
We_Will_Wait «We_Will_Wait»
Why is the Universe Smiling? «/Some%20of%20What%20I%27ve%20Written.html#Why_Is_the_Universe_Smiling»
Why_Is_the_Universe_Smiling «Why_Is_the_Universe_Smiling»
You Know It's Love «/Some%20of%20What%20I%27ve%20Written.html#You_Know_Its_Love»
You_Know_Its_Love «You_Know_Its_Love»
more options

Hi Cor-el

I'm somewhat confused, or maybe just stupid.

I don't quite understand your last post and all the code there.

This code:

                 <a style="color: rgb(51, 51, 255);" href="#Christmas%20Day"> Christmas Day </a>

works for the poem "Christmas Day" and directs directly to the complete poem, and the redirect to the Table of Contents works there as well.

The code you gave me for "Christmas Day" is, I believe and correct me if I'm wrong:

Christmas Day «/Some%20of%20What%20I%27ve%20Written.html#Christmas%20Day» Christmas Day «Christmas Day»

Where does that code belong?

I need clearer instructions on exactly how to write the code because I don't understand the first two bits of code you gave me.

Sorry for the inconvenience, but I'm kind of dumb about this.

Thanks.

more options

I posted a list of all the links on that page. Only the first two links aren't working currently and you may want to move these first two links to the same container where the other links starting with Ascension reside and substitute the spaces in the anchor and corresponding name with an underscore and cleanup that part of the code with the <br> tags that have a style attribute. Some BR tags got corrupted and the style part became part of the text as stray style text (BR tags do not need a style attribute).

  • <br> style="font-family: verdana; color: rgb(51, 51, 255);">

Change to:


<a style="color: rgb(51, 51, 255);" href="#Put_the_Fingers_of_Your_Left_Hand_in_the_Palm_of_Your_Right"><span style="font-family: verdana;">Put the Fingers of Your Left
                      Hand in the Palm of Your Right</span></a>

Corresponding name link:

<a name="Put_the_Fingers_of_Your_Left_Hand_in_the_Palm_of_Your_Right"></a>
<a style="color: rgb(51, 51, 255);" href="#Razor_Blade_Life_on_the_Mountaintop_as_Seen_from_the_Lighthouse_on_the_Rocky_Shore">
<span style="font-family: verdana;"><b>Razor Blade Life on the Mountaintop as Seen from the Lighthouse on the Rocky Shore</b></span>
</a>

Corresponding name link:

<a name="Razor_Blade_Life_on_the_Mountaintop_as_Seen_from_the_Lighthouse_on_the_Rocky_Shore"></a>
more options

Dear Cor-el

Here is the code in Bluegriffon that I used. Did I do it right? The two poem links still don't work. HELP!

<a style="color: rgb(51, 51, 255);" href="#Put_the_Fingers_of_Your_Left_Hand_in_the_Palm_of_Your_Right">Put the Fingers of Your
                       Left Hand in the Palm of Your Right </a>

<a style="color: rgb(51, 51, 255);" href="#Razor_Blade_Life_on_the_Mountaintop_as_Seen_from_the_Lighthouse_on_the_Rocky_Shore">Razor Blade Life on the Mountaintop as Seen from the Lighthouse on the Rocky Shore </a>

Thanks.

more options

Hi again Cor-el

Here's the code as it stands now. The first two poems still don't redirect. I've tried different coding, but I'm stymied. I have no idea what is wrong.

<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
  <head>
    <meta content="text/html; charset=ISO-8859-1" http-equiv="content-type">
    <title>Some of What I've Written</title>
  </head>
  <body style="      background-image: url(FIL41.JPG);"> <audio controls="controls"

      preload="auto" autoplay="autoplay" style="visibility: hidden;"> <source src="ed_sul01.wav"

        type="audio/mpeg"></audio>
    <table border="0" cellpadding="0" cellspacing="10" width="100%">
      <tbody>
        <tr>
          <td class="body_text" valign="top" width="100%"><span style="color: rgb(0, 0, 153);">
              <font style="font-weight: bold;" size="3"><span style="font-family: verdana;"><span

                    style="font-family: verdana;"><a name="Some_of_What_Ive_Written"></a>All
                    Poems © 1994-2017</span><br style="font-family: verdana;">
                  <span style="font-family: verdana;">Email me at <span style="text-decoration: underline;">19suomi48@gmail.com</span>
                    for permission to reprint these poems.</span>
                <br style="font-family: verdana;">
                  <span style="font-family: verdana;"><a target="_blank" name="Table of Contents">
                    </a>
                    <h1><a target="_blank" name="Table of Contents"></a><a name="Table_of_Contents:"></a>Table
                      of Contents:</h1>
                    <a style="color: rgb(51, 51, 255);" href="#Put_the_Fingers_of_Your_Left_Hand_in_the_Palm_of_Your_Right"><span
                    style="font-family: verdana;">Put the Fingers of Your Left Hand in the Palm of Your Right</span></a><br>
                    
                    <br>
                    <a style="color: rgb(51, 51, 255);" href="#Razor_Blade_Life_on_the_Mountaintop_as_Seen_from_the_Lighthouse_on_the_Rocky_Shore">
                      <span style="font-family: verdana;">
                        <b>
                          Razor Blade Life on the Mountaintop as Seen from the Lighthouse on the Rocky Shore</b> </span></a>
                    <br><br>
                    <

Thanks.

Ilungisiwe ngu cor-el

more options

The first two links appear to be working at the moment, but the page code looks a bit weird The link text ended up in an 'id' element instead of in a span element. You can compare the code with the other item in the table of content in the Inspector. You can right-click and select "Inspect Element" to open the builtin Inspector with this element selected.

<a style="color: rgb(51, 51, 255);" a="" href="#Put%20the%20Fingers%20of%20Your%20Left%20Hand%20in%20the%20Palm%20of%20Your%20Right">
<br>
 <br>
 <id>Put the Fingers of Your Left Hand in the Palm of Your Right
 <span style="font-family: verdana;"> <b></b> </span>
  <br>
  <br>
  </id>
</a>

<a href="#Razor%20Blade%20Life%20on%20the%20Mountaintop%20as%20Seen%20from%20the%20Lighthouse%20on%20the%20Rocky%20Shore">
 <id>Razor Blade Life on the Mountaintop as Seen from the
     Lighthouse on the Rocky Shore <br>
 <br>
 </id>;
</a>


You probably want something like this:

<a style="color: rgb(51, 51, 255);" href="#Put%20the%20Fingers%20of%20Your%20Left%20Hand%20in%20the%20Palm%20of%20Your%20Right">
 <br>
 <br>
 <span style="font-family: verdana;">
   Put the Fingers of Your Left Hand in the Palm of Your Right
 </span>
 <br>
 <br>
</a>

<a style="color: rgb(51, 51, 255);" href="#Razor%20Blade%20Life%20on%20the%20Mountaintop%20as%20Seen%20from%20the%20Lighthouse%20on%20the%20Rocky%20Shore">
 <span style="font-family: verdana;">
   Razor Blade Life on the Mountaintop as Seen from the Lighthouse on the Rocky Shore
 </span>
 <br>
 <br>
</a>

Maybe consider to ask advice elsewhere at the Stack Overflow forum site. There they can give more advice about how to code your website properly and cleanup some of the code.

Ilungisiwe ngu cor-el

more options

Hi Cor-el

After much web sleuthing and research, I was able to get the links working properly. I will look around and get some help cleaning up my code. Thanks for all your help and pointing me in the right directions. Have a great life and be content. Bye.