Nya Midnight
Vill du reagera på det här meddelandet? Registrera dig för forumet med några klick eller logga in för att fortsätta.
Liknande ämnen
    Senaste ämnen
    » Är någon här?
    Html tips Emptysön jan 13, 2019 1:11 am av Kaä

    » OKEJ VAD HAR HÄNT FÖR BÖVELEN
    Html tips Emptymån aug 15, 2011 7:08 pm av Wartem

    » Honouring of the Elder in Arviat
    Html tips Emptytor apr 14, 2011 10:32 pm av Wartem

    » Ipad 3
    Html tips Emptyons apr 13, 2011 8:44 pm av Wartem

    » Post?! Brevlåda?!
    Html tips Emptyons apr 13, 2011 7:39 pm av testadmin

    » Dagens båt
    Html tips Emptyons apr 13, 2011 7:37 pm av testadmin

    » NYA KLANER
    Html tips Emptysön apr 10, 2011 9:32 am av Wartem

    » Rickrolled? D:
    Html tips Emptysön apr 10, 2011 9:16 am av Wartem

    » 3:e värvning. ;D
    Html tips Emptysön apr 10, 2011 9:14 am av Wartem

    » 2000 granplantor dumpade i skogen
    Html tips Emptysön apr 10, 2011 9:12 am av Wartem

    » GRATTIS, NILS!!!
    Html tips Emptysön apr 10, 2011 12:23 am av testadmin

    » Länktips;xD
    Html tips Emptysön apr 10, 2011 12:20 am av testadmin

    » SMÖRET ÄR SLUT
    Html tips Emptyfre apr 08, 2011 11:27 pm av testadmin

    » ALV - no longer fjortis!
    Html tips Emptyfre apr 08, 2011 3:46 pm av Brownie

    » Bildkriget!
    Html tips Emptyfre apr 08, 2011 2:58 pm av testadmin

    » foods
    Html tips Emptyfre apr 08, 2011 2:53 pm av testadmin

    » Med plutonium tvingar vi dansken på knä!
    Html tips Emptyfre apr 08, 2011 2:50 pm av testadmin

    » Dagens låt
    Html tips Emptymån apr 04, 2011 9:49 pm av Wartem

    » Non-swedes, check this thread out
    Html tips Emptymån apr 04, 2011 6:39 am av Brownie

    » Fußball
    Html tips Emptysön apr 03, 2011 7:31 pm av ottgra

    Sök
     
     

    Visa resultat som:
     


    Rechercher Avancerad sökning

    Logga in

    Jag har glömt mitt lösenord

    Statistik
    Vi har 54 registrerade användare.
    Vår nyaste användare: scarhead

    Våra användare har skrivit totalt 18367 inlägg i 774 ämnen
    Länkar
    free forumfree forum
    Chattrum

    [ Copy this | Start New | Full Size ]
    Liknande ämnen

      Html tips

      Gå ner

      Html tips Empty Html tips

      Inlägg av Gäst lör maj 15, 2010 8:25 pm

      Tja, tänkte skriva lite små html tips.
      Om du vill ha större text:
      Kod:
      <font size=1>Storlek 1</font>
      <font size=2>Storlek 2</font>
      <font size=3>Storlek 3</font>
      <font size=4>Storlek 4</font>
      <font size=5>Storlek 5</font>
      <font size=6>Storlek 6</font>
      <font size=7>Storlek 7</font>
      <font size=8>Storlek 8</font>
      Resultat:
      Html tips 2a961af6f7134dfba220923

      Om du vill ändra stil på texten:
      Kod:
      <font face=verdana>Text</font>

      Ändra verdana till något annat namn för en textstil.

      Resultat:

      Html tips D46c371eeea74796a4c3f82

      Hur du får fet text:
      Kod:
      <b>text</b>

      Hur du får lutande text:
      Kod:
      <i>text</i>

      Hur du får struken text:
      Kod:
      <s>text</s>

      Hur du får understruken text:
      Kod:
      <u>text</u>

      Hur du får blinkande text:
      Kod:
      <blink>text</blink>

      Hur du får färgad text:
      Kod:
      <font color="#FF0000">Röd text</font>
      <font color="#00FF00">Grön text</font>
      <font color="#0000FF">Blå text</font>
      <font color="#FFFF00">Gul text</font>
      <font color="#FF00FF">Lila text</font>
      <font color="#00FFF">Turkos text</font>
      <font color="#FFFFFF">Vit text</font>

      Resultat:
      Html tips 6c2290d341794370b5be423

      Hur du får rullande text:
      Kod:
      <marquee>text</marquee>

      Det finns många andra rulltexts koder.

      Hur du får regnbågstext:
      Kod:
      <!-- TWO STEPS TO INSTALL MYRAINBOWSPAN:

        1.  Copy the coding into the HEAD of your HTML document
        2.  Add the last code into the BODY of your HTML document  -->

      <!-- STEP ONE: Paste this code into the HEAD of your HTML document  -->

      <HEAD>

      <script type="text/javascript">
      <!-- Begin
      /* This script and many more are available free online at
      The JavaScript Source!! http://javascript.internet.com
      Created by: HaganeNoKokoro :: http://tinyurl.com/buvp9 */

      /*
       * Notes on hue
       *
       * This script uses hue rotation in the following manner:
       * hue=0  is red (#FF0000)
       * hue=60  is yellow (#FFFF00)
       * hue=120 is green (#00FF00)
       * hue=180 is cyan (#00FFFF)
       * hue=240 is blue (#0000FF)
       * hue=300 is magenta (#FF00FF)
       * hue=360 is hue=0 (#FF0000)
       *
       * Notes on the script
       *
       * This script should function in any browser that supports document.getElementById
       * It has been tested in Netscape7, Mozilla Firefox 1.0, and Internet Explorer 6
       *
       * Accessibility
       *
       * The script does not write the string out, but rather takes it from an existing
       * HTML element. Therefore, users with javascript disabled will not be adverely affected.
       * They just won't get the pretty colors.
       */

      /*
       * splits par.firstChild.data into 1 span for each letter
       * ARGUMENTS
       *  span - HTML element containing a text node as the only element
       */
      function toSpans(span) {
        var str=span.firstChild.data;
        var a=str.length;
        span.removeChild(span.firstChild);
        for(var i=0; i<a; i++) {
          var theSpan=document.createElement("SPAN");
          theSpan.appendChild(document.createTextNode(str.charAt(i)));
          span.appendChild(theSpan);
        }
      }

      /*
       * creates a rainbowspan object
       * whose letters will be colored [deg] degrees of hue
       * ARGUMENTS
       *  span - HTML element to apply the effect to (text only, no HTML)
       *  hue - what degree of hue to start at (0-359)
       *  deg - how many hue degrees should be traversed from beginning to end of the string (360 => once around, 720 => twice, etc)
       *  brt - brightness (0-255, 0 => black, 255 => full color)
       *  spd - how many ms between moveRainbow calls (less => faster)
       *  hspd - how many hue degrees to move every time moveRainbow is called (0-359, closer to 180 => faster)
       */
      function RainbowSpan(span, hue, deg, brt, spd, hspd) {
          this.deg=(deg==null?360:Math.abs(deg));
          this.hue=(hue==null?0:Math.abs(hue)%360);
          this.hspd=(hspd==null?3:Math.abs(hspd)%360);
          this.length=span.firstChild.data.length;
          this.span=span;
          this.speed=(spd==null?50:Math.abs(spd));
          this.hInc=this.deg/this.length;
          this.brt=(brt==null?255:Math.abs(brt)%256);
          this.timer=null;
          toSpans(span);
          this.moveRainbow();
      }

      /*
       * sets the colors of the children of [this] as a hue-rotating rainbow starting at this.hue;
       * requires something to manage ch externally
       * I had to make the RainbowSpan class because M$IE wouldn't let me attach this prototype to [Object]
       */
      RainbowSpan.prototype.moveRainbow = function() {
        if(this.hue>359) this.hue-=360;
        var color;
        var b=this.brt;
        var a=this.length;
        var h=this.hue;

        for(var i=0; i<a; i++) {

          if(h>359) h-=360;

          if(h<60) { color=Math.floor(((h)/60)*b); red=b;grn=color;blu=0; }
          else if(h<120) { color=Math.floor(((h-60)/60)*b); red=b-color;grn=b;blu=0; }
          else if(h<180) { color=Math.floor(((h-120)/60)*b); red=0;grn=b;blu=color; }
          else if(h<240) { color=Math.floor(((h-180)/60)*b); red=0;grn=b-color;blu=b; }
          else if(h<300) { color=Math.floor(((h-240)/60)*b); red=color;grn=0;blu=b; }
          else { color=Math.floor(((h-300)/60)*b); red=b;grn=0;blu=b-color; }

          h+=this.hInc;

          this.span.childNodes[i].style.color="rgb("+red+", "+grn+", "+blu+")";
        }
        this.hue+=this.hspd;
      }
      // End -->
      </script>
      </HEAD>

      <!-- STEP TWO: Copy this code into the BODY of your HTML document  -->

      <BODY>

      <div align="center">
      <h3 id="r1">Rainbow text
      </h3></div>
      <script type="text/javascript">
      var r1=document.getElementById("r1"); //get span to apply rainbow
      var myRainbowSpan=new RainbowSpan(r1, 0, 360, 255, 50, 18); //apply static rainbow effect
      myRainbowSpan.timer=window.setInterval("myRainbowSpan.moveRainbow()", myRainbowSpan.speed);
      </script>

      <div align="center">
      <p id="r2"></p>
      </div>
      <script type="text/javascript">
      var r2=document.getElementById("r2"); //get span to apply rainbow
      var myRainbowSpan2=new RainbowSpan(r2, 0, 360, 255, 50, 348); //apply static rainbow effect
      myRainbowSpan2.timer=window.setInterval("myRainbowSpan2.moveRainbow()", myRainbowSpan2.speed);
      </script>

      <p><center>
      <font face="arial, helvetica"><br>
      </font>
      </center><p>

      <!-- Script Size:  4.85 KB --></p></p></BODY>

      Resultat:

      Html tips 542facb6a3034bd482666dd

      Hur du sätter in en bild:
      Kod:
      <img src=http://index.swedishforum.se/users/1211/24/53/68/avatars/23-69.gif>

      Resultat:
      Html tips Ad578cc364804c479aae190

      Hur du får text och bilder i mitten:
      <center>text</center>

      Ja, det var några html koder. Ha de bra.


      Senast ändrad av HappySmiley den sön maj 16, 2010 11:31 am, ändrad totalt 1 gång

      Gäst
      Gäst


      Till överst på sidan Gå ner

      Html tips Empty Sv: Html tips

      Inlägg av Wartem sön maj 16, 2010 8:40 am

      HappySmiley skrev:Tja, tänkte skriva lite små html tips.
      Om du vill ha större text:
      Kod:
      <font size=1>Storlek 1</font>
      <font size=1>Storlek 2</font>
      <font size=1>Storlek 3</font>
      <font size=1>Storlek 4</font>
      <font size=1>Storlek 5</font>
      <font size=1>Storlek 6</font>
      <font size=1>Storlek 7</font>
      <font size=1>Storlek 8</font>
      Resultat:
      Html tips 2a961af6f7134dfba220923

      Så här måste det väl vara ändå... Och de ligger på samma rad, efter varandra:

      Kod:
      <font size=1>Storlek 1</font>
      <font size=2>Storlek 2</font>
      <font size=3>Storlek 3</font>
      <font size=4>Storlek 4</font>
      <font size=5>Storlek 5</font>
      <font size=6>Storlek 6</font>
      <font size=7>Storlek 7</font>
      <font size=8>Storlek 8</font>
      Wartem
      Wartem
      Respekterad Veteran
      Respekterad Veteran

      Inlägg : 1622
      Poäng : 4

      Join date : 09-09-09
      Age : 1351
      Ort : Wet Beaver Creek
      Sysselsättning : Systemutvecklare

      Till överst på sidan Gå ner

      Html tips Empty Sv: Html tips

      Inlägg av Gäst sön maj 16, 2010 11:31 am

      Wartem skrev:
      HappySmiley skrev:Tja, tänkte skriva lite små html tips.
      Om du vill ha större text:
      Kod:
      <font size=1>Storlek 1</font>
      <font size=1>Storlek 2</font>
      <font size=1>Storlek 3</font>
      <font size=1>Storlek 4</font>
      <font size=1>Storlek 5</font>
      <font size=1>Storlek 6</font>
      <font size=1>Storlek 7</font>
      <font size=1>Storlek 8</font>
      Resultat:
      Html tips 2a961af6f7134dfba220923

      Så här måste det väl vara ändå... Och de ligger på samma rad, efter varandra:

      Kod:
      <font size=1>Storlek 1</font>
      <font size=2>Storlek 2</font>
      <font size=3>Storlek 3</font>
      <font size=4>Storlek 4</font>
      <font size=5>Storlek 5</font>
      <font size=6>Storlek 6</font>
      <font size=7>Storlek 7</font>
      <font size=8>Storlek 8</font>
      Ops, jag ändrar det nu.

      Gäst
      Gäst


      Till överst på sidan Gå ner

      Html tips Empty Sv: Html tips

      Inlägg av Sponsored content


      Sponsored content


      Till överst på sidan Gå ner

      Till överst på sidan

      - Liknande ämnen

       
      Behörigheter i detta forum:
      Du kan inte svara på inlägg i det här forumet