MD5
Ebenfalls super in dem Zusammenhang für die Flash Freunde:
http://board.flashkit.com/board/showthread.php?t=660511
Ebenfalls super in dem Zusammenhang für die Flash Freunde:
http://board.flashkit.com/board/showthread.php?t=660511
<!DOCTYPE html PUBLIC “-//W3C//DTD XHTML 1.0 Transitional//EN” “http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd”>
<html xmlns=”http://www.w3.org/1999/xhtml”>
<head>
<style type=”text/css”>
div { border: 1px solid #f00; }
body { text-align:center; }
#container { background:#ddd; width:600px; text-align:left; margin:0 auto; }
#navi_oben { height:200px; background:#0f0; }
#main_left { background:#333; width: 200px; height:800px; float:left; }
#main_right { background:#aaa; width: 200px; height:400px; margin-left:250px; }
#footer { clear:both; background:#f0f; height:20px; }
</style>
</head>
<body>
<div id=”container”>
<div id=”navi_oben”></div>
<div id=”main_left”></div>
<div id=”main_right”></div>
<div id=”footer”></div>
</div>
</body>
</html>
————–
A great periodic table – just as you always wanted. Das Periodensystem so wie man es immer wollte.
Nine ways to obfuscate e-mail addresses compared
Neun Arten der E-Mail Adressverschlüsselung verglichen.
A site full of nice Vectortuts. Many of them don’t look like »normal Vectorgraphics«.Eine Seite mit Vektorgrafiktutorials. Wobei viele sich angenehmm von der breiten Masse abheben.
Der Textorizer passt ja hervorragend zum letzten Posting. Bilder mit vordefinierten Worten nachzeichnen lassen. Sehr nettes Tool.The Textorizer.
Eine gigantischeAuswahl freier Brushes für Photshop.A huge collection of Photoshop Brushes.

A collection of open source shopping carts.Eine Auswahl von Open-Source-Lösungen für Webshops.
An overview of web-galleries:Eine Übersicht Webgalerien:
http://www.vivalogo.com/vl-resources/beautiful-javascript-flash-galleries.htm
An overview of Color-Tools:Eine Übersicht von Internetfarbwerkzeugen:
http://www.avivadirectory.com/color/
Danke an Thomas für diese Übersicht von Hausschriften:Thx! to Thomas for this collection of corporate fonts:
Web 2.0 is us – again. The Favicon Tool in tpyical Web 2.0 look ist just what we (webdesigners) all wanted.
Stylized Web hat die wichtigsten sinnvollen CSS Hacks und gute WordPress-Tips
1. Formulare ohne Tabellen
<form>
<label for=”name”>Name</label>
<input id=”name” name=”name”><br>
<label for=”plz”>PLZ</label>
<input id=”plz” name=”plz”><br>
<label for=”stadt”>Stadt</label>
<input id=”stadt” name=”stadt”><br>
</form>
label, input {
display: block;
width: 500px;
float: left;
margin-bottom: 2em;
}
label {
text-align: right;
width: 200px;
padding-right: 20px;
}
br {
clear: left;
}
Fun with forms:
http://www.picment.com/articles/css/funwithforms/