rel="logo"
8 days ago by Aetles
What is it?
rel="logo" is a proposed standard for serving and maintaining up-to-date logos for use in various media. By including a line of code on your site that links to a scalable vector logo, you make it very easy for other websites, applications, readers, clients, and stations to ensure that they are using an approved logo directly from you.
rel="logo" is a link relation tag, much like commonly used icon tags favicon or apple-touch-icon.
html
logotypes
logos
rel="logo" is a proposed standard for serving and maintaining up-to-date logos for use in various media. By including a line of code on your site that links to a scalable vector logo, you make it very easy for other websites, applications, readers, clients, and stations to ensure that they are using an approved logo directly from you.
rel="logo" is a link relation tag, much like commonly used icon tags favicon or apple-touch-icon.
8 days ago by Aetles
What Is QueryPath? | QueryPath.org
9 days ago by Aetles
QueryPath is a PHP library for manipulating XML and HTML. It is designed to work not only with local files, but also with web services and database resources. It implements much of the jQuery interface, but it is heavily tuned for server-side use.
html
php
library
parsing
9 days ago by Aetles
List.js - Add search, sort and flexibility to plain HTML lists with cross-browser native JavaScript by @javve
4 weeks ago by Aetles
Do you want a 3 KB cross-browser native JavaScript that makes your plain HTML lists super flexible, searchable, sortable and filterable? Yeah!
Do you also want the possibility to add, edit and remove items by dead simple templating? Hell yeah!
html
javascript
js
lists
Do you also want the possibility to add, edit and remove items by dead simple templating? Hell yeah!
4 weeks ago by Aetles
* { box-sizing: border-box } FTW « Paul Irish
february 2012 by Aetles
One of my least favorite parts about layout with CSS is the relationship of width and padding. You're busy defining widths to match your grid or general column proportions, then down the line you start to add in text, which necessitates defining padding for those boxes. And 'lo and behold, you now are subtracting pixels from your original width so the box doesn't expand.
Ugh. If I say the width is 200px, gosh darn it, it's gonna be a 200px wide box even if I have 20px of padding. So as you know, this is NOT how the box model has worked for the past ten years. Wikipedia has a great history of this box model.
Anyway, I have a recommendation for your CSS going forward:
/* apply a natural box layout model to all elements */
* { -moz-box-sizing: border-box; -webkit-box-sizing: border-box; box-sizing: border-box; }
This gives you the box model you want. Applies it to all elements. Turns out many browsers already use border-box for a lot of form elements (which is why inputs and textareas look diff at width:100%;) But applying this to all elements is safe and wise.
css
html
layout
webdesign
Ugh. If I say the width is 200px, gosh darn it, it's gonna be a 200px wide box even if I have 20px of padding. So as you know, this is NOT how the box model has worked for the past ten years. Wikipedia has a great history of this box model.
Anyway, I have a recommendation for your CSS going forward:
/* apply a natural box layout model to all elements */
* { -moz-box-sizing: border-box; -webkit-box-sizing: border-box; box-sizing: border-box; }
This gives you the box model you want. Applies it to all elements. Turns out many browsers already use border-box for a lot of form elements (which is why inputs and textareas look diff at width:100%;) But applying this to all elements is safe and wise.
february 2012 by Aetles
simplebits/Pears - GitHub
february 2012 by Aetles
Pears are common patterns of markup & style.
Pears is an open source WordPress theme. I'll admit the code
is a bit rough, initially based on the default 'twentyone' theme.
I wanted a handy way of collecting HTML & CSS pattern pairs.
Often used modules with a minimal of style applied. It's become
a valuable learning tool, whereby breaking interfaces down into
small pieces make it easier to learn and improve running code.
Learn more and see it in action here:
http://pea.rs
theme
ui
wordpress
html
css
Pears is an open source WordPress theme. I'll admit the code
is a bit rough, initially based on the default 'twentyone' theme.
I wanted a handy way of collecting HTML & CSS pattern pairs.
Often used modules with a minimal of style applied. It's become
a valuable learning tool, whereby breaking interfaces down into
small pieces make it easier to learn and improve running code.
Learn more and see it in action here:
http://pea.rs
february 2012 by Aetles
inessential.com: Things I Learned Doing Responsive Web Design
january 2012 by Aetles
I haven’t done serious web work — HTML web work, that is — since I last worked on Manila 10 years ago.
I’ve done some small things — the system that generates this blog, for instance — but I haven’t had the chance to use almost any of the newer web technology. I’ve never written a Rails app, used JQuery, or deployed to a virtual server.
So when I had the chance to re-do the websites for our company and main product, I was excited — because it meant I could try some of the new technologies and learn some things.
css
design
html
web
I’ve done some small things — the system that generates this blog, for instance — but I haven’t had the chance to use almost any of the newer web technology. I’ve never written a Rails app, used JQuery, or deployed to a virtual server.
So when I had the chance to re-do the websites for our company and main product, I was excited — because it meant I could try some of the new technologies and learn some things.
january 2012 by Aetles
Perfection kills » Profiling CSS for fun and profit. Optimization notes.
january 2012 by Aetles
I’ve been recently working on optimizing performance of a so-called one-page web app. The application was highly dynamic, interactive, and was heavily stuffed with new CSS3 goodness. I’m not talking just border-radius and gradients. It was a full stack of shadows, gradients, transforms, sprinkled with transitions, smooth half-transparent colors, clever pseudo-element -based CSS tricks, and experimental CSS features.
Aside from looking into bottlenecks on Javascript/DOM side, I decided to step into the CSS land. I wanted to see the kind of impact these nice UI elements have on performance. The old version of the app — the one without all the fluff — was much snappier, even though the JS logic behind it hasn’t changed all that drastically. I could see by scrolling and animations that things are just not as quick as they should be.
Was styling to blame?
Fortunately, just few days before, Opera folks came out with an experimental “style profiler” (followed by WebKit’s ticket+patch shortly after). The profiler was meant to reveal the performance of CSS selector matching, document reflow, repaint, and even document and css parsing times.
css
html
webdesign
optimization
Aside from looking into bottlenecks on Javascript/DOM side, I decided to step into the CSS land. I wanted to see the kind of impact these nice UI elements have on performance. The old version of the app — the one without all the fluff — was much snappier, even though the JS logic behind it hasn’t changed all that drastically. I could see by scrolling and animations that things are just not as quick as they should be.
Was styling to blame?
Fortunately, just few days before, Opera folks came out with an experimental “style profiler” (followed by WebKit’s ticket+patch shortly after). The profiler was meant to reveal the performance of CSS selector matching, document reflow, repaint, and even document and css parsing times.
january 2012 by Aetles
Writing forward-compatible websites - MDN
november 2011 by Aetles
This is a list of best practices for creating websites that do not break when browsers are updated. It's not always possible to follow all of these, but following as many of them as possible will help future-proof your website. This is especially important for intranet applications and other non-public websites where problems are likely to not be noticed during testing by browser vendors.
css
development
html
javascript
november 2011 by Aetles
Tempo :: The tiny JSON rendering engine by TwigKit
march 2011 by Aetles
Tempo is a tiny JSON rendering engine that enables you to craft data templates in pure HTML.
Why use Tempo?
Clear separation of concerns: no HTML in your JavaScript files
It makes AJAX content easier to work with
It's as friendly as a bunny rabbit (which are quite friendly)
Key Features
Works in Safari, Chrome, FireFox, Opera, and Internet Explorer 6+
Itty-bitty footprint, lightning-fast rendering!
No dependencies - Works with or without jQuery
Degrades gracefully if JavaScript is not enabled
Supports nested and conditional templates
html
javascript
jquery
json
Why use Tempo?
Clear separation of concerns: no HTML in your JavaScript files
It makes AJAX content easier to work with
It's as friendly as a bunny rabbit (which are quite friendly)
Key Features
Works in Safari, Chrome, FireFox, Opera, and Internet Explorer 6+
Itty-bitty footprint, lightning-fast rendering!
No dependencies - Works with or without jQuery
Degrades gracefully if JavaScript is not enabled
Supports nested and conditional templates
march 2011 by Aetles
SwitchToHTML5 - The HTML5 Framework Generator
february 2011 by Aetles
HTML5 is the new kid on the block, sure, and with reports that an official specification wont be fully completed and officially supported until 2022, you may be wondering why you should use it in your new site.
Well, there's one main reason (for me at least), and that is: The Future. The simple fact is that HTML4/XHTML1.0/CSS2 are outdated, and the new XHTML 2 standard has been scrapped in favor of HTML5. CSS3 is gaining more and more momentum every single day, the future of the web is HTML5.
development
framework
html
html5
Well, there's one main reason (for me at least), and that is: The Future. The simple fact is that HTML4/XHTML1.0/CSS2 are outdated, and the new XHTML 2 standard has been scrapped in favor of HTML5. CSS3 is gaining more and more momentum every single day, the future of the web is HTML5.
february 2011 by Aetles
W3Fools – A W3Schools Intervention
february 2011 by Aetles
We are passionate about the web, learning, and craftsmanship. We want you, as web designers and developers, to be successful in your careers. We feel, though, that W3Schools is harming the community with inaccurate information. Like any other authoritative educational resource, W3Schools should both hold itself to, and be held to, the highest standards.
We hope we can illuminate why W3Schools is a troublesome resource, why their faulty information is a detriment to the web, and what you (and they) can do about it.
css
html
javascript
We hope we can illuminate why W3Schools is a troublesome resource, why their faulty information is a detriment to the web, and what you (and they) can do about it.
february 2011 by Aetles
theoriginofthe<blink>tag (www)
may 2010 by Aetles
I am widely credited as the inventor of the <blink> tag. For those of you who are relatively new to the Web, the <blink> tag is an HTML command that causes text to blink, and many, many people find its behavior to be extremely annoying. I won't deny the invention, but there is a bit more to the story than is widely known.
html
may 2010 by Aetles
mezzoblue § Switched
april 2009 by Aetles
Within the last few months — though I’d been intending to do so for much longer than that — I made the decision to switch all my client work starting point templates from XHTML over to HTML 4.01 and start delivering everything as plain old semantic HTML, minus the X.
html
xhtml
html5
april 2009 by Aetles
Free HTML Form Builder - Create Forms, Surveys and Invitations
september 2007 by Aetles
En enkelt och smidigt sätt att bygga forumlär på nätet, går att koppla till paypal-betalning också.
html
forms
formulär
enkät
surveys
Webbutveckling
september 2007 by Aetles
Farbtastic: jQuery color picker plug-in | Steven Wittens - Acko.net
october 2006 by Aetles
En smart och bra färgväljare i javascript för webbsidor.
color
picker
javascript
färgväljare
jQuery
Webbutveckling
HTML
october 2006 by Aetles
Aharef: Websites as graphs
may 2006 by Aetles
En artikel om en funktion att representera en webbsajt som en grafiskt träd över HTML DOM:en, dvs tagg-strukturen.
html
dom
websites
graphs
grafik
webbsajter
Webbutveckling
Webben
may 2006 by Aetles
How To Code HTML Email Newsletters [HTML & XHTML Tutorials]
may 2006 by Aetles
Sitepoint om hur man kodar HTML-mejl på bästa sätt.
html
mejl
mail
e-post
Webbutveckling
may 2006 by Aetles
A List Apart: Articles: Community Creators, Secure Your Code!
april 2006 by Aetles
Artikel om hur säkerhetsproblem när man tillåter stil och anpassning i koden.
xss
cross
site
scripting
security
javascript
ajax
html
Säkerhet
april 2006 by Aetles
A Guide to CSS Support in Email | Articles/Tips - Campaign Monitor Blog
april 2006 by Aetles
En guide över vad som fungerar när det gäller CSS i HTML-mejl.
css
nyhetsbrev
html-mejl
html
mail
newsletter
Webbutveckling
april 2006 by Aetles
HTML_AJAX - PEAR Package for AJAX and PHP
february 2006 by Aetles
HTML_AJAX är ett PEAR package för att göra AJAX-operationer för PHP
pear
package
ajax
php
javascript
html
Webbutveckling
Programmering
february 2006 by Aetles
CSS - Specificity
october 2005 by Aetles
En artikel om hur "specificity" fungerar i CSS, dvs hur olika stilinformationen styr över det slutgiltiga utseendet.
HTML
Dog
css
Specificity
Webbutveckling
october 2005 by Aetles
Usable XMLHttpRequest in Practice
april 2005 by Aetles
Hur man jobbar med användarvänlighet (usability) för XMLHttpRequest i praktiken.
XMLHttpRequest
ajax
javascript
html
användarvänlighet
Baekdal.com
Webbutveckling
april 2005 by Aetles
The Early Bird Catches the CSS: Planning Structural HTML
april 2005 by Aetles
En guide för hur man jobbar med CSS på ett strukturerat sätt. Först tänker man struktur, sen layout. Tvärt emot hur man gjorde när man använde HTML för presentationen.
css
strukturerad
html
semantisk
semantic
structured
nybörjare
tabellllayout
Wise-Women
Tutorial
Webbutveckling
april 2005 by Aetles
Making Complex CSS Simple!
april 2005 by Aetles
En steg-för-steg-genomgång av hur man gör en sajtdesign med bra CSS- och HTML-kod. Många bra tips och idéer.
css
planering
struktur
genomgång
html
xhtml
leftjustified
Andrew
Krespanis
Webbutveckling
Javascript
april 2005 by Aetles
Proper Flash embedding: FlashObject Best Practices
april 2005 by Aetles
Hur man bäddar in FlashObjects, flash-filmer, på bästa sätt.
flash
css
html
object
deconcept
inbäddat
embedded
Webbutveckling
april 2005 by Aetles
SAJAX - Simple Ajax Toolkit by ModernMethod - XMLHTTPRequest Toolkit for PHP
march 2005 by Aetles
En toolkit för att använda Ajax (XMLHttpRequest mm) från PHP.
xmlhttprequest
ajax
sajax
php
apache
javascript
Webbutveckling
HTML
march 2005 by Aetles
Very Dynamic Web Interfaces
february 2005 by Aetles
En artikel hos XML.com om hur man använder XMLHttpRequest, men förklaringar och exempel.
XML.com
javascript
ajax
XMLHttpRequest
object
html
Webbutveckling
february 2005 by Aetles
as simple as possible, but no simpler: Mapping Google
february 2005 by Aetles
En dissektion av Google Maps som använder avancerad webbteknik för att leverera sitt resultat.
google
maps
suggest
ajax
javascript
iframe
Webbutveckling
HTML
february 2005 by Aetles
TinyMCE - Tiny Moxiecode Content Editor
february 2005 by Aetles
En mycket intressant WYSIWYG-editor i klass med FCKedit.
htmlarea
fckeditor
html
edit
redigera
WYSIWYG
Webbutveckling
Open
Source
Javascript
february 2005 by Aetles
Google Suggest
december 2004 by Aetles
En Slashdot-tråd om hur Google Suggest fungerar. Väldigt smart och innovativt!
google
suggest
javascript
html
webb
sökning
sökmotor
förslag
Webbutveckling
Aetles
december 2004 by Aetles
Quotations and citations: quoting text
december 2004 by Aetles
En bra sammanfattning av hur man citerar i HTML av Roger Johansson (456 Berea Street).
cite
blockqoute
quote
citat
citera
citationstecken
q
CSS
HTML
december 2004 by Aetles
Web Page Development: Best Practices
november 2004 by Aetles
En artikel från Apple om bästa sättet att utveckla webbsidor.
webbutveckling
best
practices
bäst
tillämpning
css
html
doctype
xhtml
november 2004 by Aetles
HTML 4.0 Entities for Symbols and Greek Letters
november 2004 by Aetles
En lista över vilka symboler (och grekiska bokstäver) som finns i HTML 4.0.
html
entities
symbols
november 2004 by Aetles
related tags
Aetles ⊕ ajax ⊕ Andrew ⊕ användarvänlighet ⊕ apache ⊕ Baekdal.com ⊕ best ⊕ blockqoute ⊕ bäst ⊕ citat ⊕ citationstecken ⊕ cite ⊕ citera ⊕ color ⊕ cross ⊕ css ⊕ css3 ⊕ deconcept ⊕ design ⊕ development ⊕ doctype ⊕ Dog ⊕ dom ⊕ e-post ⊕ edit ⊕ embedded ⊕ enkät ⊕ entities ⊕ fckeditor ⊕ flash ⊕ forms ⊕ formulär ⊕ framework ⊕ färgväljare ⊕ förslag ⊕ genomgång ⊕ google ⊕ grafik ⊕ graphs ⊕ html ⊖ html-mejl ⊕ html5 ⊕ htmlarea ⊕ iframe ⊕ inbäddat ⊕ javascript ⊕ jquery ⊕ js ⊕ json ⊕ Krespanis ⊕ layout ⊕ leftjustified ⊕ library ⊕ lists ⊕ logos ⊕ logotypes ⊕ mail ⊕ maps ⊕ mejl ⊕ newsletter ⊕ nybörjare ⊕ nyhetsbrev ⊕ object ⊕ Open ⊕ optimization ⊕ package ⊕ parsing ⊕ pear ⊕ php ⊕ picker ⊕ planering ⊕ practices ⊕ Programmering ⊕ q ⊕ quote ⊕ redigera ⊕ sajax ⊕ scripting ⊕ security ⊕ semantic ⊕ semantisk ⊕ site ⊕ Source ⊕ Specificity ⊕ structure ⊕ structured ⊕ struktur ⊕ strukturerad ⊕ suggest ⊕ surveys ⊕ symbols ⊕ Säkerhet ⊕ sökmotor ⊕ sökning ⊕ tabellllayout ⊕ theme ⊕ tillämpning ⊕ Tutorial ⊕ ui ⊕ web ⊕ webb ⊕ Webben ⊕ webbsajter ⊕ webbutveckling ⊕ webdesign ⊕ websites ⊕ Wise-Women ⊕ wordpress ⊕ WYSIWYG ⊕ xhtml ⊕ XML.com ⊕ xmlhttprequest ⊕ xss ⊕Copy this bookmark: