Difference between revisions of "How to post pictures and tables in discussions"
m (1 revision) |
m (Reverted edits by zhenyakalinin (talk) to last revision by Simon) |
||
(9 intermediate revisions by 3 users not shown) | |||
Line 1: | Line 1: | ||
Page still under construction | Page still under construction | ||
− | + | = Introduction = | |
HTML, or Hypertext Markup Language, is the language used by every web page across the world. (added with some server-side and/or client-side scripts, XML and/or CSS) | HTML, or Hypertext Markup Language, is the language used by every web page across the world. (added with some server-side and/or client-side scripts, XML and/or CSS) | ||
The Powder Toy forum has got some tags being skipped by the post formatter and some usage of these tags is described below. | The Powder Toy forum has got some tags being skipped by the post formatter and some usage of these tags is described below. | ||
− | + | = Tables = | |
Here are few tags: | Here are few tags: | ||
Line 50: | Line 50: | ||
And there we go, a table. | And there we go, a table. | ||
− | + | = Pictures = | |
To add pictures into a post, you use the <img> tag.\\ | To add pictures into a post, you use the <img> tag.\\ | ||
Line 58: | Line 58: | ||
− | + | = Some HTML snippets = | |
\\ | \\ | ||
'''<acronym title="Tooltip text">''' Normal Text '''</acronym>''' - Makes special text that when you point your cursor onto it, displays "Tooltip text" \\ | '''<acronym title="Tooltip text">''' Normal Text '''</acronym>''' - Makes special text that when you point your cursor onto it, displays "Tooltip text" \\ | ||
Line 88: | Line 88: | ||
Example:"'''<b><i>'''This text is bold and italic!'''</i></b>'''"\\ | Example:"'''<b><i>'''This text is bold and italic!'''</i></b>'''"\\ | ||
− | + | = For More Help With HTML = | |
For more help with HTML go to this website: [[http://www.w3schools.com/html/default.asp]] | For more help with HTML go to this website: [[http://www.w3schools.com/html/default.asp]] |
Latest revision as of 13:50, 27 June 2019
Page still under construction
Introduction
HTML, or Hypertext Markup Language, is the language used by every web page across the world. (added with some server-side and/or client-side scripts, XML and/or CSS)
The Powder Toy forum has got some tags being skipped by the post formatter and some usage of these tags is described below.
Tables
Here are few tags:
- Creates a table header. Add it inside a table row to create a horizontal header, or into the table to make it vertical.
To start a new cell in the table.
|
And there we go, a table. PicturesTo add pictures into a post, you use the <img> tag.\\ <img src="(the url of the picture here)" alt="(what it says when the image can't be imported)" title="Image mouse-over text"> \\ To make sure that you have the right URL for the picture that you want, right click on it and click on the open image in new tab button and copy the URL of that picture. \\
Some HTML snippets\\ <acronym title="Tooltip text"> Normal Text </acronym> - Makes special text that when you point your cursor onto it, displays "Tooltip text" \\ \\ To add some special characters into the text area(for example to not add a space when writing HTML tags for others):\\ < - Creates a "less than" character, or "<"\\ > - Creates a "greater than" character, or ">"\\ © - Creates a copyright icon, or "(C)"\\ &#(ASCII); - Creates the character indicated by the ASCII character code. Example: {\\ ™ - Creates a trademark icon, or "(TM)"\\ nbsp; - Creates a no-breaking space.(makes text alignment not get lost if a space is stacked, for example in formatted code, when replacing spaces with NBSP-s)\\ For more &# codes, go to [[1]] and pay notice to the "HTML Number" column.\\ Example of usage:\\ \\ "If you want to use bold text in your post, try adding <b> before the text and </b> after it"\\ \\ \\ Text - Allows for some CSS addition to the desired span. Text - Makes text bold. Ex. Text \\ Text - Makes text italic. Ex. Text \\ Text - Makes text underlined Ex. Text \\
For More Help With HTMLFor more help with HTML go to this website: [[2]] |
---|