The letter ''A'' is the first letter in the [[Latin]] alphabet. Its name in [[English]] is //a// ([[IPA]] /eɪ/).
<<tiddler SiteTitle>> is <<tiddler SiteSubtitle>> powered by TiddlyWiki.\n\nFeel free to add or edit pages if you have a login. Please see [[License]] for copying policy.\n\nYou can save your own blank TiddlyWiki to your local drive by right clicking on [[this link to empty.html|/empty.html]] and selecting &lsquo;Save link as&hellip;&rsquo; or &lsquo;Save target as&hellip;&rsquo;.
[img[Streetkids Unlimited|/predator.jpg][http://streetkids.dk/]]\n\n
|>|>| !Selectors |\n| ''Selector'' | ''Sample'' | ''Description'' |\n| tag | H1 { color: blue ; } |Selects all of the specified HTML tags |\n| class | .myClass { color: blue; } |Selects all HTML tags with the attribute class="myClass" specified |\n| ID | #tag56 { color: blue; } |Selects the single HTML tag with the attibute ID="tag56" specified |\n| Grouping | H1, H2, H3 { color: blue ; } | selects all specified selectors (tags, class, or ID can be specified) |\n| Contextual | H1 B { color: red; } |selects all 'B' tags in H1. Context selectors can be tag, class, or ID selectors |\n\n|>|>|>| !Units |\n| ''Type'' | ''Unit'' | ''Description'' |\n| Length | mm, cm, in |millimeters, centimeters, inches |\n|~| pt, pc |point size, pica |\n|~| em, ex |relative to the point size of the font, relative to x-height of the font |\n|~| px |pixel (device dependent) |\n| Percentage | % |calculated as a percentage of their default size used in context |\n| Keywords | .. | ... |\n| Color | <name> |Color names ex: green see: ColorNames |\n|~| rgb() |specify number or percengate rgb(100%, 0, 100%) |\n|~| <hex value> |specify hex RGB number of color ex: #00FF00 see: ColorChart |\n\n|>|>|>| !Font Properties |\n| ''Property'' | ''Valid Values'' | ''Example'' | ''Inherited?'' |\n| font-family |[font name or type] | font-family: Verdana, Arial; | Y |\n| font-style |normal, italic | font-style:italic; | Y |\n| font-variant |normal, small-cap | font-variant:small-caps; | Y |\n| font-weight |normal, bold | font-weight:bold; | Y |\n| font-size |[ xx-large, x-large, large, medium, small, x-small, xx-small ], [ larger, smaller ], \s\spercentage'\s\s, //length// | font-size:12pt; | Y |\n| font |[//font-style// / //font-variant// / //font-weight//] ? //font-size// [//line-height//] ? //font-family// | font: bold 12pt Arial; | Y |\n\n|>|>|>| !Color and Background Properties |\n| ''Property'' | ''Valid Values'' | ''Example'' | ''Inherited?'' |\n| color |//color // | color: red | Y |\n| background-color |//color//, transparent | background-color: yellow | N* |\n| background-image |//url//, none | background-image: url(house.jpg)| N* |\n| background-repeat |repeat, repeat-x, repeat-y, no-repeat | background-repeat: no-repeat | N* |\n| background-attachment |scroll, fixed | background-attachment: fixed | N* |\n| background-position |[ //position// , //length// ], {1,2}, [ top, center, bottom ] -or- [ left, center, right ] | background-position: top center | N* |\n| background |transparent, //color// -or- //url// -or- repeat -or- scroll -or- //position// | background: silver url(house.jpg) repeat-y | N* |\n|>|>|>| !*Starting in CSS2, these properties are inherited. |\n\n|>|>|>| !Text Properties |\n| ''Property'' | ''Valid Values'' | ''Example'' | ''Inherited?'' |\n| letter-spacing |normal, //length// | letter-spacing:5pt | Y |\n| text-decoration |none, underline, overline, line-through | text-decoration:underline | N |\n| vertical-align |sub, super, | vertical-align:sub | N |\n| text-transform |capitalize, uppercase, lowercase, none | text-transform:lowercase | N |\n| text-align |left, right, center, justify | text-align:center | N |\n| text-indent |//length//, //percentage// | text-indent:25px | N |\n| line-height |normal, //number//, //length//, //percentage// | line-height:15pt | N |\n\n\n''The //CSS Box//''\n<html>\n<div style="color:black;background-color:#FFFFCC;padding:1em;border:thin solid black;text-align:center;width=30%">margin\n<div style="color:white;background-color:black;padding:1em;border:thin solid black;text-align:center;width=100%">border\n<div style="color:black;background-color:#FFCC99;padding:1em;border:thin solid black;text-align:center;width=100%">padding\n<div style="color:black;background-color:white;border:thin solid black;text-align:center;width=100%">content<br/>\n<div style="float:left"><-</div><div style="float:right">-></div>CSS 'width'\n</div>\n</div>\n</div>\n</div>\n</html>\n\n\n|>|>|>| !Box Properties |\n| ''Property'' | ''Valid Values'' | ''Example'' | ''Inherited?'' |\n| margin-top |//length//, //percentage//, auto | margin-top:5px | N |\n| margin-right |//length//, //percentage//, auto | margin-right:5px | N |\n| margin-bottom |//length//, //percentage//, auto | margin-bottom:1em | N |\n| margin-left |//length//, //percentage//, auto | margin-left:5pt | N |\n| margin |//length//, //percentage//, auto {1,4}| margin: 10px 5px 10px 5px | N |\n| padding-top |//length//, //percentage// | padding-top:10%| N |\n| padding-right |//length//, //percentage// | padding-right:15px | N |\n| padding-bottom |//length//, //percentage// | padding-bottom:1.2em | N |\n| padding-left |//length//, //percentage// | padding-left:10pt; } | N |\n| padding |//length//, //percentage// {1,4}| padding: 10px 10px 10px 15px | N |\n| border-top-width |thin, medium, thick, //length// | border-top-width:thin | N |\n| border-right-width |thin, medium, thick, //length// | border-right-width:medium | N |\n| border-bottom-width |thin, medium, thick, //length// | border-bottom-width:thick | N |\n| border-left-width |thin, medium, thick, //length// | border-left-width:15px | N |\n| border-width |thin, medium, thick, //length// {1,4}| border-width: 3px 5px 3px 5px | N |\n| border-top-color |//color // | border-top-color:navajowhite | N |\n| border-right-color |//color// | border-right-color:whitesmoke | N |\n| border-bottom-color |//color// | border-bottom-color:black | N |\n| border-left-color |//color// | border-left-color:#C0C0C0 | N |\n| border-color |//color// {1,4} | border-color: green red white blue; } | N |\n| border-top-style |none, solid, double, groove, ridge, inset, outset | border-top-style:solid | N |\n| border-right-style |none, solid, double, groove, ridge, inset, outset | border-right-style:double | N |\n| border-bottom-style |none, solid, double, groove, ridge, inset, outset | border-bottom-style:groove | N |\n| border-left-style |none, solid, double, groove, ridge, inset, outset | border-left-style:none | N |\n| border-style |none, solid, double, groove, ridge, inset, outset | border-style:ridge; }| N |\n| border-top |//border-width//, //border-style//, //border-color// | border-top: medium outset red | N |\n| border-right |//border-width//, //border-style//, //border-color// | border-right: thick inset maroon | N |\n| border-bottom |//border-width//, //border-style//, //border-color// | border-bottom: 10px ridge gray | N |\n| border-left |//border-width//, //border-style//, //border-color// | border-left: 1px groove red | N |\n| border |//border-width//, //border-style//, //border-color// | border: thin solid blue | N |\n| float |none, left, right | float:none | N |\n| clear |none, left, right, both | clear:left | N |\n\n|>|>|>| !Classification Properties |\n| ''Property'' | ''Valid Values'' | ''Example'' | ''Inherited?'' |\n| display |none, block, inline, list-item | display:none | N |\n| list-style-type |disk, circle, square, decimal, lower-roman, upper-roman, lower-alpha, upper-alpha, none | list-style-type:upper-alpha | Y |\n| list-style-image |//url//, none | list-style-image:url(icFile.gif) | Y |\n| list-style-position |inside, outside | list-style-position:inside | Y |\n| list-style |//keyword// -or- //position// -or- //url// | list-style: square outside url(icFolder.gif) | Y |\n\n|>|>|>| !Positioning Properties |\n| ''Property'' | ''Valid Values'' | ''Example'' | ''Applies Too'' | ''Inherited?'' |\n| clip |//shape//, auto | clip:rect(0px 200px 200px 0px) | all element | N |\n| height |//length//, auto | height:200px | DIV, SPAN and replaced element | N |\n| left |//length//, //percentage//, auto | left:0px | absolutely and relatively positioned element | N |\n| overflow |visible, hidden, scroll, auto | overflow:scroll | all element | N |\n| position |absolute, relative, static | position:absolute | all element | N |\n| top |//length//, //percentage//, auto | top:0px | absolutely and relatively positioned element | N |\n| visibility |visible, hidden, inherit | visibility:visible | all element | N |\n| width |//length//, //percentage//, auto | width:80%| DIV, SPAN and replaced element | N |\n| z-index |auto, //integer// | z-index:-1| absolutely and relatively positioned element | N |\n\n|>|>|>| !Printing Properties |\n| ''Property'' | ''Valid Values'' | ''Example'' | ''Inherited?'' |\n| page-break-before |auto, always -or- left, right | page-break-before:alway | N |\n| page-break-after |auto, always -or- left, right | page-break-before:auto | N |\n\n|>|>|>| !Pseudo Classes |\n| ''Property'' | ''Valid Values'' | ''Example'' | ''Inherited?'' |\n| cursor |auto, crosshair, default, hand, move, e-resize, ne-resize, nw-resize, n-resize, se-resize, sw-resize, s-resize, w-resize, text, wait, help | { cursor:hand; } | Y |\n| active, hover, link, visited | n/a | a:hover { color:red; } | Y |\n| first-letter, first-line |any font manipulating declaration | p:first-letter{ float:left;color:blue } | N |\n\n!!!See also\n*[[HTML entities]]\n*[[Greek HTML entities]]\n*[[Math HTML entities]]\n*[[Other HTML entities]]\n\n
You can reach me, {{{klaus@seistrup.dk}}} ([[Klaus Alexander Seistrup|http://seistrup.dk/klaus/]]), by [[email|mailto:klaus@seistrup.dk]] or [[jabber|xmpp:klaus@seistrup.dk]].\n
[[Nshima]]\n
|>|>| !Greek Letters |\n| !Symbol | !upper-case | !lower-case |\n| Alpha | Α | α |\n| Beta | Β | β |\n| Gamma | Γ | γ |\n| Delta | Δ | δ |\n| Epsilon | Ε | ε |\n| Zeta | Ζ | ζ |\n| Eta | Η | η |\n| Theta | Θ | θ |\n| Thetasym | ϑ | |\n| Iota | Ι | ι |\n| Kappa | Κ | κ |\n| Lambda | Λ | λ |\n| Mu | Μ | μ |\n| Nu | Ν | ν |\n| Xi | Ξ | ξ |\n| Omicron | Ο | ο |\n| Pi | Π | π |\n| Pi | π | |\n| Rho | Ρ | ρ |\n| Sigma | Σ | σ |\n| Tau | Τ | τ |\n| Upsilon | Υ | υ |\n| Upsilon | ϒ | |\n| Phi | Φ | φ |\n| Chi | Χ | χ |\n| Psi | Ψ | ψ |\n| Omega | Ω | ω |\n\n!!!See also\n*[[HTML entities]]\n*[[Math HTML entities]]\n*[[Other HTML entities]]\n*[[CSS reference]]\n
|>|>| !Whitespace |\n| !Symbol | !Character | !Description |\n| nbsp | |non-breaking space |\n| ensp |   |en space |\n| emsp |   |em space |\n| thinsp |   |thin space |\n| zwnj | ‌ |zero width non-joiner |\n| zwj | ‍ |zero width joiner |\n| lrm | ‎ |left-to-right mark |\n| rlm | ‏ |right-to-left mark |\n| shy | ­ |soft hyphen |\n|>|>| !Money |\n| !Symbol | !Character | !Description |\n| cent | ¢ |cent sign |\n| pound | £ |pound sign |\n| curren | ¤ |currency sign |\n| yen | ¥ |yen sign |\n| euro | € |euro sign |\n|>|>| !Symbols |\n| !Symbol | !Character | !Description |\n| copy | © |copyright sign |\n| reg | ® |registered trade mark |\n| trade | ™ |trade mark sign |\n| ordm | º |masculine ordinal indicator |\n| ordf | ª |feminine ordinal indicator |\n| dagger | † |dagger |\n| Dagger | ‡ |double dagger |\n| bull | • |bullet |\n| spades | ♠ |spade |\n| clubs | ♣ |club |\n| hearts | ♥ |heart |\n| diams | ♦ |diamond |\n|>|>| !Lines |\n| !Symbol | !Character | !Description |\n| macr | ¯ |overline |\n| brvbar | ¦ |broken vertical bar |\n| ndash | – |en dash |\n| mdash | — |em dash |\n| oline | ‾ |overline |\n| lceil | ⌈ |left ceiling |\n| rceil | ⌉ |right ceiling |\n| lfloor | ⌊ |left floor |\n| rfloor | ⌋ |right floor |\n|>|>| !Arrows |\n| !Symbol | !Character | !Description |\n| larr | ← |left arrow |\n| uarr | ↑ |up arrow |\n| rarr | → |right arrow |\n| darr | ↓ |down arrow |\n| harr | ↔ |left right arrow |\n| crarr | ↵ |down arrow with corner leftwards / carriage return |\n| lArr | ⇐ |left double arrow |\n| uArr | ⇑ |up double arrow |\n| rArr | ⇒ |right double arrow |\n| dArr | ⇓ |down double arrow |\n| hArr | ⇔ |left right double arrow |\n|>|>| !Punctuation |\n| !Symbol | !Character | !Description |\n| iexcl | ¡ |inverted exclamation mark |\n| iquest | ¿ |inverted question mark |\n| uml | ¨ |diaeresis |\n| acute | ´ |acute accent |\n| para | ¶ |paragraph sign |\n| sect | § |section sign |\n| cedil | ¸ |cedilla |\n| amp | & |ampersand |\n| apos | ' |apostrophe mark |\n| circ | ˆ |circumflex accent |\n| tilde | ˜ |small tilde |\n| hellip | … |horizontal ellipsis |\n|>|>| !Quotations |\n| !Symbol | !Character | !Description |\n| quot | " |quotation mark |\n| raquo | » |right double angle quotation mark |\n| laquo | « |left double angle quotation mark |\n| lsquo | ‘ |left single quotation mark |\n| rsquo | ’ |right single quotation mark |\n| sbquo | ‚ |single low-9 quotation mark |\n| ldquo | “ |left double quotation mark |\n| rdquo | ” |right double quotation mark |\n| bdquo | „ |double low-9 quotation mark |\n| lsaquo | ‹ |single left-pointing angle quotation mark |\n| rsaquo | › |single right-pointing angle quotation mark |\n\n!!!See also\n*[[Greek HTML entities]]\n*[[Math HTML entities]]\n*[[Other HTML entities]]\n*[[CSS reference]]\n
This site is published under the [[Creative Commons|http://creativecommons.org/]] [[Attribution-NonCommercial-ShareAlike|http://creativecommons.org/licenses/by-nc-sa/2.5/]] license v2.5+, which means that\n\n''You are free:''\n* to copy, distribute, display, and perform the work\n* to make derivative works\n''Under the following conditions:''\n* ''Attribution.'' You must attribute the work in the manner specified by the author or licensor.\n* ''Noncommercial.'' You may not use this work for commercial purposes.\n* ''Share Alike.'' If you alter, transform, or build upon this work, you may distribute the resulting work only under a license identical to this one.\n* For any reuse or distribution, you must make clear to others the license terms of this work.\n* Any of these conditions can be waived if you get prior written permission from the copyright holder.\n//Your fair use and other rights are in no way affected by the above.//\n\nThis is a human-readable summary of the [[Legal Code (the full license)|http://creativecommons.org/licenses/by-nc-sa/2.5/legalcode]].\n
Sed ut perspiciatis, unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam eaque ipsa, quæ ab illo inventore veritatis et quasi architecto beatæ vitæ dicta sunt, explicabo. Nemo enim ipsam voluptatem, quia voluptas sit, aspernatur aut odit aut fugit, sed quia consequuntur magni dolores eos, qui ratione voluptatem sequi nesciunt, neque porro quisquam est, qui do[[lorem ipsum|http://ipsum.dk/]], quia dolor sit, amet, consectetur, adipisci velit, sed quia non numquam eius modi tempora incidunt, ut labore et dolore magnam aliquam quaerat voluptatem. Ut enim ad minima veniam, quis nostrum exercitationem ullam corporis suscipit laboriosam, nisi ut aliquid ex ea commodi consequatur? Quis autem vel eum iure reprehenderit, qui in ea voluptate velit esse, quam nihil molestiæ consequatur, vel illum, qui dolorem eum fugiat, quo voluptas nulla pariatur?\n\nAt vero eos et accusamus et iusto odio dignissimos ducimus qui blanditiis præsentium voluptatum deleniti atque corrupti quos dolores et quas molestias excepturi sint occæcati cupiditate non provident, similique sunt in culpa qui officia deserunt mollitia animi, id est laborum et dolorum fuga. Et harum quidem rerum facilis est et expedita distinctio. Nam libero tempore, cum soluta nobis est eligendi optio cumque nihil impedit quo minus id quod maxime placeat facere possimus, omnis voluptas assumenda est, omnis dolor repellendus. Temporibus autem quibusdam et aut officiis debitis aut rerum necessitatibus saepe eveniet ut et voluptates repudiandæ sint et molestiæ non recusandæ. Itaque earum rerum hic tenetur a sapiente delectus, ut aut reiciendis voluptatibus maiores alias consequatur aut perferendis doloribus asperiores repellat.
[[A]]\n[[About]]\n[[Contact]]\n[[Lorem ipsum]]\n[[Random pads]]\n[[Scientology]]\n[[Shalom]]\n[[Sosu]]\n[[Tmp]]\n[[Z]]\n
|>|>| !Math |\n| !Symbol | !Character | !Description |\n| deg | ° |degree sign |\n| plusmn | ± |plus or minus sign |\n| times | × |multiplication sign |\n| divide | ÷ |division sign |\n| lt | < |less-than sign |\n| gt | > |greater-than sign |\n| lang | 〈 |left angle bracket |\n| rang | 〉 |right angle bracket |\n| not | ¬ |not sign |\n| sup1 | ¹ |superscript one |\n| sup2 | ² |superscript two |\n| sup3 | ³ |superscript three |\n| middot | · |middle dot |\n| frac14 | ¼ |one quarter |\n| frac12 | ½ |one half |\n| frac34 | ¾ |three quarters |\n| permil | ‰ |per mille sign |\n| fnof | ƒ |latin small f with hook (function) |\n| prime | ′ |prime / minutes / feet |\n| Prime | ″ |double prime / seconds / inches |\n| frasl | ⁄ |fraction slash |\n| weierp | ℘ |script capital P |\n| image | ℑ |bold I / imaginary part |\n| real | ℜ |bold R / real part |\n| alefsym | ℵ |first transfinite cardinal |\n| micro | µ |micro sign |\n| forall | ∀ |for all |\n| part | ∂ |partial differential |\n| exist | ∃ |there exists |\n| empty | ∅ |empty set / diameter |\n| nabla | ∇ |backward difference |\n| isin | ∈ |element of |\n| notin | ∉ |not an element of |\n| ni | ∋ |contains as member |\n| prod | ∏ |product sign |\n| sum | ∑ |n-ary sumation |\n| minus | − |minus sign |\n| lowast | ∗ |asterisk operator |\n| radic | √ |square root / radical |\n| prop | ∝ |proportional to |\n| infin | ∞ |infinity |\n| ang | ∠ |angle |\n| and | ∧ |logical and |\n| or | ∨ |logical or |\n| cap | ∩ |intersection |\n| cup | ∪ |union |\n| int | ∫ |integral |\n| there4 | ∴ |therefore |\n| sim | ∼ |similar to |\n| cong | ≅ |approximately equal to |\n| asymp | ≈ |almost equal to |\n| ne | ≠ |not equal to |\n| equiv | ≡ |identical to |\n| le | ≤ |less-than or equal to |\n| ge | ≥ |greater-than or equal to |\n| sub | ⊂ |subset of |\n| sup | ⊃ |superset of |\n| nsub | ⊄ |not a subset of |\n| sube | ⊆ |subset of or equal to |\n| supe | ⊇ |superset of or equal to |\n| oplus | ⊕ |direct sum |\n| otimes | ⊗ |vector product |\n| perp | ⊥ |orthogonal to / perpendicular |\n| sdot | ⋅ |dot operator |\n\n!!!See also\n*[[HTML entities]]\n*[[Greek HTML entities]]\n*[[Other HTML entities]]\n*[[CSS reference]]\n
[[Nshima]] is a cornmeal product and a staple food in [[Zambia]]. It is made from ground maize flour known locally as &ldquo;mealie meal&rdquo;. Nshima is very similar to ugali of East Africa, sadza of Zimbabwe and foufou of West Africa. In neighboring Malaŵi, this pervasive dish is known as nsima.\n\nTraditionally diners sit around a table or on the floor surronding the meal. The diners have to wash their hands as nshima is eaten with bare hands. This is done with a bowl of water. Alternatively the host or one of the younger people present pours water from a pitcher over the hands of the elders or guests into a receptacle bowl. Eating is done by taking a small lump into ones palm, rolling it into ball and dipping it into the relish. An indentation in the nshima ball can be made to help scoop the relish or gravy. Westerners who are unaccustomed to eating with bare hands are free to use a knife and fork. As with many African traditions, age is very important. Washing before the meal, eating and washing after the meal generally starts with the oldest person, followed by everyone else in turn by age.\n\nMany Zambians take their nshima very seriously with some considering any meal without it a mere snack. It is eaten by all segments of the population from the low income to the elite. Many Westerners, however, tend to find it bland and tasteless.\n\nNshima is relatively cheap and affordable for most of the population, although occasionally prices have risen due to shortages, contributing to economic and political instability.\n\n
|>|>| !Punctuation |\n| !Reference | !Symbol | !Description |\n| ndash | – |en dash|\n| mdash | — |em dash|\n| hellip | … |horizontal ellipsis|\n| 8252 | ‼ |double exclamation mark|\n| 8263 | ⁇ |double question mark|\n| 8264 | ⁈ |question exclamation mark|\n| 8265 | ⁉ |exclamation question mark|\n|>|>| !Ligatures |\n| !Reference | !Symbol | !Description |\n| 64256 | ff |small ff ligature|\n| 64257 | fi |small fi ligature|\n| 64258 | fl |small fl ligature|\n| 64259 | ffi |small ffi ligature|\n| 64260 | ffl |small ffl ligature|\n\n!!!See also\n*[[HTML entities]]\n*[[Greek HTML entities]]\n*[[Math HTML entities]]\n*[[CSS reference]]\n
!!Private News Exchange\n[[PNX|http://pnx.dk/]] is a group of loosely related geeks who are all running their own private NNTP servers, and peering a subset of Usenet hierarchies fed by friendly external feeds.\n
|Standard Periodic Table|c\n|| !1 | !2 |!| !3 | !4 | !5 | !6 | !7 | !8 | !9 | !10 | !11 | !12 | !13 | !14 | !15 | !16 | !17 | !18 |\n|!1|bgcolor(#a0ffa0): @@color(red):H@@ |>|>|>|>|>|>|>|>|>|>|>|>|>|>|>|>||bgcolor(#c0ffff): @@color(red):He@@ |\n|!2|bgcolor(#ff6666): Li |bgcolor(#ffdead): Be |>|>|>|>|>|>|>|>|>|>||bgcolor(#cccc99): B |bgcolor(#a0ffa0): C |bgcolor(#a0ffa0): @@color(red):N@@ |bgcolor(#a0ffa0): @@color(red):O@@ |bgcolor(#ffff99): @@color(red):F@@ |bgcolor(#c0ffff): @@color(red):Ne@@ |\n|!3|bgcolor(#ff6666): Na |bgcolor(#ffdead): Mg |>|>|>|>|>|>|>|>|>|>||bgcolor(#cccccc): Al |bgcolor(#cccc99): Si |bgcolor(#a0ffa0): P |bgcolor(#a0ffa0): S |bgcolor(#ffff99): @@color(red):Cl@@ |bgcolor(#c0ffff): @@color(red):Ar@@ |\n|!4|bgcolor(#ff6666): K |bgcolor(#ffdead): Ca ||bgcolor(#ffc0c0): Sc |bgcolor(#ffc0c0): Ti |bgcolor(#ffc0c0): V |bgcolor(#ffc0c0): Cr |bgcolor(#ffc0c0): Mn |bgcolor(#ffc0c0): Fe |bgcolor(#ffc0c0): Co |bgcolor(#ffc0c0): Ni |bgcolor(#ffc0c0): Cu |bgcolor(#ffc0c0): Zn |bgcolor(#cccccc): Ga |bgcolor(#cccc99): Ge |bgcolor(#cccc99): As |bgcolor(#a0ffa0): Se |bgcolor(#ffff99): @@color(green):Br@@ |bgcolor(#c0ffff): @@color(red):Kr@@ |\n|!5|bgcolor(#ff6666): Rb |bgcolor(#ffdead): Sr ||bgcolor(#ffc0c0): Y |bgcolor(#ffc0c0): Zr |bgcolor(#ffc0c0): Nb |bgcolor(#ffc0c0): Mo |bgcolor(#ffc0c0): Tc |bgcolor(#ffc0c0): Ru |bgcolor(#ffc0c0): Rh |bgcolor(#ffc0c0): Pd |bgcolor(#ffc0c0): Ag |bgcolor(#ffc0c0): Cd |bgcolor(#cccccc): In |bgcolor(#cccccc): Sn |bgcolor(#cccc99): Sb |bgcolor(#cccc99): Te |bgcolor(#ffff99): I |bgcolor(#c0ffff): @@color(red):Xe@@ |\n|!6|bgcolor(#ff6666): Cs |bgcolor(#ffdead): Ba |bgcolor(#ffbfff):^^*1^^|bgcolor(#ffc0c0): Lu |bgcolor(#ffc0c0): Hf |bgcolor(#ffc0c0): Ta |bgcolor(#ffc0c0): W |bgcolor(#ffc0c0): Re |bgcolor(#ffc0c0): Os |bgcolor(#ffc0c0): Ir |bgcolor(#ffc0c0): Pt |bgcolor(#ffc0c0): Au |bgcolor(#ffc0c0): @@color(green):Hg@@ |bgcolor(#cccccc): Tl |bgcolor(#cccccc): Pb |bgcolor(#cccccc): Bi |bgcolor(#cccc99): Po |bgcolor(#ffff99): At |bgcolor(#c0ffff): @@color(red):Rn@@ |\n|!7|bgcolor(#ff6666): Fr |bgcolor(#ffdead): Ra |bgcolor(#ff99cc):^^*2^^|bgcolor(#ffc0c0): Lr |bgcolor(#ffc0c0): Rf |bgcolor(#ffc0c0): Db |bgcolor(#ffc0c0): Sq |bgcolor(#ffc0c0): Bh |bgcolor(#ffc0c0): Hs |bgcolor(#ffc0c0): Mt |bgcolor(#ffc0c0): Ds |bgcolor(#ffc0c0): Rg |bgcolor(#ffc0c0): @@color(green):Uub@@ |bgcolor(#cccccc): Uut |bgcolor(#cccccc): Uuq |bgcolor(#cccccc): Uup |bgcolor(#cccccc): Uuh |bgcolor(#fcfecc): @@color(#cccccc):Uus@@ |bgcolor(#ecfefc): @@color(#cccccc):Uuo@@ |\n\n| !Lanthanides^^*1^^|bgcolor(#ffbfff): La |bgcolor(#ffbfff): Ce |bgcolor(#ffbfff): Pr |bgcolor(#ffbfff): Nd |bgcolor(#ffbfff): Pm |bgcolor(#ffbfff): Sm |bgcolor(#ffbfff): Eu |bgcolor(#ffbfff): Gd |bgcolor(#ffbfff): Tb |bgcolor(#ffbfff): Dy |bgcolor(#ffbfff): Ho |bgcolor(#ffbfff): Er |bgcolor(#ffbfff): Tm |bgcolor(#ffbfff): Yb |\n| !Actinides^^*2^^|bgcolor(#ff99cc): Ac |bgcolor(#ff99cc): Th |bgcolor(#ff99cc): Pa |bgcolor(#ff99cc): U |bgcolor(#ff99cc): Np |bgcolor(#ff99cc): Pu |bgcolor(#ff99cc): Am |bgcolor(#ff99cc): Cm |bgcolor(#ff99cc): Bk |bgcolor(#ff99cc): Cf |bgcolor(#ff99cc): Es |bgcolor(#ff99cc): Fm |bgcolor(#ff99cc): Md |bgcolor(#ff99cc): No |\n\n*Chemical Series of the Periodic Table\n**@@bgcolor(#ff6666): Alkali metals@@\n**@@bgcolor(#ffdead): Alkaline earth metals@@\n**@@bgcolor(#ffbfff): Lanthanides@@\n**@@bgcolor(#ff99cc): Actinides@@\n**@@bgcolor(#ffc0c0): Transition metals@@\n**@@bgcolor(#cccccc): Poor metals@@\n**@@bgcolor(#cccc99): Metalloids@@\n**@@bgcolor(#a0ffa0): Nonmetals@@\n**@@bgcolor(#ffff99): Halogens@@\n**@@bgcolor(#c0ffff): Noble gases@@\n\n*State at standard temperature and pressure\n**those in @@color(red):red@@ are gases\n**those in @@color(green):green@@ are liquids\n**those in black are solids\n
!!Repository of random pads\n*@@font-family:monospace;[[pad-md5-0c17253d61f116c43f820cb03522ad7d.dat|/pad-md5-0c17253d61f116c43f820cb03522ad7d.dat]]@@\n*@@font-family:monospace;[[pad-md5-738789e2b0ace6182141aa7ca3c4eeff.dat|/pad-md5-738789e2b0ace6182141aa7ca3c4eeff.dat]]@@\n*@@font-family:monospace;[[pad-md5-a29eea68b8b4ba1040727d9d65e7bb2e.dat|/pad-md5-a29eea68b8b4ba1040727d9d65e7bb2e.dat]]@@\n*@@font-family:monospace;[[pad-md5-a373432708353572d4840da8f87fbff5.dat|/pad-md5-a373432708353572d4840da8f87fbff5.dat]]@@\n*@@font-family:monospace;[[pad-md5-a5046a6a429722c5a2d6cf673bf88b22.dat|/pad-md5-a5046a6a429722c5a2d6cf673bf88b22.dat]]@@\n*@@font-family:monospace;[[pad-md5-cbc92b278bcab7332fd6bec0aa818b33.dat|/pad-md5-cbc92b278bcab7332fd6bec0aa818b33.dat]]@@\n*@@font-family:monospace;[[pad-md5-d12c8f6229fa34989fecd821f3c63101.dat|/pad-md5-d12c8f6229fa34989fecd821f3c63101.dat]]@@\nPlease read about pads [[here|http://www.madore.org/~david/misc/freespeech.html]] and help support free speech.\n!!Other repositories\n* http://magnetic-ink.dk/pub/pads/\n* http://users.cybercity.dk/~ccc48268/\n
Curious about [[Scientology|http://www.xenu.net/]]?\n
[[שלום]] עכשיו\n\n[img[I stand together with Israel|beyachad.png][beyachad.png]]\n
a reusable non-linear semi-public web notebook
Nshima wiki
http://nshima.homepage.dk/\n
Please see [[sosudk.googlepages.com|http://sosudk.googlepages.com/]].\n
TiddlyWiki is the truly awesome software created by Jeremy Ruston to which this tiddler introduces you. You can find the TiddlyWiki home site at [[www.tiddlywiki.com|http://www.tiddlywiki.com/]].\n
Frække frølår med crème brûlée&hellip;\n\n<html><embed style="width:400px; height:326px;" id="VideoPlayback" type="application/x-shockwave-flash" src="http://video.google.com/googleplayer.swf?docId=605107711158061778"></embed></html>
The letter ''Z'' is the twenty-sixth and last letter in the [[Latin]] alphabet.\n
Zambia, officially the Republic of Zambia, is a landlocked country in southern Africa. It borders the Democratic Republic of the Congo to the north, Tanzania on the north-east, Malawi on the east, Mozambique, Zimbabwe, Botswana, and Namibia to the south, and Angola on the west. Formerly Northern Rhodesia, the country is named after the Zambezi river.
[[Shalom]]\n\n[img[ביחד עם ישראל|beyachad.png][beyachad.png]]\n