- 
	
	
	
		HTML Codes 
		http://j2gaming.com/guide.png
 
 Here are a list of html codes that will be useful when making a html page.
 
 Common Codes:
 
	Code: 
 <br> = Next line
 <b>Text</b> = Bold font
 <i>Text</i> = Italic font
 <p>Text</p> = Paragraph
 <!-- Text --> = Comment
 <title>Title</title> = Page title
 
 Basic Codes:
 
	Code: 
 <body bgcolor="Color here"> = Background color
 <body background="Image here"> = Backgroud image
 
 Font Codes:
 
	Code: 
 <font color="Color here">Text</font> = Colored font
 <font size="Size here">Text</font> = Font size
 <font face="Font name here">Text</font> = Font face
 
 Link Codes:
 
	Code: 
 <a href=URL Here>Url Text</a> = Basic link
 <a href="mailto:xxxx@xxxx.com">Text</a> = Email link<a href="URL" onClick="alert('Text')">Link Text</a> = MouseClick link, Pop-up
 <a href="URL" onMouseover="alert('Text')">Link Text</a> = MouseOver link, Pop-up
 
 Button Codes:
 
	Code: 
 <form method="link" action="URL"><input type="submit" value="Text"></form> = Linkbutton
 <form method="link" action="mailto:xxxx@xxxx.com"><input type="submit" value="Text"></form> = Email button<input type="button" value="Text" onClick='alert("Text")'></form> = Pop-up button
 
 Textarea Codes:
 
	Code: 
 <textarea>Text</textarea> = Basic textarea
 <textarea rows=# cols=#>Text<textarea> = Textarea, specific size
 
 I will update this when i can
 
 
- 
	
	
	
	
		this is exactly the same post as the one from gamingcube...
 
 but nice codes, i am using them for my website... pretty much just the button codes...
 
 
- 
	
	
	
	
		somthin ill keep in my mind....