CSS for links which should override for this page but doesn’t because I should put it in the core css files and set the contents page with unique css tags to identify that they should have different CSS overriding the theme values.
a:link, a:active{color: red; text-decoration:underline; cursor:auto;}
So first of all a link:
Homepage
A link to a pdf (same jazz but lets pop one in here:
Poem in Your Pocket Day PDF – Academy of American Poets
Mail link
Send Email
Abbr Tag to explain abbreviations in text this helps search-engines and translation systems
The WWF changed to WWE due to the court case with the World Wide Fund for Nature.
Address tag is for article authors not postal contact details
Myself: Kate NicolsonWebsite: KateNicolson.com
Manchester
UK
This is a imagemap with clickable areas, I’m not going to do it properly but I can see how you would find the coordinates (coords) by checking the pixels of the area and mapping the rectangle (rect) or circle to allocate a clickable area, in this case snoopy.

Article tag is used to define something separately within the page as something journalistic, so a post, comment, story, etc.
This is the comment
Hello world, this is my HTML dust off.
I’ll nest the aside in here, it’s just a tag, but I can think if you mark up all your code with tags like these then it helps make CSS reusable and also makes it easier to read for other developers.
Ok, so I can’t add audio or video as I haven’t upgraded my account to have that kind of media. but it has its own audio tag and you just let it know the source and the file type and it will use a HTML5 player with basic controls.
This is some bold text. Unlike this text
All about the base! Ok so the base will give the standard URL beginning so if you have img refs, links, videos, etc you can just miss out the https://###.files.wordpress.com/ bit. Very cool, keeps code neat and trim, but also saves lots of hassle if you have to change your domain for any reason. But as I am working through the page editor and not with the file, this normally is popped in the head tag so … yup I can try that sometime.
BDI
إيان: Bi-Directional Isolation, for user inputted text that may be read in another direction, like right to left or top to bottom. You pop the tag around the text, I assume for the machine reading to know to approach it differently for things such as CSS text formatting, and I hope text-to-speech readers.
This text has the bdo tag which means it will read right to left.
Blockquote, Shakespeare’s Sonnet 130 (for some reason WP want’s to delete the cite.
My mistress, when she walks, treads on the ground:
And yet, by heaven, I think my love as rare
As any she belied with false compare.
Body and break are in the bag
This is a button
This is a disabled button JavaScript can be used to undo the disabled attribute
This button has value text This is so you can update the value from forms so you can hang conditions upon it
This button is called Bob This is so you can hook it to code like JavaScript or PHP etc
HTML5 Canvas! Has loads of capability to draw and animate and do all sorts of fun things. You can make WebGL or webGL2 or render some bitmaps.
For now I will just make a 2d blue rectangle (circles were a lil more work) with a radial fill. … but WordPress deletes my code … (so here is the code tag)
var c=document.getElementById("myCanvas");
var ctx=c.getContext("2d");
var my_gradient=ctx.createRadialGradient(75,50,5,90,60,100);
my_gradient.addColorStop(0,#00BFFF);
my_gradient.addColorStop(1,"white");
ctx.fillStyle=my_gradient;
ctx.fillRect(10,10,150,100);
Caption tag for tables
With column styling that probably should be all handled in CSS
(WP adds tbody tags, I assume this is for styling)
| table heading 1 | table heading 2 |
|---|---|
| table date under heading 1 | and the other cell |
This is a list of data, as I’ll have to do lists later, and it was in the data example. So it gives each name a value that is machine readable, like a key-value-pair.
- Lucky Number Slevin
- Fifth Element
- Last Man Standing
