Today I added the Robots <META> tag with noindex, nofollow to my HTML error documents.
Tag Archives: HTML
QuirkTools Screenfly
Found out about this handy utility the other day: ScreenFly.
It allows you to test your website on various device form-factors. Handy!
Round corners with CSS
Today I had to look up the CSS syntax for curved corners and I found this article which suggested:
#example1 { -moz-border-radius: 15px; border-radius: 15px; }
Align an HTML table in the center of the page
Today I found this discussion which showed how to align a table in the center of the page in HTML:
table { width: 50%; margin-left: auto; margin-right: auto; }
or:
table { width: 200px; margin-left: auto; margin-right: auto; }
Make Your Content Editable with Medium.js
I read about this today: Make Your Content Editable with Medium.js.
HTML meta refresh
Used good old meta refresh for a project today. :)
Kick-starting a responsive design from a template
I got a referral from Stuart Laughlin to initializr which is a handy HTML/CSS/JavaScript template generator. Stuart’s recommendation was to use the Twitter Bootstrap template.
HTML <select> multiple Attribute
Was experimenting with the HTML <select> multiple Attribute today.
HTML/CSS hexadecimal colour codes
Found a few handy web pages that help pick HTML/CSS colours. Hex Hub and Hexadecimal Color Codes.
CSS overflow Property
I used the CSS overflow Property today and set it to ‘auto’ so that my code fit on the screen.
pre { overflow: auto; }