• Archives

  • Archive for the ‘HTML’ Category

    Redirecting the user through meta in seconds

    Saturday, January 12th, 2008

    If you have moved your website to some different domain you can redirect your user’s to this domain through meta this is very simple just two line’s of code it requires

    Syntax :

    just put the below code in your website page below head

    <meta http-equiv=”refresh” content=”5;url=http://www.easytutorial.info” />

    Change the url with the url you want to redirect the user and change the content(5) which is seconds in which the user will be redirected

    <html>

    <head>

    <meta http-equiv=”refresh” content=”5;url=http://www.easytutorial.info” />

    </head>

    <body>

    This page will be redirected to our new domain easytutorial.info in 5 seconds

    </body>

    </html>

    Thanks

    krates

    Creating table’s in html

    Friday, December 21st, 2007

    I remember the days when i thought that tables are useless but they worth it

    Important terms

    Tr = Table Row

    Td = Table coloumn

    Syntax

    welcome something

    In this table it will create a table of width=”100%” and divide it amongst two columns in which both them will have a separate txt one will be welcome and other will be something

    Thanks
    krates