Mettre une bande passante permanante en haut
remz13127
Messages postés
292
Statut
Membre
-
remz13127 Messages postés 292 Statut Membre -
remz13127 Messages postés 292 Statut Membre -
Bonsoir a tous
je suis sous l'hébergeur Ifrance. Comme vous le savez leur pub en haut reste meme si on baisse la page. Je voudrais juste en dessous de leur pub rajouter une bande passante qui défile que c'est moi qui cré, mais je voudrais qu'elle reste aussi quand on descend la page. Comment je dois m'y prendre ?? Merci de votre aide. Cordialement.
je suis sous l'hébergeur Ifrance. Comme vous le savez leur pub en haut reste meme si on baisse la page. Je voudrais juste en dessous de leur pub rajouter une bande passante qui défile que c'est moi qui cré, mais je voudrais qu'elle reste aussi quand on descend la page. Comment je dois m'y prendre ?? Merci de votre aide. Cordialement.
14 réponses
-
Salut, il faut que tu indique la position de ta bannière en css, pour qu'elle reste à la même place sur l'écran, utilise
position:fixed;
après tu indique à combien de px tu bouge du haut, en utilisant
top: 5px; -
Ah merci, mais tu n'aurais pas un code ? Car là je comprend pas trop ou il faut mettre position:fixed; et top: 5px;
Merci pour ta réponse, cordialement. -
Je te traduis ce le collègue a dit (d'après ce que j'ai compris):
#banniere
{
background-image:url("ton_image.format");
position:fixed;
top:5;
} -
Salut, merci pour ta réponse je vais essayer. Mais le probleme c'est que moi c'est pas une image c'est un texte défilant. Alors par quoi je dois remplacer ("ton_image.format"); ? Merci
-
Vous n’avez pas trouvé la réponse que vous recherchez ?
Posez votre question -
Mais sinon est ce que tu n'aurais pas plutot un code html car le php je n'y comprend pas trop, je passe par nvu et sa n'accepte pas le code, merci.
-
J'ai juste traduit ce qu'il a dit et non donner une solution.
Si tu veux faire passer un texte de gauche a droit, la ça devient du PHP je pense en utilisant la boucle for par exemple.
Sinon y a un autre moyen créer une animation contenant ce texte et l'insérer en tant qu'image -
Moi mon code html c'est :
<!-- Début du code du texte défilant d'Astwinds-->
<noscript><a href="https://1map.com/fr/astwindscom">Texte défilant<br>
d'Astwinds</A></noscript>
<marquee class="Scroller" behavior="scroll" direction="left"
width="100%" height="19" scrollamount="4" scrolldelay="0"
onmouseover="this.stop()" onmouseout="this.start()"><font
face="Arial, Helvetica, sans-serif" size="2"><font color="#666666"><strong>
mon texte défilant</strong></font></font></marquee>
<!-- Fin du code du texte défilant d'Astwinds -->
Voila et je voudrais qu'il reste en haut quand on descend la page.
Merci.-
tient dans ta balise <head> colle ceci:
<style type="text/css"> <!-- #banniere { top:5; text-align:center; position:fixed; width: 100%; } #contenu { margin-top: 60px; } --> </style>
ensuite dans la balise body colle ceci:
<p> </p> <center> <div id="banniere"> <!-- Début du code du texte défilant d'Astwinds--> <noscript><a href="https://1map.com/fr/astwindscom">Texte défilant<br> d'Astwinds</A></noscript> <marquee class="Scroller" behavior="scroll" direction="left" width="100%" height="19" scrollamount="4" scrolldelay="0" onmouseover="this.stop()" onmouseout="this.start()"><font face="Arial, Helvetica, sans-serif" size="2"><font color="#666666"><strong> mon texte défilant</strong></font></font></marquee> <!-- Fin du code du texte défilant d'Astwinds --> </div></center> <div id="contenu"><p>allo</p> <p> </p> <p>ceci</p> <p> </p> <p> </p> <p>est un</p> <p> </p> <p> </p> <p>test</p> <p> </p> <p>de banniere </p> <p> </p> <p> </p> <p> </p> <p>fixe</p> <p> </p> <p> </p> <p>bon</p> <p> </p> <p> </p> <p>test</p> <p> </p> <p>merci</p> </div>
-
-
Je viens de comprendre ^^' mets un div
<div id="bann"> <!-- Début du code du texte défilant d'Astwinds--> <noscript><a href="https://1map.com/fr/astwindscom">Texte défilant<br> d'Astwinds</A></noscript> <marquee class="Scroller" behavior="scroll" direction="left" width="100%" height="19" scrollamount="4" scrolldelay="0" onmouseover="this.stop()" onmouseout="this.start()"><font face="Arial, Helvetica, sans-serif" size="2"><font color="#666666"><strong> mon texte défilant</strong></font></font></marquee> <!-- Fin du code du texte défilant d'Astwinds --> </div>
dans le css tu feras:#bann { position:fixed; top:20; } -
Lol merci pour le code mais sa marche pas :/ j'ai un texte défilant en haut et j'ai un mot sur une ligne :
allo
ceci
est
un
texte
de
banniere
fixe
bon
test
merci
Voila ce que j'ai lol, merci.-
Est-ce que tu as bien fait ainsi ?
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> <title>Document sans titre</title> <style type="text/css"> <!-- #banniere { top:5; text-align:center; position:fixed; width: 100%; } #contenu { margin-top: 60px; } --> </style> </head> <body> <!-- Début du code du texte défilant d'Astwinds--> <p> </p> <center> <div id="banniere"> <!-- Début du code du texte défilant d'Astwinds--> <noscript><a href="https://1map.com/fr/astwindscom">Texte défilant<br> d'Astwinds</A></noscript> <marquee class="Scroller" behavior="scroll" direction="left" width="100%" height="19" scrollamount="4" scrolldelay="0" onmouseover="this.stop()" onmouseout="this.start()"><font face="Arial, Helvetica, sans-serif" size="2"><font color="#666666"><strong> mon texte défilant</strong></font></font></marquee> <!-- Fin du code du texte défilant d'Astwinds --> </div></center> <div id="contenu"><p>allo</p> <p> </p> <p>ceci</p> <p> </p> <p> </p> <p>est un</p> <p> </p> <p> </p> <p>test</p> <p> </p> <p>de banniere </p> <p> </p> <p> </p> <p> </p> <p>fixe</p> <p> </p> <p> </p> <p>bon</p> <p> </p> <p> </p> <p>test</p> <p> </p> <p>merci</p> </div> </strong></font></font></marquee> </div> </body> </html>
Copie colle cette page dans une page php vide et tu verras que le code du collègue fonctionne. -
ouff tu fais exprès ou quoi?
le texte sur chaque ligne c'est juste un exemple pour te montrer que quand tu déroule la page et bien la banniere reste fixe, alors tu prends ta souris et tu efface ce texte et tu remplace par le contenu de ta page.
pour ce qui est du texte défilant tu change dans ton code "mon texte défilant" par le texte que toi tu veux voir défiler.
À ce que je vois tu aurais intérêt a aller suivre la formation sur https://openclassrooms.com/fr/
Tu aurais beaucoup moins de difficulté à faire ce que tu veux au lieu de demander des codes tout fait et avec quoi tu n'apprendras jamais la base :)ouff tu fais exprès ou quoi? le texte sur chaque ligne c'est juste un exemple pour te montrer que quand tu déroule la page et bien la banniere reste fixe, alors tu prends ta souris et tu efface ce texte et tu remplace par le contenu de ta page.
lol
À ce que je vois tu aurais intérêt a aller suivre la formation sur https://openclassrooms.com/fr/
Je n'évoque pas cela par plaisir, mais tu devrais suivre le conseil du collègue.
La même ambition qui mène au progrès peut aussi entrainer notre chute ;-)
tu regretteras d'avoir copier des scripts tout fait
-
-
dsl mais sa marché pas quand meme !! je vous dit que moi mon site n'est pas php mais html !!
-
Merci pour ton code, je l'ai inséré dans code html, sa marchait pas, je suis avec le logiciel nvu.
Voila alors je ne comprend pas pourquoi, mais j'essaye de comprendre. -
Moi le code que j'ai de mon message défilant c'est :
<!-- Début du code du texte défilant d'Astwinds-->
<noscript><a href="https://1map.com/fr/astwindscom">Texte défilant<br>
d'Astwinds</A></noscript>
<marquee class="Scroller" behavior="scroll" direction="left"
width="100%" height="19" scrollamount="4" scrolldelay="0"
onmouseover="this.stop()" onmouseout="this.start()"><font
face="Arial, Helvetica, sans-serif" size="2"><font color="#666666"><strong>
MON MESSAGE DEFILANT ICI</strong></font></font></marquee>
<!-- Fin du code du texte défilant d'Astwinds -->
Voila et il fonctionne, mais moi j'aimerai qu'il reste figé en haut quand on descend la page. Et quand je met votre code, le texte défile en haut, mais il ne reste pas figé. -
a ok !
<!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>Star-Academy8.ifrance.com - Tchat & live Gratuit
Star Academy 8</title>
<style type="text/css">
.MIVAresults {margin: 0; padding: 0; width: 100%; background-color: transparent; text-align:left;}
.MIVA_title {display:block; font-family: Trebuchet MS,arial,verdana,helvetica,sans-serif;font-style: italic; font-size: 9pt; color: ;}
.MIVA_descr {display:block; font-family: Trebuchet MS,arial,verdana,helvetica,sans-serif;font-size:8pt;font-weight:normal;color:#333333;}
.MIVAresults a:hover .MIVA_title {text-decoration:underline;}
.MIVAresults a:hover .MIVA_url {color:#E57F16;}
</style>
</head>
<body>
<!-- Début du code du texte défilant d'Astwinds-->
<noscript><a href="https://1map.com/fr/astwindscom">Texte
défilant<br> d'Astwinds</A></noscript>
<marquee class="Scroller" behavior="scroll"
direction="left" width="100%" height="19"
scrollamount="4" scrolldelay="0"
onmouseover="this.stop()" onmouseout="this.start()"><font
face="Arial, Helvetica, sans-serif" size="2"><font
color="#666666"><strong> Bonjour à tous et
bienvenue sur Star-Academy8.ifrance.com ! Ici vous allez
découvrir le <span style="color: rgb(255, 0, 0);">live
gratuit</span>
de la star academy 8 + un tchat pour parler en même temps !
Et
tout ça gratuitement ! N'hésitez pas à
laisser
votre impression du site dans le <span
style="color: rgb(255, 0, 0);">livre d'or</span> <a
style="color: rgb(255, 0, 0);"
href="http://www.swisstools.net/guestbook.asp?numero=120174">en
cliquant ici</a> ! Merci, bon tchat et bon live ;) ! </strong></font></font></marquee>
<!-- Fin du code du texte défilant d'Astwinds -->
<table
style="border: 1px solid rgb(153, 153, 153); background-color: rgb(255, 255, 255);"
align="center" border="0" cellpadding="0"
cellspacing="0" height="1" width="950">
<tbody>
<tr>
<td align="center" valign="top">
<table bgcolor="#ffffff" border="0"
cellpadding="0" cellspacing="0" width="100%">
<tbody>
<tr align="center">
<td style="background-color: rgb(153, 153, 153);"
background="./designs/design4/imgs/degrade_top.gif" width="100%"><small><small><small><span
style="text-decoration: underline;"><br>
<br>
</span></small></small></small><img
style="width: 834px; height: 126px;" alt=""
src="logosite.gif"><small><small><br>
<br>
</small></small>
<div style="text-align: right;"><small
style="font-family: Arial; font-weight: bold; color: rgb(255, 0, 0); background-color: rgb(204, 204, 204);">
<a style="color: rgb(255, 0, 0);"
href="http://star-academy8.ifrance.com/aide.html">Aide</a>
</small><span
style="background-color: rgb(204, 204, 204);"></span><br>
</div>
<small><small> </small></small> </td>
</tr>
<tr>
<td align="center" height="3" width="100%"><br>
<table style="border: 1px solid rgb(153, 153, 153);"
border="0" cellpadding="0" cellspacing="0"
width="940">
<tbody>
<tr>
<td
style="background-color: rgb(153, 153, 153); font-family: Arial; text-align: center; color: rgb(255, 255, 255);"
class="blanc" bgcolor="#0f9800" height="25"
width="10%"><small><span class="menu_sel"><b><a
style="color: rgb(255, 255, 255);"
href="http://star-academy8.ifrance.com/">Live Star Academy 8<br>
</a> </b></span></small></td>
<td
style="border-style: none none none solid; border-color: -moz-use-text-color -moz-use-text-color -moz-use-text-color rgb(153, 153, 153); border-width: 0px 0px 0px 1px; background-color: rgb(204, 204, 204); font-family: Arial; font-weight: bold; text-align: center; color: rgb(102, 102, 102);"
background="designs/design4/imgs/degrade_bas.gif" height="25"
width="10%"><big><small><a
style="color: rgb(102, 102, 102);"
href="http://star-academy8.ifrance.com/tf1.html"><small
style="font-weight: bold;"><span
style="font-family: Arial;">Quotidiennes et Primes</span></small></a></small></big></td>
<td
style="border-style: none none none solid; border-color: -moz-use-text-color -moz-use-text-color -moz-use-text-color rgb(153, 153, 153); border-width: 0px 0px 0px 1px; background-color: rgb(153, 153, 153); font-family: Arial; font-weight: bold; text-align: center; color: rgb(255, 255, 255);"
background="designs/design4/imgs/degrade_bas.gif" height="25"
width="10%"><span style="color: rgb(255, 255, 255);"><small
style="font-weight: bold;"><span
style="font-family: Arial;"></span></small></span><span
style="color: rgb(255, 255, 255);"><small
style="font-weight: bold;"><span
style="font-family: Arial;"></span></small></span><a
href="http://star-academy8.ifrance.com/enjoy.html"><small
style="color: rgb(255, 0, 0);"><span
style="text-decoration: underline;"></span></small></a><a
style="color: rgb(255, 255, 255);"
href="http://star-academy8.ifrance.com/nrj.html"><big><small><big><small><small
style="font-weight: bold;"><span
style="font-family: Arial;">Live Nrj Hits</span></small></small></big></small></big></a></td>
<td
style="border-style: none none none solid; border-color: -moz-use-text-color -moz-use-text-color -moz-use-text-color rgb(153, 153, 153); border-width: 0px 0px 0px 1px; background-color: rgb(204, 204, 204); font-family: Arial; font-weight: bold; text-align: center; color: rgb(102, 102, 102);"
background="designs/design4/imgs/degrade_bas.gif" height="25"
width="10%"><big><small><big><small><a
style="color: rgb(102, 102, 102);"
href="http://star-academy8.ifrance.com/nrj.html"><small
style="font-weight: bold;"><span
style="font-family: Arial;"></span></small></a></small></big></small><small><a
href="http://star-academy8.ifrance.com/enjoy.html"><small
style="color: rgb(255, 0, 0);"><span
style="text-decoration: underline;">Live EnjoyStation</span></small></a></small></big></td>
<td
style="border-style: none none none solid; border-color: -moz-use-text-color -moz-use-text-color -moz-use-text-color rgb(153, 153, 153); border-width: 0px 0px 0px 1px; background-color: rgb(153, 153, 153); font-family: Arial; font-weight: bold; text-align: center; color: rgb(255, 255, 255);"
background="designs/design4/imgs/degrade_bas.gif" height="25"
width="10%"><big><small><small
style="color: rgb(255, 255, 255);"><big><a
style="color: rgb(255, 255, 255);"
href="http://star-academy8.ifrance.com/mcm.html"><small
style="font-family: Arial; font-weight: bold;">Live Mcm Top<br>
</small></a></big></small></small></big></td>
</tr>
</tbody>
</table>
<span
style="color: rgb(255, 102, 0); font-family: Arial; font-weight: bold;"></span><span
style="font-family: Arial;"><span
style="font-weight: bold;"></span><span
style="text-decoration: underline;"><span
style="font-weight: bold;"></span></span></span><br>
<span style="color: rgb(255, 0, 0);"><img
style="width: 13px; height: 13px;"
src="Copie%20de%20icone_selection.gif" alt=""> </span><big
style="font-weight: bold; font-family: Tahoma;"><span
style="color: rgb(255, 0, 0);"><span
style="color: rgb(255, 0, 0);"></span><a
style="color: rgb(255, 0, 0);"
href="http://star-academy8.ifrance.com/">LIVE
1</a><span style="color: rgb(255, 0, 0);"></span></span></big><span
style="color: rgb(255, 0, 0);"><span
style="color: rgb(255, 0, 0);"><big
style="font-weight: bold; font-family: Tahoma;"><span
style="color: rgb(255, 0, 0);">
</span></big></span></span><img
style="width: 13px; height: 13px;"
src="Copie%20de%20icone_selection.gif" alt=""> <big
style="font-weight: bold; font-family: Tahoma;"><span
style="color: rgb(255, 0, 0);"><span
style="color: rgb(255, 255, 255);"></span><a
style="color: rgb(102, 102, 102);"
href="http://star-academy8.ifrance.com/index2.html">LIVE 2</a></span></big><span
style="color: rgb(255, 0, 0);"><span
style="color: rgb(255, 0, 0);"><big
style="font-weight: bold; font-family: Tahoma;"><span
style="color: rgb(255, 0, 0);"> </span></big></span></span><span
style="color: rgb(255, 0, 0);"><span
style="color: rgb(255, 0, 0);"><big
style="font-weight: bold; font-family: Tahoma;"><span
style="color: rgb(255, 0, 0);">
</span></big></span></span><span
style="color: rgb(255, 0, 0);"><span
style="color: rgb(255, 0, 0);"><big
style="font-weight: bold; font-family: Tahoma;"><span
style="color: rgb(255, 0, 0);"></span></big></span></span><img
style="width: 13px; height: 13px; color: rgb(102, 102, 102);"
src="Copie%20de%20icone_selection.gif" alt=""><span
style="color: rgb(102, 102, 102);"> </span><a
style="color: rgb(102, 102, 102);"
href="http://star-academy8.ifrance.com/hd.html"><big
style="font-weight: bold; font-family: Tahoma;">LIVE 3</big></a><big
style="font-weight: bold; font-family: Tahoma;"><span
style="color: rgb(255, 0, 0);"><span
style="color: rgb(255, 0, 0);"></span></span></big><span
style="color: rgb(255, 0, 0);"><span
style="color: rgb(255, 0, 0);"><big
style="font-weight: bold; font-family: Tahoma;"><span
style="color: rgb(255, 0, 0);">
</span></big></span></span><img
style="width: 13px; height: 13px; color: rgb(102, 102, 102);"
src="Copie%20de%20icone_selection.gif" alt=""><span
style="color: rgb(102, 102, 102);"> </span><a
style="color: rgb(102, 102, 102);"
href="http://star-academy8.ifrance.com/index4.html"><big
style="font-weight: bold; font-family: Tahoma;">LIVE 4</big></a><big
style="font-weight: bold; font-family: Tahoma;"><span
style="color: rgb(255, 0, 0);"><span
style="color: rgb(255, 0, 0);"></span></span></big><span
style="color: rgb(255, 0, 0);"><span
style="color: rgb(255, 0, 0);"><big
style="font-weight: bold; font-family: Tahoma;"><span
style="color: rgb(255, 0, 0);">
</span></big></span></span><span
style="color: rgb(102, 102, 102);"><span
style="color: rgb(102, 102, 102);"></span><span
style="color: rgb(102, 102, 102);"></span><img
style="width: 13px; height: 13px; color: rgb(102, 102, 102);"
src="Copie%20de%20icone_selection.gif" alt=""><span
style="color: rgb(102, 102, 102);"> </span></span><span
style="color: rgb(102, 102, 102);"></span><a
style="color: rgb(102, 102, 102);"
href="http://star-academy8.ifrance.com/index5.html"><big
style="font-weight: bold; font-family: Tahoma;">LIVE 5</big></a><br>
<br>
<table
style="border: 1px solid rgb(153, 153, 153); width: 924px; height: 381px;"
border="0" cellpadding="0" cellspacing="0">
<tbody>
<tr align="center">
<td style="background-color: rgb(204, 204, 204);"><big
style="color: rgb(255, 0, 0);"><span
style="font-family: Arial; font-weight: bold;"></span></big>
<object type="application/x-shockwave-flash"
id="jtv_player_flash"
data="https://www.twitch.tv/widgets/jtv_player.swf?channel=starac08"
bgcolor="#000000" height="465" width="564"> <param
name="allowFullScreen" value="true"><param
name="movie" value="https://www.twitch.tv/widgets/jtv_player.swf"><param
name="scale" value="dafault"><param
name="flashvars"
value="channel=starac08&auto_play=true&start_volume=25"> </object>
<embed id="emb_1223374348879"
src="http://st.chatango.com/flash/group.swf?ref=&gn=star-academy.chatango.com" wmode="transparent"
allowscriptaccess="always" allownetworking="all"
type="application/x-shockwave-flash" allowfullscreen="true"
flashvars="cid=1223374348879&a=1CAFF1&b=100&c=CCF3FA&d=F8FBFC&f=67&k=999999&l=1CAFF1&m=FFFFFF&n=019EBD&p=12&s=1&aa=1"
height="465" width="350"><br>
<br>
<span style="color: rgb(255, 0, 0);"><img
style="width: 13px; height: 13px;"
src="Copie%20de%20icone_selection.gif" alt=""> </span><big
style="font-weight: bold; font-family: Tahoma;"><span
style="color: rgb(255, 0, 0);"><span
style="color: rgb(255, 0, 0);"></span><a
style="color: rgb(255, 0, 0);"
href="http://star-academy8.ifrance.com/">LIVE
1</a><span style="color: rgb(255, 0, 0);"></span></span></big><span
style="color: rgb(255, 0, 0);"><span
style="color: rgb(102, 102, 102);"><big
style="font-weight: bold; font-family: Tahoma;">
</big></span></span><span
style="color: rgb(255, 0, 0);"><span
style="color: rgb(255, 0, 0);"><big
style="font-weight: bold; font-family: Tahoma;"><span
style="color: rgb(255, 0, 0);"></span></big></span></span><img
style="width: 13px; height: 13px;"
src="Copie%20de%20icone_selection.gif" alt=""> <big
style="font-weight: bold; font-family: Tahoma;"><span
style="color: rgb(255, 0, 0);"><span
style="color: rgb(255, 255, 255);"></span><a
style="color: rgb(102, 102, 102);"
href="http://star-academy8.ifrance.com/index2.html">LIVE 2</a></span></big><span
style="color: rgb(255, 0, 0);"><span
style="color: rgb(255, 0, 0);"><big
style="font-weight: bold; font-family: Tahoma;"><span
style="color: rgb(255, 0, 0);">
</span></big></span></span><span
style="color: rgb(255, 0, 0);"><span
style="color: rgb(255, 0, 0);"><big
style="font-weight: bold; font-family: Tahoma;"><span
style="color: rgb(255, 0, 0);"> </span></big></span></span><img
style="width: 13px; height: 13px; color: rgb(102, 102, 102);"
src="Copie%20de%20icone_selection.gif" alt=""><span
style="color: rgb(102, 102, 102);"> </span><a
style="color: rgb(102, 102, 102);"
href="http://star-academy8.ifrance.com/hd.html"><big
style="font-weight: bold; font-family: Tahoma;">LIVE 3</big></a><span
style="color: rgb(102, 102, 102);"><big
style="font-weight: bold; font-family: Tahoma;">
</big></span><span
style="color: rgb(255, 0, 0);"><span
style="color: rgb(255, 0, 0);"><big
style="font-weight: bold; font-family: Tahoma;"><span
style="color: rgb(255, 0, 0);"> </span></big></span></span><img
style="width: 13px; height: 13px; color: rgb(102, 102, 102);"
src="Copie%20de%20icone_selection.gif" alt=""><span
style="color: rgb(102, 102, 102);"> </span><a
style="color: rgb(102, 102, 102);"
href="http://star-academy8.ifrance.com/index4.html"><big
style="font-weight: bold; font-family: Tahoma;">LIVE 4</big></a><span
style="color: rgb(255, 0, 0);"><span
style="color: rgb(255, 0, 0);"><big
style="font-weight: bold; font-family: Tahoma;"><span
style="color: rgb(255, 0, 0);">
</span></big></span></span><span
style="color: rgb(102, 102, 102);"></span><img
style="width: 13px; height: 13px; color: rgb(102, 102, 102);"
src="Copie%20de%20icone_selection.gif" alt=""><span
style="color: rgb(102, 102, 102);"> </span><a
style="color: rgb(102, 102, 102);"
href="http://star-academy8.ifrance.com/index5.html"><big
style="font-weight: bold; font-family: Tahoma;">LIVE 5</big></a><br>
<br>
</td>
</tr>
</tbody>
</table>
</td>
</tr>
<tr>
<td align="center" width="100%"><br>
</td>
</tr>
<tr>
<td align="center" width="100%">
<table
style="border: 1px solid rgb(153, 153, 153); height: 474px; width: 924px;"
border="0" cellpadding="0" cellspacing="0">
<tbody>
<tr align="center">
<td style="background-color: rgb(153, 153, 153);"><br>
<big style="color: rgb(0, 0, 0);"><span
style="font-family: Arial; font-weight: bold;"></span></big><br>
<img style="width: 487px; height: 451px;"
alt="" src="reglestchat.gif"><br>
<br>
<br>
</td>
</tr>
</tbody>
</table>
<br>
<table
style="border: 1px solid rgb(153, 153, 153); height: 474px; width: 924px;"
border="0" cellpadding="0" cellspacing="0">
<tbody>
<tr align="center">
<td style="background-color: rgb(204, 204, 204);"><br>
<br>
<img style="width: 759px; height: 411px;"
alt="" src="infossite.gif"><br>
<br>
<big><span
style="font-family: Arial; font-weight: bold; color: rgb(255, 0, 0);"><a
style="color: rgb(255, 0, 0);"
href="http://star-academy8.ifrance.com/aide.html">Page
d'aide ici</a><br>
<br>
</span></big> </td>
</tr>
</tbody>
</table>
<br>
<table
style="border: 1px solid rgb(153, 153, 153); height: 474px; width: 924px;"
border="0" cellpadding="0" cellspacing="0">
<tbody>
<tr align="center">
<td style="background-color: rgb(153, 153, 153);"><br>
<img style="width: 504px; height: 500px;"
alt="" src="00044006311920_S.jpg">
<object type="application/x-shockwave-flash"
id="plugoo"
data="http://www.plugoo.com/plug.swf?go=5I68AVJ9F2PW23V"
height="350" width="180"> <param name="movie"
value="http://www.plugoo.com/plug.swf?go=5I68AVJ9F2PW23V"> <param
name="allowScriptAccess" value="always"> <param
name="wmode" value="transparent"> </object><!--Code HTML service sondage de Hawa Tools -->
<script type="text/javascript">
var params = location.search.substring(1).split("&");
var variables = new Array();
for (i in params) {
var segments_var = params[i].split("=");
variables[segments_var[0]] = unescape(segments_var[1]);
}
document.write('<scr'+'ipt type="text/javascript" language="javascript" src="http://www.hawatools.com/service-sondage/sondage-js.php?id_membre=7940&id=2951&url_page=%27+escape(document.location.href)+%27&page=%27+escape(variables["page"])+'"><'+'/scr'+'ipt>');
</script>
<noscript><a href="https://hawatools.com/"
target="_blank"
title="Services gratuits pour webmasters">Sondages</a> </noscript>
</td>
</tr>
</tbody>
</table>
<br>
</td>
</tr>
<tr style="font-weight: bold;" align="center">
<td style="background-color: rgb(204, 204, 204);"
background="./designs/design4/imgs/degrade_bas.gif" height="30"
width="100%"> <big
style="font-weight: bold; font-family: Arial;"><big><big><small><span
style="color: rgb(255, 255, 255);"></span></small></big></big></big><a
href="http://referencement-annuaire-web.fr/"><img
src="http://referencement-annuaire-web.fr/"
border="0"></a> <span
style="font-family: Arial; color: rgb(255, 255, 255); font-weight: bold;">-</span>
<small style="color: rgb(255, 255, 255);"><a
style="font-family: Arial;"
href="http://annuaire.kalitic-referencement.fr/"
title="annuaire référencement">Annuaire
Référencement</a><span
style="font-family: Arial;"><big><span
style="font-weight: bold;"> -</span></big> </span><a
style="font-family: Arial;"
href="https://www.netdeveloppeur.com/"
title="annuaire referencement">Annuaire referencement</a><span
style="font-family: Arial;"> <big
style="font-weight: bold;">-</big> </span><a
style="font-family: Arial;" href="http://afimark.com/"
title="annuaire referencement web" target="_blank">annuaire
referencement web</a><big><span
style="font-family: Arial; font-weight: bold;"> - </span></big><a
style="font-family: Arial;"
title="Annuaire pour le Référencement Google"
href="https://annuaire.yagoort.org/">Annuaire Webmaster</a><br>
<br>
<span style="color: rgb(0, 0, 0); font-family: Arial;"><a
style="color: rgb(0, 0, 0);"
href="http://star-academy8.ifrance.com/partenaires.html">Partenaires</a>
- <a style="color: rgb(0, 0, 0);"
href="http://www.swisstools.net/guestbook.asp?numero=120174">Livre
d'or</a> - <a style="color: rgb(0, 0, 0);"
href="mailto:star-academy8@ifrance.com">Contact</a>
- <a style="color: rgb(0, 0, 0);"
href="http://star-academy8.ifrance.com/aide.html">Aide</a>
- <span style="color: rgb(255, 0, 0);">Copyright
Star-Academy8 2008</span></span><br>
</small><small style="color: rgb(255, 255, 255);"><br>
</small></td>
</tr>
</tbody>
</table>
</td>
</tr>
</tbody>
</table>
</body>
</html>-
ok alors essaie ceci:
<!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>Star-Academy8.ifrance.com - Tchat & live Gratuit Star Academy 8</title> <style type="text/css"> #banniere { top:5; text-align:center; position:fixed; width: 100%; } #contenu { margin-top: 20px; } .MIVAresults {margin: 0; padding: 0; width: 100%; background-color: transparent; text-align:left;} .MIVA_title {display:block; font-family: Trebuchet MS,arial,verdana,helvetica,sans-serif;font-style: italic; font-size: 9pt; color: ;} .MIVA_descr {display:block; font-family: Trebuchet MS,arial,verdana,helvetica,sans-serif;font-size:8pt;font-weight:normal;color:#333333;} .MIVAresults a:hover .MIVA_title {text-decoration:underline;} .MIVAresults a:hover .MIVA_url {color:#E57F16;} </style> </head> <body> <center> <div id="banniere"> <!-- Début du code du texte défilant d'Astwinds--> <noscript><a href="https://1map.com/fr/astwindscom">Texte défilant<br> d'Astwinds</A></noscript> <marquee class="Scroller" behavior="scroll" direction="left" width="100%" height="19" scrollamount="4" scrolldelay="0" onmouseover="this.stop()" onmouseout="this.start()"><font face="Arial, Helvetica, sans-serif" size="2"><font color="#666666"><strong> Bonjour à tous et bienvenue sur Star-Academy8.ifrance.com ! Ici vous allez découvrir le <span style="color: rgb(255, 0, 0);">live gratuit</span> de la star academy 8 + un tchat pour parler en même temps ! Et tout ça gratuitement ! N'hésitez pas à laisser votre impression du site dans le <span style="color: rgb(255, 0, 0);">livre d'or</span> <a style="color: rgb(255, 0, 0);" href="http://www.swisstools.net/guestbook.asp?numero=120174">en cliquant ici</a> ! Merci, bon tchat et bon live ;) ! </strong></font></font></marquee> <!-- Fin du code du texte défilant d'Astwinds --> </div></center> <div id="contenu"> <table style="border: 1px solid rgb(153, 153, 153); background-color: rgb(255, 255, 255);" align="center" border="0" cellpadding="0" cellspacing="0" height="1" width="950"> <tbody> <tr> <td align="center" valign="top"> <table bgcolor="#ffffff" border="0" cellpadding="0" cellspacing="0" width="100%"> <tbody> <tr align="center"> <td style="background-color: rgb(153, 153, 153);" background="./designs/design4/imgs/degrade_top.gif" width="100%"><small><small><small><span style="text-decoration: underline;"><br> <br> </span></small></small></small><img style="width: 834px; height: 126px;" alt="" src="logosite.gif"><small><small><br> <br> </small></small> <div style="text-align: right;"><small style="font-family: Arial; font-weight: bold; color: rgb(255, 0, 0); background-color: rgb(204, 204, 204);"> <a style="color: rgb(255, 0, 0);" href="http://star-academy8.ifrance.com/aide.html">Aide</a> </small><span style="background-color: rgb(204, 204, 204);"></span><br> </div> <small><small> </small></small> </td> </tr> <tr> <td align="center" height="3" width="100%"><br> <table style="border: 1px solid rgb(153, 153, 153);" border="0" cellpadding="0" cellspacing="0" width="940"> <tbody> <tr> <td style="background-color: rgb(153, 153, 153); font-family: Arial; text-align: center; color: rgb(255, 255, 255);" class="blanc" bgcolor="#0f9800" height="25" width="10%"><small><span class="menu_sel"><b><a style="color: rgb(255, 255, 255);" href="http://star-academy8.ifrance.com/">Live Star Academy 8<br> </a> </b></span></small></td> <td style="border-style: none none none solid; border-color: -moz-use-text-color -moz-use-text-color -moz-use-text-color rgb(153, 153, 153); border-width: 0px 0px 0px 1px; background-color: rgb(204, 204, 204); font-family: Arial; font-weight: bold; text-align: center; color: rgb(102, 102, 102);" background="designs/design4/imgs/degrade_bas.gif" height="25" width="10%"><big><small><a style="color: rgb(102, 102, 102);" href="http://star-academy8.ifrance.com/tf1.html"><small style="font-weight: bold;"><span style="font-family: Arial;">Quotidiennes et Primes</span></small></a></small></big></td> <td style="border-style: none none none solid; border-color: -moz-use-text-color -moz-use-text-color -moz-use-text-color rgb(153, 153, 153); border-width: 0px 0px 0px 1px; background-color: rgb(153, 153, 153); font-family: Arial; font-weight: bold; text-align: center; color: rgb(255, 255, 255);" background="designs/design4/imgs/degrade_bas.gif" height="25" width="10%"><span style="color: rgb(255, 255, 255);"><small style="font-weight: bold;"><span style="font-family: Arial;"></span></small></span><span style="color: rgb(255, 255, 255);"><small style="font-weight: bold;"><span style="font-family: Arial;"></span></small></span><a href="http://star-academy8.ifrance.com/enjoy.html"><small style="color: rgb(255, 0, 0);"><span style="text-decoration: underline;"></span></small></a><a style="color: rgb(255, 255, 255);" href="http://star-academy8.ifrance.com/nrj.html"><big><small><big><small><small style="font-weight: bold;"><span style="font-family: Arial;">Live Nrj Hits</span></small></small></big></small></big></a></td> <td style="border-style: none none none solid; border-color: -moz-use-text-color -moz-use-text-color -moz-use-text-color rgb(153, 153, 153); border-width: 0px 0px 0px 1px; background-color: rgb(204, 204, 204); font-family: Arial; font-weight: bold; text-align: center; color: rgb(102, 102, 102);" background="designs/design4/imgs/degrade_bas.gif" height="25" width="10%"><big><small><big><small><a style="color: rgb(102, 102, 102);" href="http://star-academy8.ifrance.com/nrj.html"><small style="font-weight: bold;"><span style="font-family: Arial;"></span></small></a></small></big></small><small><a href="http://star-academy8.ifrance.com/enjoy.html"><small style="color: rgb(255, 0, 0);"><span style="text-decoration: underline;">Live EnjoyStation</span></small></a></small></big></td> <td style="border-style: none none none solid; border-color: -moz-use-text-color -moz-use-text-color -moz-use-text-color rgb(153, 153, 153); border-width: 0px 0px 0px 1px; background-color: rgb(153, 153, 153); font-family: Arial; font-weight: bold; text-align: center; color: rgb(255, 255, 255);" background="designs/design4/imgs/degrade_bas.gif" height="25" width="10%"><big><small><small style="color: rgb(255, 255, 255);"><big><a style="color: rgb(255, 255, 255);" href="http://star-academy8.ifrance.com/mcm.html"><small style="font-family: Arial; font-weight: bold;">Live Mcm Top<br> </small></a></big></small></small></big></td> </tr> </tbody> </table> <span style="color: rgb(255, 102, 0); font-family: Arial; font-weight: bold;"></span><span style="font-family: Arial;"><span style="font-weight: bold;"></span><span style="text-decoration: underline;"><span style="font-weight: bold;"></span></span></span><br> <span style="color: rgb(255, 0, 0);"><img style="width: 13px; height: 13px;" src="Copie%20de%20icone_selection.gif" alt=""> </span><big style="font-weight: bold; font-family: Tahoma;"><span style="color: rgb(255, 0, 0);"><span style="color: rgb(255, 0, 0);"></span><a style="color: rgb(255, 0, 0);" href="http://star-academy8.ifrance.com/">LIVE 1</a><span style="color: rgb(255, 0, 0);"></span></span></big><span style="color: rgb(255, 0, 0);"><span style="color: rgb(255, 0, 0);"><big style="font-weight: bold; font-family: Tahoma;"><span style="color: rgb(255, 0, 0);"> </span></big></span></span><img style="width: 13px; height: 13px;" src="Copie%20de%20icone_selection.gif" alt=""> <big style="font-weight: bold; font-family: Tahoma;"><span style="color: rgb(255, 0, 0);"><span style="color: rgb(255, 255, 255);"></span><a style="color: rgb(102, 102, 102);" href="http://star-academy8.ifrance.com/index2.html">LIVE 2</a></span></big><span style="color: rgb(255, 0, 0);"><span style="color: rgb(255, 0, 0);"><big style="font-weight: bold; font-family: Tahoma;"><span style="color: rgb(255, 0, 0);"> </span></big></span></span><span style="color: rgb(255, 0, 0);"><span style="color: rgb(255, 0, 0);"><big style="font-weight: bold; font-family: Tahoma;"><span style="color: rgb(255, 0, 0);"> </span></big></span></span><span style="color: rgb(255, 0, 0);"><span style="color: rgb(255, 0, 0);"><big style="font-weight: bold; font-family: Tahoma;"><span style="color: rgb(255, 0, 0);"></span></big></span></span><img style="width: 13px; height: 13px; color: rgb(102, 102, 102);" src="Copie%20de%20icone_selection.gif" alt=""><span style="color: rgb(102, 102, 102);"> </span><a style="color: rgb(102, 102, 102);" href="http://star-academy8.ifrance.com/hd.html"><big style="font-weight: bold; font-family: Tahoma;">LIVE 3</big></a><big style="font-weight: bold; font-family: Tahoma;"><span style="color: rgb(255, 0, 0);"><span style="color: rgb(255, 0, 0);"></span></span></big><span style="color: rgb(255, 0, 0);"><span style="color: rgb(255, 0, 0);"><big style="font-weight: bold; font-family: Tahoma;"><span style="color: rgb(255, 0, 0);"> </span></big></span></span><img style="width: 13px; height: 13px; color: rgb(102, 102, 102);" src="Copie%20de%20icone_selection.gif" alt=""><span style="color: rgb(102, 102, 102);"> </span><a style="color: rgb(102, 102, 102);" href="http://star-academy8.ifrance.com/index4.html"><big style="font-weight: bold; font-family: Tahoma;">LIVE 4</big></a><big style="font-weight: bold; font-family: Tahoma;"><span style="color: rgb(255, 0, 0);"><span style="color: rgb(255, 0, 0);"></span></span></big><span style="color: rgb(255, 0, 0);"><span style="color: rgb(255, 0, 0);"><big style="font-weight: bold; font-family: Tahoma;"><span style="color: rgb(255, 0, 0);"> </span></big></span></span><span style="color: rgb(102, 102, 102);"><span style="color: rgb(102, 102, 102);"></span><span style="color: rgb(102, 102, 102);"></span><img style="width: 13px; height: 13px; color: rgb(102, 102, 102);" src="Copie%20de%20icone_selection.gif" alt=""><span style="color: rgb(102, 102, 102);"> </span></span><span style="color: rgb(102, 102, 102);"></span><a style="color: rgb(102, 102, 102);" href="http://star-academy8.ifrance.com/index5.html"><big style="font-weight: bold; font-family: Tahoma;">LIVE 5</big></a><br> <br> <table style="border: 1px solid rgb(153, 153, 153); width: 924px; height: 381px;" border="0" cellpadding="0" cellspacing="0"> <tbody> <tr align="center"> <td style="background-color: rgb(204, 204, 204);"><big style="color: rgb(255, 0, 0);"><span style="font-family: Arial; font-weight: bold;"></span></big> <object type="application/x-shockwave-flash" id="jtv_player_flash" data="https://www.twitch.tv/widgets/jtv_player.swf?channel=starac08" bgcolor="#000000" height="465" width="564"> <param name="allowFullScreen" value="true"><param name="movie" value="https://www.twitch.tv/widgets/jtv_player.swf"><param name="scale" value="dafault"><param name="flashvars" value="channel=starac08&auto_play=true&start_volume=25"> </object> <embed id="emb_1223374348879" src="http://st.chatango.com/flash/group.swf?ref=&gn=star-academy.chatango.com" wmode="transparent" allowscriptaccess="always" allownetworking="all" type="application/x-shockwave-flash" allowfullscreen="true" flashvars="cid=1223374348879&a=1CAFF1&b=100&c=CCF3FA&d=F8FBFC&f=67&k=999999&l=1CAFF1&m=FFFFFF&n=019EBD&p=12&s=1&aa=1" height="465" width="350"><br> <br> <span style="color: rgb(255, 0, 0);"><img style="width: 13px; height: 13px;" src="Copie%20de%20icone_selection.gif" alt=""> </span><big style="font-weight: bold; font-family: Tahoma;"><span style="color: rgb(255, 0, 0);"><span style="color: rgb(255, 0, 0);"></span><a style="color: rgb(255, 0, 0);" href="http://star-academy8.ifrance.com/">LIVE 1</a><span style="color: rgb(255, 0, 0);"></span></span></big><span style="color: rgb(255, 0, 0);"><span style="color: rgb(102, 102, 102);"><big style="font-weight: bold; font-family: Tahoma;"> </big></span></span><span style="color: rgb(255, 0, 0);"><span style="color: rgb(255, 0, 0);"><big style="font-weight: bold; font-family: Tahoma;"><span style="color: rgb(255, 0, 0);"></span></big></span></span><img style="width: 13px; height: 13px;" src="Copie%20de%20icone_selection.gif" alt=""> <big style="font-weight: bold; font-family: Tahoma;"><span style="color: rgb(255, 0, 0);"><span style="color: rgb(255, 255, 255);"></span><a style="color: rgb(102, 102, 102);" href="http://star-academy8.ifrance.com/index2.html">LIVE 2</a></span></big><span style="color: rgb(255, 0, 0);"><span style="color: rgb(255, 0, 0);"><big style="font-weight: bold; font-family: Tahoma;"><span style="color: rgb(255, 0, 0);"> </span></big></span></span><span style="color: rgb(255, 0, 0);"><span style="color: rgb(255, 0, 0);"><big style="font-weight: bold; font-family: Tahoma;"><span style="color: rgb(255, 0, 0);"> </span></big></span></span><img style="width: 13px; height: 13px; color: rgb(102, 102, 102);" src="Copie%20de%20icone_selection.gif" alt=""><span style="color: rgb(102, 102, 102);"> </span><a style="color: rgb(102, 102, 102);" href="http://star-academy8.ifrance.com/hd.html"><big style="font-weight: bold; font-family: Tahoma;">LIVE 3</big></a><span style="color: rgb(102, 102, 102);"><big style="font-weight: bold; font-family: Tahoma;"> </big></span><span style="color: rgb(255, 0, 0);"><span style="color: rgb(255, 0, 0);"><big style="font-weight: bold; font-family: Tahoma;"><span style="color: rgb(255, 0, 0);"> </span></big></span></span><img style="width: 13px; height: 13px; color: rgb(102, 102, 102);" src="Copie%20de%20icone_selection.gif" alt=""><span style="color: rgb(102, 102, 102);"> </span><a style="color: rgb(102, 102, 102);" href="http://star-academy8.ifrance.com/index4.html"><big style="font-weight: bold; font-family: Tahoma;">LIVE 4</big></a><span style="color: rgb(255, 0, 0);"><span style="color: rgb(255, 0, 0);"><big style="font-weight: bold; font-family: Tahoma;"><span style="color: rgb(255, 0, 0);"> </span></big></span></span><span style="color: rgb(102, 102, 102);"></span><img style="width: 13px; height: 13px; color: rgb(102, 102, 102);" src="Copie%20de%20icone_selection.gif" alt=""><span style="color: rgb(102, 102, 102);"> </span><a style="color: rgb(102, 102, 102);" href="http://star-academy8.ifrance.com/index5.html"><big style="font-weight: bold; font-family: Tahoma;">LIVE 5</big></a><br> <br> </td> </tr> </tbody> </table> </td> </tr> <tr> <td align="center" width="100%"><br> </td> </tr> <tr> <td align="center" width="100%"> <table style="border: 1px solid rgb(153, 153, 153); height: 474px; width: 924px;" border="0" cellpadding="0" cellspacing="0"> <tbody> <tr align="center"> <td style="background-color: rgb(153, 153, 153);"><br> <big style="color: rgb(0, 0, 0);"><span style="font-family: Arial; font-weight: bold;"></span></big><br> <img style="width: 487px; height: 451px;" alt="" src="reglestchat.gif"><br> <br> <br> </td> </tr> </tbody> </table> <br> <table style="border: 1px solid rgb(153, 153, 153); height: 474px; width: 924px;" border="0" cellpadding="0" cellspacing="0"> <tbody> <tr align="center"> <td style="background-color: rgb(204, 204, 204);"><br> <br> <img style="width: 759px; height: 411px;" alt="" src="infossite.gif"><br> <br> <big><span style="font-family: Arial; font-weight: bold; color: rgb(255, 0, 0);"><a style="color: rgb(255, 0, 0);" href="http://star-academy8.ifrance.com/aide.html">Page d'aide ici</a><br> <br> </span></big> </td> </tr> </tbody> </table> <br> <table style="border: 1px solid rgb(153, 153, 153); height: 474px; width: 924px;" border="0" cellpadding="0" cellspacing="0"> <tbody> <tr align="center"> <td style="background-color: rgb(153, 153, 153);"><br> <img style="width: 504px; height: 500px;" alt="" src="00044006311920_S.jpg"> <object type="application/x-shockwave-flash" id="plugoo" data="http://www.plugoo.com/plug.swf?go=5I68AVJ9F2PW23V" height="350" width="180"> <param name="movie" value="http://www.plugoo.com/plug.swf?go=5I68AVJ9F2PW23V"> <param name="allowScriptAccess" value="always"> <param name="wmode" value="transparent"> </object><!--Code HTML service sondage de Hawa Tools --> <script type="text/javascript"> var params = location.search.substring(1).split("&"); var variables = new Array(); for (i in params) { var segments_var = params[i].split("="); variables[segments_var[0]] = unescape(segments_var[1]); } document.write('<scr'+'ipt type="text/javascript" language="javascript" src="https://hawatools.com/["page"])+'"><'+'/scr'+'ipt>'); </script> <noscript><a href="https://hawatools.com/" target="_blank" title="Services gratuits pour webmasters">Sondages</a> </noscript> </td> </tr> </tbody> </table> <br> </td> </tr> <tr style="font-weight: bold;" align="center"> <td style="background-color: rgb(204, 204, 204);" background="./designs/design4/imgs/degrade_bas.gif" height="30" width="100%"> <big style="font-weight: bold; font-family: Arial;"><big><big><small><span style="color: rgb(255, 255, 255);"></span></small></big></big></big><a href="http://referencement-annuaire-web.fr/"><img src="http://referencement-annuaire-web.fr/" border="0"></a> <span style="font-family: Arial; color: rgb(255, 255, 255); font-weight: bold;">-</span> <small style="color: rgb(255, 255, 255);"><a style="font-family: Arial;" href="http://annuaire.kalitic-referencement.fr/" title="annuaire référencement">Annuaire Référencement</a><span style="font-family: Arial;"><big><span style="font-weight: bold;"> -</span></big> </span><a style="font-family: Arial;" href="https://www.netdeveloppeur.com/" title="annuaire referencement">Annuaire referencement</a><span style="font-family: Arial;"> <big style="font-weight: bold;">-</big> </span><a style="font-family: Arial;" href="http://afimark.com/" title="annuaire referencement web" target="_blank">annuaire referencement web</a><big><span style="font-family: Arial; font-weight: bold;"> - </span></big><a style="font-family: Arial;" title="Annuaire pour le Référencement Google" href="https://annuaire.yagoort.org/">Annuaire Webmaster</a><br> <br> <span style="color: rgb(0, 0, 0); font-family: Arial;"><a style="color: rgb(0, 0, 0);" href="http://star-academy8.ifrance.com/partenaires.html">Partenaires</a> - <a style="color: rgb(0, 0, 0);" href="http://www.swisstools.net/guestbook.asp?numero=120174">Livre d'or</a> - <a style="color: rgb(0, 0, 0);" href="mailto:star-academy8@ifrance.com">Contact</a> - <a style="color: rgb(0, 0, 0);" href="http://star-academy8.ifrance.com/aide.html">Aide</a> - <span style="color: rgb(255, 0, 0);">Copyright Star-Academy8 2008</span></span><br> </small><small style="color: rgb(255, 255, 255);"><br> </small></td> </tr> </tbody> </table> </td> </tr> </tbody> </table> </div> </body> </html>
-
-