[Immortal GamerZ]HTML Tutorial! Part 2(Advanced) menu

User Tag List

Results 1 to 5 of 5
  1. #1
    bsod-staff14's Avatar Member
    Reputation
    35
    Join Date
    Nov 2008
    Posts
    443
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)

    [Immortal GamerZ]HTML Tutorial! Part 2(Advanced)

    Hello everyone! I hope my last tutorial helped you learn the very basic's of HTML. .

    Here's a few more tip's and code's to get your design and coding off the ground.

    Code:
     
    The <img> Tag:
    This tag is used for images. Used by almost all popular websites and used for effective convincing designs!
    Advanced version: <img src="../image.gif" /> 2nd:<img src="http://www.immortalgamerz.com/image.gif" /> 3rd:<img src="image.gif" alt="[Hitler]" />
    
    Images and Text: <h2><img src="image.jpg" alt="Alt Text!" />Example text for the image :P.</h2>
    
    Image's aligning: <img src="image.gif" alt="Alt Text!" align="left" />//Align could also be center or right.\\
    
    Images and links: <a href="index.html"><img src="home.gif" alt="Up" />Home</a> 
    <a href="replacing.html"><img src="next.gif" alt="Next" />Next</a>
    <a href="ready.html"><img src="back.gif" alt="Back" />Back</a>
    <a href="index.html"><img src="uparrow.gif" alt="Up" />Up</a>
    
    What im about to teach you next replaces your body tag.
    Image Backgrounds:
    <body background="image.gif">
    <body background="backgrounds/image1.gif">
    
    <body style="background-image: url(backgrounds/image1.gif);
    background-repeat: no-repeat; background-attachment: fixed">
    
    <body style="background-image: url(backgrounds/image1.gif);
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-position: center right">
    
    <body style="background: black url(backgrounds/image1.gif)
    no-repeat fixed center right">
    Thats it for image's today lets move onto tables!

    Code:
    Table layout for basic's! I am going to use a sample one from a WoW website I made in php/html/css :). I think it will be satisfactory for all you beginner's.
    <table border="1">
    <caption>Staff Members</caption>
     <tr>
      <th>Name</th>
      <th>Age</th>
      <th>Position</th>
      <th>Role</th>
     </tr>
     <tr>
      <td>Matt</td>
      <td>15</td>
      <td>Owner and Creator</td>
      <td>Web Designer, C++ Coder, LUA Coder, SQL Coder</td>
     </tr>
     <tr>
      <td>Name2</td>
      <td>21</td>
      <td>Position</td>
      <td>Role</td>
     </tr>
     <tr>
      <td>Name3</td>
      <td>21</td>
      <td>Position</td>
      <td>Role</td>
     </tr>
     </table>
    
    Sizing Tables and Border's:
    <table border="1" width="100%">
    <table border="10" width="100%">
    <table cellpadding="10" border="1">
    <table cellpadding="10" border="4" cellspacing="8">
    
    Align Table Content:
    <table border="1" align="left" width="70%">
    <tr align="center" valign="top">
    
    <tr align="center" valign="top">
      <td>14</td>
      <td>16</td>
      <td align=left>No Data</td>
      <td>15</td>
    </tr>
    
    <caption align="bottom" style="text-align: right">This is a caption</caption>
    Thats all with table's today!

    Now lets move onto forms!!!YAY!:

    Code:
    Basic form Layout:
    <form action="login-inc.php" method="post">
    content, form controls, and other HTML elements
    </form>
    
    Email Form Layout:
    <form action="mailto:[email protected]" method="post">
    
    </form>
    
    Other form controls:
    Button:
    <button type="submit"><b><i>Submit button</i></b></button>
    <button type="custom"><img src="image.gif"></button>
    
    Text Area:
    <p>Please comment on our Website!.<br />
    <textarea name="question4" rows="10" cols="60">Enter your suggestions or compliments here
    </textarea>
    </p>
    Once again thats all the time I have for today I will come back and post more :P. I hope this helps some of you beginner's if not oh well now I can say I tried :P.
    Immortal GamerZ Under Development!

    [Immortal GamerZ]HTML Tutorial! Part 2(Advanced)
  2. #2
    Hellgawd's Avatar Account not activated by Email
    Reputation
    710
    Join Date
    Jun 2007
    Posts
    2,480
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Why do you use tables. Divs /w CSS = win

  3. #3
    bsod-staff14's Avatar Member
    Reputation
    35
    Join Date
    Nov 2008
    Posts
    443
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Because im going up in part's :P. I will release Part 3 tomorrow just my hands hurt from typing :/.
    Immortal GamerZ Under Development!

  4. #4
    Garosie's Avatar Active Member
    Reputation
    18
    Join Date
    Jul 2007
    Posts
    68
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Omg this is soo nice I allready knew a bit of this, but i've even made my own HTML now :P

  5. #5
    bsod-staff14's Avatar Member
    Reputation
    35
    Join Date
    Nov 2008
    Posts
    443
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Thanks bud glad to know I was of some use to someone .
    Immortal GamerZ Under Development!

Similar Threads

  1. [Share] Great HTML Tutorial(s)
    By 3xploit in forum WoW EMU Guides & Tutorials
    Replies: 5
    Last Post: 12-19-2012, 11:18 PM
  2. PSD into CSS + HTML tutorial
    By CssMrR in forum Community Chat
    Replies: 1
    Last Post: 08-06-2011, 09:43 PM
  3. [Immortal GamerZ]Php Guide! Part 1(Variables+more!)
    By bsod-staff14 in forum Programming
    Replies: 1
    Last Post: 08-15-2009, 08:51 AM
  4. [Immortal GamerZ]HTML Tutorial! Part 1
    By bsod-staff14 in forum Programming
    Replies: 4
    Last Post: 07-17-2009, 05:55 PM
  5. [Tutorial] Full grunge sig [Advanced]
    By Massimiliano in forum Art & Graphic Design
    Replies: 0
    Last Post: 11-21-2007, 07:48 PM
All times are GMT -5. The time now is 04:14 AM. Powered by vBulletin® Version 4.2.3
Copyright © 2024 vBulletin Solutions, Inc. All rights reserved. User Alert System provided by Advanced User Tagging (Pro) - vBulletin Mods & Addons Copyright © 2024 DragonByte Technologies Ltd.
Digital Point modules: Sphinx-based search