Quick Html! - Three of the coolest scripts!

free web hosting
Free Web Hosting > Computers & Tech > How-To's and Tutorials > Programming > HTML, XML and other Markup Languages

Quick Html! - Three of the coolest scripts!

sparkx
Table of contents:
-Meta
-Cursor
-Icon
-Animated Title Bar (Must see!)

META
Meta tags is one of the most important things you need to know about programming. It truly will help you is more ways then you can imagine. First off you may be wondering what a meta tag is. A meta tag is a simple few lines of code that you put in the header of your document to describe it. If you do this correctly you can get search engines (including Google) to add your website. There are a few things you want to keep in mind when your making your meta tags. Make sure that you stay on topic about your website. Keep it easy so that any word/phrase that a person types may be found in your meta tag. Ok well I know by now if you what quick codes your thinking "just give me the code already" OK here it is.
DO NOT COPY AND PAST THIS EXACT CODE!

CODE

<META http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
<META name="resource-type" content="document">
<META name="audience" content="all">
<META name="distribution" content="global">
<META name="robots" content="INDEX, FOLLOW">
<META name="revisit-after" content="1 days">
<META name="description" content="Sparkx Studios Games of all types, we also have an awsome forum. Meet new people, submit your personal games, play other peoples games! At Sparkx Studios we like it when people have fun! Sparkx is a great place to play sparkx games. games game game sparkx">
<META name="keywords" content="Games, bulletin, boards, fun games, meet new people, sparkx, Sparkx, sparkx studios, Sparkx Studios, ,Free games, Fun free games, Free online games, loads of games, submit your game, join forums, game planet, games for life, all types of games, rpg games,">

Ok the first few lines of code you don't need to mess around with (assuming you're not posting adult content). Now we get to about half way down you find:
CODE

<META name="revisit-after" content="1 days">

This is how often the search engine looks at your meta tags (in case you want to change a description). If you update your site daily put it to "1 days". But if you only update your site monthly or not to often put something like "20 days". If you just wanna try it out I suggest start around "10 days".
CODE

<META name="description" content="Sparkx Studios Games of all types, we also have an awsome forum. Meet new people, submit your personal games, play other peoples games! At Sparkx Studios we like it when people have fun! Sparkx is a great place to play sparkx games. games game game sparkx">

This is just an example of a game website called sparkx studios. Delete all that content and put in what your website is about. On Google this is the short description of your site.
CODE

<META name="keywords" content="Games, bulletin, boards, fun games, meet new people, sparkx, Sparkx, sparkx studios, Sparkx Studios, ,Free games, Fun free games, Free online games, loads of games, submit your game, join forums, game planet, games for life, all types of games, rpg games,">

This is the keyword. If someone types in any of the words above the site will be listed. Include "," comas in between phrases.

Cursors
This script will tell you how to set up you custom cursor! This is actually a quite small script.
First create or find an img on the web and download it. Name it as "cursor.cur" it must be a .cur file or this wont work. Now upload the img and in the same directory past this code into your header of your document.
CODE

<style>
<!--
BODY{
cursor:url("cursor.cur");
}
-->
</style>

Now if you want a really nice custom clock cursor, I have made a program to generate one for you. It uses some advanced mathematics and is an addition to a script by "Amy Cook". http://h1.ripway.com/Sparkx/Text/clock01.html

Icon
One of the coolest things you can do to your web-page is add an icon the the top (next to the URL) this is also displayed at the bottom on Windows computers. This site has one, it i the white check mark on a blue background.
Step 1:
Make an img (NOT TO DETAILED) it must be a 32 px (height and width) square.
Step 2:
Once you have made your "Simple" img save it as "favicon.ico" IT MUST BE NAMED THAT! If you cant save it as a .ico file just save it as a .gif and download (http://www.etrusoft.com/graphic-converter/index.htm) Easy graphic converter. Then just simply convert that .gif file to a .ico
Step 3:
Upload you img (not in any directories)
Step 4:
Insert this code:
CODE

<link rel="shortcut icon" href="favicon.ico" type="image/x-icon">


Animate Title Bar
I find this script one of the coolest out there. I recommend you try it. This is a script that animates your "title" of your document. For browsers that don't support this script it simply goes to a default "title".
A good example of this script in action is: http://h1.ripway.com/Sparkx/Text//title.html
OK now lets get started. Add the following script to the "head" of your document.
CODE

<title>This is default</title>
<script>
    var titletext="Your Title Goes here!"
    var thetext=""
    var started=false
    var step=0
    var times=1

    function welcometext()
    {
      times--
      if (times==0)
      {
        if (started==false)
        {
          started = true;
          document.title = titletext;
          setTimeout("anim()",1);
        }
        thetext = titletext;
      }
    }

    function showstatustext(txt)
    {
      thetext = txt;
      setTimeout("welcometext()",4000)
      times++
    }

    function anim()
    {
      step++
      if (step==7) {step=1}
      if (step==1) {document.title='>==='+thetext+'===<'}
      if (step==2) {document.title='=>=='+thetext+'==<='}
      if (step==3) {document.title='>=>='+thetext+'=<=<'}
      if (step==4) {document.title='=>=>'+thetext+'<=<='}
      if (step==5) {document.title='==>='+thetext+'=<=='}
      if (step==6) {document.title='===>'+thetext+'<==='}
      setTimeout("anim()",200);
    }

if (document.title)
window.onload=onload=welcometext
</SCRIPT>

OK that probably looks like a mouthful at first. But the only thing you have to do is edit two things (unless your good). First Find:
CODE

<title>This is default</title>

Change this to the title you want if a browser doesn't support this script.
CODE

var titletext="Your Title Goes here!"

Change "Your Title Goes here!" to whatever you want your title to be.
Now only do this next part if you have confidence and you want to change the "arrows" around your title.
CODE

      if (step==7) {step=1}
      if (step==1) {document.title='>==='+thetext+'===<'}
      if (step==2) {document.title='=>=='+thetext+'==<='}
      if (step==3) {document.title='>=>='+thetext+'=<=<'}
      if (step==4) {document.title='=>=>'+thetext+'<=<='}
      if (step==5) {document.title='==>='+thetext+'=<=='}
      if (step==6) {document.title='===>'+thetext+'<==='}

Without changing anything else change >=== to what you want. You can change any of the versions of >=== to what you want. Make sure you dont deleat the quotes! Example: you want to change >=== to ===< you would type in:
CODE

{document.title='===<'+thetext+'>==='}

This may be confusing but just look at it for a while and you will figure it out. When your changing the "frames" you should make sure that all 6 frames have the same number of characters (in this case 4). The characters show what will be in front of and behind the title on that "frame". If you don’t want anything in front/behind just set that blank. If you would like to add a frame, insert this code under step 6 (change step== to the number it is. Example for frame 7:
CODE

if (step==7) {document.title='===>'+thetext+'<==='}

Now once that is done you MUST! Find:
CODE

if (step==7) {step=1}

and change step==7 to the number after your last step. I’m sorry if I’m confusing you, again just try stuff out. I’m sure you will get it sooner or later. smile.gif
More will come! So check back every once in a while.
~Sparkx~
I am pretty sure no one has posted about these topics yet.
If anything doesn't work please P.M. me thanks.

 

 

 


Reply

heirufox
Meta tags are a simple option, but to me they simply state what the document is. They don't serve any visual aid. Also, the cursor to me hinders a website, especially when taken from a professional view. The animated title bar is not exactly HTML in the least bit, but I actually enjoyed seeing that javascript. I like the style and the animation effect.

Reply

kgd2006
The meta tag is probably a very important part of a website for grabbing in traffic from search engines. I know for sure that search engines uses the meta tags to help them key on that website and keywords that are stored in those meta tags. The rest of the other stuff are some accessories to the website I believe. I for one was interested and never knew about the icon on the url bar. PRobably because I never looked into it, but now that I know that is very cool and will probably use it in the future.

Reply

HabboCone
Thats help alot. Thanks for posting it. biggrin.gif

Reply


Got an Opinion! Express your Views! (no registration):-
Add your Reply/ Opinion/ Views/ Comments/ Suggestion/ Questions/ Queries etc.
Posts with decent grammar & English will be accepted and please refrain from profanities.
For asking a Question, We recommend you to sign-up (for free) so that you can track the topic easily.

Nature of your Post*: Opinion/ Reply/ Comments
Question/Query
Feedback to us.
       
Name   Email
Title/Question*

(Maximum characters: 10,000)
You have characters left.

Similar Topics

Keywords : quick, html, coolest, scripts

  1. Good Books For Html And Css Beginners
    (1)
  2. Basic Html Tutorial
    Made it myself, hope you like it. (1)
    HTML stands for hyper text markup language. It is a basic coding language used on almost every
    website. There are some tags in HTML which must be used, whilst others are enhancing, but not
    essential. Below I shall list the essential tags and there uses: This tells the browser that
    the language between the tags is going to be HTML so it knows how to read it. Inbetween those tags
    come These tags tell the browser that all the content that you wish to be displayed is in there.
    They are the only essential tags for HTML! The list is short but if you only use them your ....
  3. What You Need Before You Can Create A Text-based Game..
    Using PHP, HTML and MySQL (7)
    Please comment and rate, after you finished reading! /smile.gif" style="vertical-align:middle"
    emoid=":)" border="0" alt="smile.gif" />
    ################################################################# Change log: Aug 22 2008: The
    Tutorial Was Created. V1.0.0 Aug 30 2008: Added XHTML and a small CSS part. Also corrected some
    small things and added this change log. V2.0.0
    ################################################################# OK.. Many people here want to
    create text based games. Many of you ask us here on the forums: "how to create a text-based game....
  4. Is It Possible To Make Php Scripts Executed Without A Cron?
    (2)
    Title says it all really. Just wondering if it's possible in an way? If so could anyone tell
    me?....
  5. Joomla Template Kit Extension For Nvu/composer
    help in understanding how to change html template to joomla (3)
    Hi Everyone, I am becoming quite (a lot) interested in designing with joomla, and need an
    understanding of how to use the template kit extension in Nvu/Composer. There doesn't appear to
    be any tutorials available on how to use a HTML template to insert and design with joomla modules.
    Is there anyone who could shed some light on this subject. It would be MUCH appreciated.....
  6. Indentation In Html
    (4)
    Whenever I start a new project one of the first things I do is put in a base index.php page. Yes,
    it's a .php file, but I won't be looking at the PHP just yet. Normally, it looks a little
    something like this: CODE               Title                                    
                   I've already got a few basics set out that I tend to stick to. For
    instance, so far each of my projects has been XHTML Strict, which is why it's always up there.
    Similarly, I use the same character set, and (at least initially) have two CSS files calle....
  7. Web Editor
    great application for your html and javascript development (0)
    Aptana IDE is a free Integrate Development Environment great for HTML/CSS editing and Javascript
    development The best feature in my opinion is the autocomplete feature , both in html and css mode
    it not only give you the suggestion but informs you about compatibility in different browsers and
    vresions same in javascript mode It is based on Eclipse IDE, it's free and can be extended
    help you with your php editing need to it's free and defenitely worth a try LINK ....
  8. How To: Display A Members/user List.
    With PHP, Mysql, and HTML. (3)
    Alright, some of you might want to display your User's or Members on your site. Notes: 1.This
    is to fit in with Feelay's register and Log-in scripts you can find in the tutorial section. 2.I
    made this to show the members of my site who is a member and what their ID is. First off, we must
    set up a connection to our MySQL Database. CODE $con =
    mysql_connect("localhost","database_username","database_username_password"); if (!$con)   {
      die('Could not connect: ' . mysql_error());   } What it does: 1.It is starting a PHP
    document. 2.Next it sets....
  9. Style P And H? Html Tags
    (2)
    Well, I have found that css was very hard to predict and precise control their apperance. When mix
    and use the p and h? tags. Their apperaence were not identity. Place the h? tags within the p tag
    causes style error on both firefox and IE. So, anyone should do it reserved, instead, place the p
    tag with any h? tags will do the jobs on both browsers. Still learning it coz it much varies when
    doing styles. Tested it on XHTML 1.0 Strict....
  10. Yaml - (x)html/css Framework
    (2)
    The YAML (Yet Another Multicolumn Layout) Framework is an excellent open source project that helps
    you to create two or three columns (X)HTML/CSS floated layouts. This framework is very easy to use
    and allows you to modifiy it to your own needs, this framework offers some tools for rapid
    development of modern and accessible CSS layouts. QUOTE Yet Another Multicolumn Layout (YAML)
    is an (X)HTML/CSS framework for creating modern and flexible floated layouts. The structure is
    extremely versatile in its programming and absolutely accessible for end users. Based on w....
  11. Javascript Tutorial For Beginner
    Using Javascript in HTML page (0)
    In this tutorial I will show you how you can put JavaScript in a HTML page. It is very easy to add
    JavaScript in a HTML page. We will use tag for this purpose. Inside the tag, we will use "type="
    attribute and will define the scripting language. We will define the script language as
    “text/javascript”. After define the script language we will add our JavaScript codes and
    at last we will close the tag using . So the complete code will be- CODE (Place for our
    JavaScript codes) Now we will use “document.write” command (it i....
  12. Increase Your Knowledge Of Html Language
    (11)
    For Creating good website you have to be master in HTML Language. It is a scryptic Language. If you
    want to Learn this language than visit the link http://zwqa.page.tl/Increase-you-HTML-Knowledge.htm
    ....
  13. W3 Schools
    Possibly Best place to Learn HTML for free (1)
    http://www.w3schools.com/html/default.asp I learned HTML There and PHP it has a hands on idea it
    even has quizes adn u can open up ther notepad like thingy and try the html your self so its really
    cool and free....
  14. Sitepoint's Css And Html Reference Sites
    (2)
    Recently the folks at SitePoint.com launched two excelent online reference sites for web designers
    and developers, the first one is the SitePoint CSS Reference and the second one is the SitePoint
    HTML Reference (Beta) . Both of them are free and available to anyone and everyone who needs to
    lookup any information related to CSS and HTML in an easy and fast way. The SitePoint HTML
    Reference (Beta) is still in progress. Also, both of them are very detailed and up-to-date on each
    subject and are focused not only to beginners because they covers from general to advance....
  15. What Is The Coolest Thing You Can Do In Linux You Cant In Windows Or Mac?
    (8)
    Interesting article over at Ubuntu forums: http://ubuntuforums.org/showthread.php?t=399997 ....
  16. Html Basic Tutorial
    <!-- For beginners only --> (9)
    Knowledge HTML stands for H yper T ext M arkup L anguage. You cannot create an HTML file
    using a rich-text editor, such as Microsoft Word or Wordpad. HTML To write a basic HTML, you will
    need to start with this: CODE The html > tag tells the browser that this is an HTML page.
    To close any tag, the same tag will be repeted but with the "/" sign. For example, CODE   
         Page title    Did you notice the /title >, /head > & /html > tags? That's how we
    close the tag. The HEAD > Tag A head > tag will include the meta >, titl....
  17. How To Get Quick And Easy Levels In Runescape
    on runescape the massive multiplayer online role playing game! (12)
    Thieving, the hated skill that is incredibly slow and boring to train at lower levels. Pyramid
    Plunder is the way to get high thieving, and is pretty simple to do once you get the hang of it.
    Where is it? Pyramid Plunder is located in Sophanem. To get there from Shantay, head into the
    desert and travel on the magic carpet to Pollnivneach, once there, run south until you find the next
    magic carpet ride, ride that to Sophanem. When you arrive, enter the gates, and the Pyramid Plunder
    mini-game is in the first Pyramid you see. Or, alternatively, you can use a Pharoah&....
  18. Tutorial: Dreamweaver, 3ds Max, Flash, Html, Css
    Dreamweaver, 3DS MaX, Flash, HTML, CSS (8)
    Hi all, This is a continuation thread from my previous topic: Photoshop Tutorials, A large list of
    tutorials links! here: www.astahost.com/photoshop-tutorials-t14351.html I'm posting some
    Dreamweaver, 3DS MaX, Flash, HTML, CSS Tutorial links here! I got these links from various
    places! Please reply to this, If you find them as an useful one! CSS Tutorials
    http://www.westciv.com/style_master/academy/css_tutorial/ http://maxdesign.com.au/
    http://www.htmlgoodies.com/beyond/css/index.php http://www.echoecho.com/css.htm
    http://www.htmldog.com/ http://w....
  19. Converting PSD To HTML
    (11)
    Hi I m new to this site. I have designed a layout in PSD. What i want is to know how can I slice
    the PSD to build a Cross-Browser Compatible HTML file. Thank U.....
  20. HTM vs HTML: Whats The Difference ?
    (22)
    hi friends, Does anybody know the difference between .htm and .html files. I am wondering why there
    are two extensions for the same type of files!! Even some hosts make the index.htm as the home page
    and some do the other way. Isn't there any standard for making the home page. Some even use
    default.htm as home page. When the page with different extension is present then it gives a 404
    (Page Not Found) Error. Any light in that direction will be of much help. Regards.....
  21. Finishing The Look Of Your Newly Install Web Script
    Cleaning up your CMS, Forum, Blog, Gallery Scripts (2)
    Most third party webscript come complete with a standard template, color scheme, graphics set, logo,
    favicon, and of course a copyright notice. Since most of these scripts are open source these days,
    we have a lot of room to modify the original script as long as we don't redistribute the
    modified script. * In fact, even for most paid scripts, we are allowed to modify the script to
    suit our needs. It would be nearly impossible to stop most of us from making such modifications.
    Here is a list of things you should change to complete the installation of your web....
  22. Diskmgmt.msc - Coolest Inbuilt Control ( Xp )
    (6)
    Don't know how many have you used this but try out the Diskmgmt.msc control utility. Goto Start
    > Run and type diskmgmt.msc and press Run. You will see a correctly populated virtual
    representation of our hard disk partitions. Now the best part is what is considered a head ache
    otherwise is solved just by right clicking and selecting. Its more efficient that most tools
    available in Linux. One important thing that will be seen is we can create multiple primary
    partitions in our hard disks. We can have at most 3 primary partitions and 1 extended partition, or
    at most ....
  23. Switch Network Settings With Batch Files
    A quick way to change IP, Gateway, DNS (18)
    Let's suppose you are using two network settings with your laptop frequently. Wether it's a
    wireless or wired network, all the same: Every time you want to change the IP, subnet mask, default
    gateway and DNS Server(s) of your network connection in any flavour of Windows, you have to click
    through menus, submenus, and from that you go to yet another submenu... you have been there,
    it's awful. /mad.gif' border='0' style='vertical-align:middle' alt='mad.gif' /> There is a
    better way: the command "netsh" on your command prompt can change all the aforementio....
  24. Free Shoutbox? HTML, Flash or PHP Code
    (24)
    does anyone know where i can find a free shoubox thats customisable? it can be in html, php or flash
    format. thanks in advance paul....
  25. Creating Tooltips
    DHTML, HTML, CSS, Javascript... (7)
    Here is a little tutorial to make those small yellow-background boxes (tootltips) that pop-up for
    some links that describe them when you hover the mouse over them, it uses DHTML, CSS, HTML, and
    Javascript, so it gives us a much more wide range than my previous tutorials that just where on
    HTML. OK, so here we go... Put this right under CODE var offsetxpoint=-60 //Customize x
    offset of tooltip var offsetypoint=20 //Customize y offset of tooltip var ie=document.all var
    ns6=document.getElementById && !document.all var enabletip=false if (ie||ns6) var tipobj=doc....
  26. Rapid HTML code generation using simple PHP
    avoid those repetative boring tasks.... (8)
    I don't know about the rest of you, but I love writting scripts but hate WRITTING scripts. For
    example, how many times do you think you have typed the following. Example #1: CODE
    Select fields are worse, especially if you write clean code like I do with indents and seperate
    lines for each tag. Example #2: CODE     Apples     Oranges     Grapes     Peaches
    Having been writting HTML for 10 years now, so I look for as many shortcuts as possible. Now I
    let PHP write all of the repetitive HTML and I just fill in the blanks. From Example ....
  27. Hotkeys / Keyboard Quick Launch Keys In Linux
    (5)
    I first submitted this tutorial a couple of months ago over at http://linuxiso.org/forums as user
    adpsimpson. Having spent ages wishing the hotkeys on my laptop would work, I spent most of an
    afternoon looking into it. Since no site I found explained it satisfactorily, here's my
    method... The first step is to find out which of the keys are registered by the kernel, and what
    their keycodes are (the unique event number that they cause). To do this you need a program called
    xev, (in Mandrake this is part of X11R6-contrib, is installed by default in Slack, and should....
  28. Converting HTML over to XHTML
    Crossing over to the darkside (13)
    Allow for alterations Well, I've just had to convert another HTML 4.01 Transitional website
    over to XHTML (eXtensible HyperText Markup Language) 1.0 Transitional, I will later on convert over
    to XHTML 1.0 Strict as soon as I write the CSS (cascading stylesheet) file for it but it had to be a
    quick update and removing all presentational elements and placing them in a CSS file is not quicker
    than just altering some tags. So this is where I got the idea to write a How to Convert HTML over
    to XHTML . Let's begin I'm having trouble knowing where to start ....
  29. Embedding XML into HTML
    (2)
    Hi, I am looking for a way to embed external rss/xml files into my html page, how/is this possible?....
  30. Basic Tips and Tricks in HTML
    (15)
    Here is some quick links for basic html coding... A quick and easy way to create your first web
    page! -> The easiest HTML guide for beginners You'll learn how to create tables from real
    examples. -> How to create TABLE? You will learn how to create frames from a real example.
    You'll see how to create a borderless frame, how to specify the target frame, etc. -> How to
    build FRAMES? Follow a few easy steps to add sound to your web pages. -> How to add sound to a
    web page? This page tells you how to automatically load a visitor to another web page.....

    1. Looking for quick, html, coolest, scripts






*SIMILAR VIDEOS*
Searching Video's for quick, html, coolest, scripts
Similar
Good Books For Html And Css Beginners
Basic Html Tutorial - Made it myself, hope you like it.
What You Need Before You Can Create A Text-based Game.. - Using PHP, HTML and MySQL
Is It Possible To Make Php Scripts Executed Without A Cron?
Joomla Template Kit Extension For Nvu/composer - help in understanding how to change html template to joomla
Indentation In Html
Web Editor - great application for your html and javascript development
How To: Display A Members/user List. - With PHP, Mysql, and HTML.
Style P And H? Html Tags
Yaml - (x)html/css Framework
Javascript Tutorial For Beginner - Using Javascript in HTML page
Increase Your Knowledge Of Html Language
W3 Schools - Possibly Best place to Learn HTML for free
Sitepoint's Css And Html Reference Sites
What Is The Coolest Thing You Can Do In Linux You Cant In Windows Or Mac?
Html Basic Tutorial - <!-- For beginners only -->
How To Get Quick And Easy Levels In Runescape - on runescape the massive multiplayer online role playing game!
Tutorial: Dreamweaver, 3ds Max, Flash, Html, Css - Dreamweaver, 3DS MaX, Flash, HTML, CSS
Converting PSD To HTML
HTM vs HTML: Whats The Difference ?
Finishing The Look Of Your Newly Install Web Script - Cleaning up your CMS, Forum, Blog, Gallery Scripts
Diskmgmt.msc - Coolest Inbuilt Control ( Xp )
Switch Network Settings With Batch Files - A quick way to change IP, Gateway, DNS
Free Shoutbox? HTML, Flash or PHP Code
Creating Tooltips - DHTML, HTML, CSS, Javascript...
Rapid HTML code generation using simple PHP - avoid those repetative boring tasks....
Hotkeys / Keyboard Quick Launch Keys In Linux
Converting HTML over to XHTML - Crossing over to the darkside
Embedding XML into HTML
Basic Tips and Tricks in HTML
advertisement




Quick Html! - Three of the coolest scripts!



 

 

 

 

ADD REPLY / Got an Opinion! a humble request :-) RAPID SEARCH! Free Hosting [X]
Express your Opinions, Thoughts or Contribute your information that might help someone here.
Ask your Doubts & Queries to get answers.. "Together, We enlight each other!"
Register FREE for AD-FREE forum, Create your own topics, Ask Questions, track topics, setup subscriptions & notifications and Get a Free Website w/ Email and FTP.
500MB Space *No Ads*, CPanel, FTP, PHP, MySQL, EMails - 100% FREE