Basic HTML Coding Hitskin_logo Hitskin.com

This is a Hitskin.com skin preview
Install the skinReturn to the skin page

The forum of the forums
Would you like to react to this message? Create an account in a few clicks or log in to continue.
3 posters

    Basic HTML Coding

    Spottedleaf
    Spottedleaf
    Forumember


    Posts : 97
    Reputation : 2
    Language : english

    In progress Basic HTML Coding

    Post by Spottedleaf September 14th 2013, 10:03 pm

    Hello,

    I'm looking to add HTML pages to my website to give it a new look. I know there is a basic code for a html page not a home page though just a regular one. Can anyone help me out here? Also if I am doing html is there a specific way to make the code?

    Thank you!
    SLGray
    SLGray
    Administrator
    Administrator


    Male Posts : 51557
    Reputation : 3519
    Language : English
    Location : United States

    In progress Re: Basic HTML Coding

    Post by SLGray September 14th 2013, 10:05 pm




    Basic HTML Coding Slgray10

    When your topic has been solved, ensure you mark the topic solved.
    Never post your email in public.
    levy
    levy
    Hyperactive


    Male Posts : 2632
    Reputation : 350
    Language : English, Romanian
    Location : Romania

    In progress Re: Basic HTML Coding

    Post by levy September 15th 2013, 10:27 am

    If you want to start the HTML you need first a <!DOCTYPE HTML> , after that , you will insert the <html></html> tag , in this tag , you will add <head></head> and in head we will add <title>Title here</title> and <style></style>.
    Ok . now , we need to add <body></body> and that's all , so , will look like that :

    Code:
    <!DOCTYPE HTML>
    <html>
    <head>
    <title>My title goes here !</title>

    <style>
    body{
    background: #FF0000;
    color:white;
    font-family:Verdana;
    font-size:11px;
    }
    </style>

    </head>
    <body>
    My simple and awesome body
    </body>

    </html>
    Where is <style></style> you need to add your CSS.