Some text as link

Hello,

I have some text that should not be a link, but it is one.

On the page http://aupresent.thalasoft.com/newspaper/9 there are three exceprts that are underlined, but they should not be, like all the others.

I wonder what is wrong with them 3. I seems like a non closed element… but I can’t find anything…

Kind Regards,

All of your text is wrapped in an <a> element, which is underlined by default:

<[COLOR="#FF0000"]a[/COLOR] href="http://aupresent.thalasoft.com/engine/modules/news/newsStory/display.php?newsStoryId=265" onmouseover="(window.status=''); return(true);" title="">
<span style="font-weight: bold; font-style: italic; color: rgb(0, 0, 205);">(1 exercice : orthographe)</span>
<br>
<img border="0px" align="left" src="/account/data/news/newsStory/image/insee.jpg" alt="" style="margin-top: 2px; margin-right: 5px;">Le 27 novembre, le magazine économique « Challenges » livre à notre attention quelques-uns des résultats de l&#8217;étude annuelle de l&#8217;INSEE, « le portrait social de la France » qui analyse le mode de vie des Français. Cette année, on y apprend, entre autres, que...<br>
</[COLOR="#FF0000"]a[/COLOR]>

It would be better to use a <p> element, and wrap the actual link text in a link, rather than a styled span. E.g.

<p>[COLOR="#FF0000"]<a href="http://aupresent.thalasoft.com/engine/modules/news/newsStory/display.php?newsStoryId=265">(1 exercice : orthographe)</a>[/COLOR]
[COLOR="#006400"]<img src="/account/data/news/newsStory/image/insee.jpg" alt="">[/COLOR]
Le 27 novembre, le magazine économique « Challenges » livre à notre attention quelques-uns des résultats de l&#8217;étude annuelle de l&#8217;INSEE, « le portrait social de la France » qui analyse le mode de vie des Français. Cette année, on y apprend, entre autres, que...</p>

Oh… Thankfs for that Ralph !! I’ll correct it asap.