Link
HTML5 Structure Template»
HTML5 Reset is a simple set of best practices to get web projects off on the right foot.
- A style sheet designed to strip initial files from browsers, meaning you start off with a blank slate.
- Easy to customize — remove whatever you don’t need, keep what you do.
- Analytics and jQuery snippets in place
- Meta tags ready for population
- Empty mobile and print style sheets, including blocks for device orientation
- Modernizr.js http://www.modernizr.com/ enables HTML5 compatibility with IE (and a dozen other great features)
- IE-specific classes for simple CSS-targeting
- iPhone/iPad/iTouch icon snippets
- Lots of other keen stuff…
via KLoning Spoon.
Text
dataanxiety asked: You have amazing links on Twitter! Wow! One great CSS or JS reference or other link after another! This isn't a question, just praise! I am @EllieAsksWhy on Twitter. You are a great resource!
thx very kind from you
Text
How to show your twitter timeline in a “diferent” way
First of all you go to the twitter widget page and grab the code to show your timeline.
Make a <div> and place the code inside:
<div id="timeline"> code generated by twitter </div>
We need to set some css styles for it:
#timeline{
display:none;
position:absolute;
left:50%;
top:20%;
border-style: solid;
background-color: white;
padding: 8px;
}
Text
Safari 5 tricks HTML5
Safari 5 does not have native support for <video> and <audio> tags. You have to install quicktime to watch a video from a <video> HTML5 tag.
Text
Apple’s Three Laws of Developers
- A developer may not injure Apple or, through inaction, allow Apple to come to harm.
- A developer must obey any orders given to it by Apple, except where such orders would conflict with the First Law.
- A developer must protect its own existence as long as such protection does not conflict with the First or Second Law.
— I. Developer
via isaiah’s web log.



