Coding table

ggevalt's picture

Bowing to popular demand, here are a few handy coding tools to use on your posts when you want to spruce things up a bit. Cheers --gg

bold <b>bold</b>
italics <i>italics</i>
underline <u>underline</u>
strikethrough <s>strikethrough</s>
Big size <big>Big size</big >
Small size <small>Small size</small>
An em-dash—see? An em-dash&mdash;see?
Hyperlink to youngwritersproject.org Hyperlink to <a href="http://youngwritersproject.org">youngwritersproject.org</a>
Indenting text: < ul > without the spaces between the brackets. At the end of your indented text, use the < /ul > tag.
A Bulleted List:
  • One Item
  • Another Item

A Bulleted List:
<ul>
<li>One Item</li>
<li>Another Item</li>
</ul>
An Ordered List:
  1. First Item
  2. Second Item
An Ordered List:
<ol>
<li> First Item</li>
<li> Second Item</li>
</ol>
The following quote is special:
Because it is indented
The following quote is special:

<blockquote>Because it is indented</blockquote>

Heading 1

Heading 2

Heading 3

<h1>Heading 1</h1>

<h2>Heading 2</h2>

<h3>Heading 3</h3>

 

Some more html tag info

 

Basic Tags

Body Attributes

Text Tags

Links

Formatting

Tables

Table Attributes

Frames

Frames Attributes

Forms

 

Basic Tags

<html></html> Creates an HTML document

<head></head> Sets off the title and other information that isn’t displayed on the web page itself

<body></body> Sets off the visible portion of the document

Body Attributes

<body bgcolor="pink"> Sets the background color, using name or hex value

<body text="black"> Sets the text color, using name or hex value

<body link="blue"> Sets the color of links, using name or hex value

<body vlink="#ff0000"> Sets the color of followed links, using name or hex value

<body alink="#00ff00"> Sets the color of links on click

<body ondragstart="return false" onselectstart="return false"> Disallows text selection with the mouse and keyboard

Text Tags

<pre></pre> Creates preformatted text

<hl></hl> Creates the largest headline

<h6></h6> Creates the smallest headline

<b></b> Creates bold text

<i></i> Creates italic text

<tt></tt> Creates teletype, or typewriter-style text

<cite></cite> Creates a citation, usually italic

<em></em> Emphasizes a word (with italic or bold)

<strong></strong> Emphasizes a word (with italic or bold)

<font size="3"></font> Sets size of font, from 1 to 7

<font color="green"></font> Sets font color, using name or hex value

Links

<a href="URL"></a> Creates a hyperlink

<a href="mailto:EMAIL"></a> Creates a mailto link

<a href="URL"><img src="URL"> </a> Creates an image/link

<a name="NAME"></a> Creates a target location within a document

<a href="#NAME"></a> Links to that target location from elsewhere in the document

Formatting

<p></p> Creates a new paragraph

<p align="left"> Aligns a paragraph to the left (default), right, or center.

<br> Inserts a line break

<blockquote></blockquote> Indents text from both sides

<dl></dl> Creates a definition list

<dt> Precedes each definition term

<dd> Precedes each definition

<ol></ol> Creates a numbered list

<ul></ul> Creates a bulleted list

<li></li> Precedes each list item, and adds a number or symbol depending upon the type of list selected

<div align="left"> A generic tag used to format large blocks of HTML, also used for stylesheets

<img src="name"> Adds an image

<img src="name" align="left"> Aligns an image: left, right, center; bottom, top, middle

<img src="name" border="1"> Sets size of border around an image

<hr /> Inserts a horizontal rule

<hr size="3" /> Sets size (height) of rule

<hr width="80%" /> Sets width of rule, in percentage or absolute value

<hr noshade /> Creates a rule without a shadow

Tables

<table></table> Creates a table

<tr></tr> Sets off each row in a table

<td></td> Sets off each cell in a row

<th></th> Sets off the table header (a normal cell with bold, centered text)

Table Attributes

<table border="1"> Sets width of border around table cells

<table cellspacing="1"> Sets amount of space between table cells

<table cellpadding="1"> Sets amount of space between a cell’s border and its contents

<table width="500" or "80%"> Sets width of table, in pixels or as a percentage of document width

<tr align="left"> or <td align="left"> Sets alignment for cell(s) (left, center, or right)

<tr valign="top"> or <td valign="top"> Sets vertical alignment for cell(s) (top, middle, or bottom)

<td colspan="2"> Sets number of columns a cell should span (default=1)

<td rowspan="4"> Sets number of rows a cell should span (default=1)

<td nowrap> Prevents the lines within a cell from being broken to fit

Frames

<frameset></frameset> Replaces the <body> tag in a frames document; can also be nested in other framesets

<frameset rows="value,value"> Defines the rows within a frameset, using number in pixels, or percentage of width

<frameset cols="value,value"> Defines the columns within a frameset, using number in pixels, or percentage of width

<frame> Defines a single frame — or region — within a frameset

<noframes></noframes> Defines what will appear on browsers that don’t support frames

Frames Attributes

<frame src="URL"> Specifies which HTML document should be displayed

<frame name="name"> Names the frame, or region, so it may be targeted by other frames

<frame marginwidth="value"> Defines the left and right margins for the frame; must be equal to or greater than 1

<frame marginheight="value"> Defines the top and bottom margins for the frame; must be equal to or greater than 1

<frame scrolling="value"> Sets whether the frame has a scrollbar; value may equal “yes,” “no,” or “auto.” The default, as in ordinary documents, is auto.

<frame noresize="noresize"> Prevents the user from resizing a frame

Forms

For functional forms, you’ll have to run a script. The HTML just creates the appearance of a form.

<form></form> Creates all forms

<select multiple name="NAME" size=?></select> Creates a scrolling menu. Size sets the number of menu items visible before you need to scroll.

<option> Sets off each menu item

<select name="NAME"></select> Creates a pulldown menu

<option> Sets off each menu item

<textarea name="NAME" cols=40 rows=8></textarea name> Creates a text box area. Columns set the width; rows set the height.

<input type="checkbox" name="NAME"> Creates a checkbox. Text follows tag.

<input type="radio" name="NAME" value="x"> Creates a radio button. Text follows tag

<input type="text" name="NAME" size=20> Creates a one-line text area. Size sets length, in characters.

<input type="submit" value="NAME"> Creates a Submit button

<button type="submit">Submit</button> Creates an actual button that is clicked

<input type="image" border=0 name="NAME" src="name.gif"> Creates a Submit button using an image

<input type="reset"> Creates a Reset button

 

gradster1's picture

Ironically

Tables are also usable. ;)

I'm still working on CSS, though. I don't know if that's possible.

/gradster(1)/ - schooling

Secretary of Bureaucracy, ASAP.

http://nmhwu.wordpress.com/

-A

Parrotfish802's picture

Gg

Thanks for putting this up!

-Lemon-
Sleeping With Panda

Our language screams pain but does not understand it. -Twain

Neon Wings's picture

How do you insert a viewable

How do you insert a viewable photo in your comments?

♦♦♦♦♦♦
"You wrote that the world doesn't need a savior,
but everyday I hear people crying out for one

inserting photos in comments

To insert a viewable photo in your comment, just click on the green cross under the body box and then select your photo, upload, etc.

lm

Neon Wings's picture

=)

Thanks ^^

♦♦♦♦♦♦
"You wrote that the world doesn't need a savior,
but everyday I hear people crying out for one

Plz HELP

this is really confusing. so do iput the symbol then the word and then the symbol again.


inserting images

The steps for inserting images in your comments is the same as for inserting them in your blog posts, newspaper series entries, etc.

Step one: click the green cross under the body box.

Step two: Select the image you want to upload by browsing for it on your computer -- or upload a new photo if you want to do that.

Step three: Select the size you want your image to be, alignment and whether you want to link to the page or not.

Step four: Click "insert."

Voila, your image will appear in your comment. If you don't like its alignment or size, click "edit" and make whatever changes you want to make.

taytstar14's picture

hi

hi

Writing is my escape.

intrepid_heart's picture

Thanks! Reaaaaally helpful!

Thanks! Reaaaaally helpful! And I just spent about 20 minutes fiddling with codes to find this. conveniently on the site!!!

 

"You have to destroy something to make it beautiful." -Gerard Way

 

Ya but how do i make what i

Ya but how do i make what i write have a line threw it.


strikethrough

Like this: whatever you want to write. Notice how all the words that appear between the two commands have a line through them.

lm

i do put the command then the

i do put the command then the word then the command again like
this

i hope this is rite


help

ok how do u make the words differents fonts and colors


ObjC_Glenn's picture

Sigh

HTML, HTML, HTML. When will there be integrated CSS? Oh wait, there is. What about Javascript... oh, well, then people could use XSS. I am answering my own questions, it's starting to creep me out... 

"There is no language like Objective-C, and no game like Minecraft." ~ Glenn