Jump to content
MakeWebGames

Klikoka

Members
  • Posts

    382
  • Joined

  • Last visited

    Never

Everything posted by Klikoka

  1. Re: 3 Word Game that killed every
  2. Re: 3 Word Game the neck with
  3. Re: Guess the next poster Yep Killah
  4. I have only just learnt this and i would like too share it on here.   First...   Find where you want to add the script.   Second...   Add this in to the space   <script language="JavaScript"> var r_text = new Array (); r_text[0] = "All the leaves are brown"; r_text[1] = "And the sky is grey"; r_text[2] = "I've been for a walk"; r_text[3] = "On a winter's day"; r_text[4] = "I'd be safe and warm"; r_text[5] = "If I was in L.A."; r_text[6] = "California dreaming, On such a winter's day"; var i = Math.round(6*Math.random()); document.write(r_text[i]); </script>   Last...   Check that the text is displaying on your webpage then add in your own text to it.   Resource:Web Developers Notes
  5. Re: Guess the next poster nope   -Matt-
  6. Re: Guess the next poster yep   killah
  7. Re: 3 Word Game to save his
  8. Re: 3 Word Game hug the man's
  9. Re: Guess the next poster yes   Spudinski
  10. Re: 3 Word Game a man had
  11. Re: 3 Word Game some cider then
  12. Re: 3 Word Game ran to the
  13. Re: 3 Word Game By his own
  14. Re: 3 Word Game AK-47 and then
  15. Re: Counting (nr game) 1862
  16. Re: Guess the next poster nope   Nyna
  17. Klikoka

    No I'S

    Re: No I'S Got the new Grand Theft Auto 4
  18. Klikoka

    WWII

    Re: WWII Italy - 17 Japan - 19 Great Britain - 41 United States - 21 Soviet Union - 22 France - 19
  19. Re: 3 Word Game Man in the
  20. Re: Counting (nr game) 1860
  21. Re: 3 Word Game want to see
  22. Re: Basic HTML Elements yes
  23. HTML Tags * HTML tags are used to mark-up HTML elements * HTML tags are surrounded by the two characters < and > * The surrounding characters are called angle brackets * HTML tags normally come in pairs like and * The first tag in a pair is the start tag, the second tag is the end tag * The text between the start and end tags is the element content * HTML tags are not case sensitive, means the same as HTML Elements <html> <head> <title>Title of page</title> </head> <body> This is my first homepage. [b]This text is bold[/b] </body> </html> This is an HTML element: [b]This text is bold[/b] The HTML element starts with a start tag: The content of the HTML element is: This text is bold The HTML element ends with an end tag: The purpose of the tag is to define an HTML element that should be displayed as bold. This is also an HTML element: <body> This is my first homepage. [b]This text is bold[/b] </body> This HTML element starts with the start tag <body> , and ends with the end tag </body> . The purpose of the <body> tag is to define the HTML element that contains the body of the HTML document. Why do We Use Lowercase Tags? We have just said that HTML tags are not case sensitive: means the same as . If you surf the Web, you will notice that plenty of web sites use uppercase HTML tags in their source code. We always use lowercase tags. Why? If you want to follow the latest web standards, you should always use lowercase tags. The World Wide Web Consortium (W3C) recommends lowercase tags in their HTML 4 recommendation, and XHTML (the next generation HTML) demands lowercase tags.
  24. Re: [v2]Attack Ban[v2] or to stop attacks on all staff else if ($odata['user_level'] > 1) { print"You cannot attack a member of Staff [url='index.php']> Back[/url] "; $h->endpage(); exit; }
  25. Re: User Rating yes in day crons
×
×
  • Create New...