<?xml version="1.0" encoding="utf-8"?>
<rss version="2.0" xml:base="http://abduzeedo.com"  xmlns:dc="http://purl.org/dc/elements/1.1/">
<channel>
 <title>Daan&#039;s blog</title>
 <link>http://abduzeedo.com/blog/182</link>
 <description></description>
 <language>en</language>
<item>
 <title>CSS Quick Tricks #1 - Where to put your CSS</title>
 <link>http://abduzeedo.com/css-quick-tricks-1-where-put-your-css</link>
 <description>&lt;p&gt;Apart from the awesome design you get fed with here, it is time to start a new series! &lt;strong&gt;CSS Quick Tricks&lt;/strong&gt;!&lt;br /&gt;
To be honest, I didn&#039;t really know where to start, so I thought I&#039;d start at something simple, and then, as we move on, we get in to more advanced topics on CSS.&lt;br /&gt;
For this quick trick, I&#039;m going to teach you where you can place your CSS, the most efficient way.&lt;/p&gt;
&lt;!--break--&gt;&lt;!--break--&gt;&lt;h2&gt;Where to place your CSS&lt;/h2&gt;
&lt;p&gt;In CSS, there are different ways to put it in function; Inline, Internal (or &quot;Embedded&quot;) and External.&lt;br /&gt;
You&#039;ve probably used them all, at least one time.&lt;/p&gt;
&lt;h3&gt;What&#039;s the difference?&lt;/h3&gt;
&lt;p&gt;How can this question better be answered than with some pieces of code?&lt;/p&gt;
&lt;p&gt;With an &lt;strong&gt;external stylesheet&lt;/strong&gt;, you create &lt;strong&gt;a link&lt;/strong&gt; to a stylesheet. This is by far the most efficient way when you have multiple pages, running on 1 CSS file.&lt;br /&gt;
To do this, in the head section of your html document, place this line of code:&lt;/p&gt;
&lt;pre&gt;&amp;lt;link rel=&quot;stylesheet&quot; type=&quot;text/css&quot; link=&quot;directory/file.css&quot; /&gt;&lt;/pre&gt;&lt;p&gt;
As you can see, we&#039;ve literally created a link to a stylesheet, that is not located in the HTML, or in other words; Is external.&lt;/p&gt;
&lt;p&gt;With an &lt;strong&gt;internal stylesheet&lt;/strong&gt;, you place the whole stylesheet inside the HTML. This is again done inside the &lt;strong&gt;head tag&lt;/strong&gt;, but in a different way.&lt;br /&gt;
The reason you might want to put styles inside your HTML, may be, because one page in particular may need some seperate styling, which can cause problems on other pages, or if you just don&#039;t want to increase the file size of your CSS document.&lt;br /&gt;
The right way to place a style(sheet) internally is:&lt;/p&gt;
&lt;pre&gt;&amp;lt;style rel=&amp;quot;stylesheet&amp;quot;&gt;
* { margin: 0px; padding: 0px; }
&amp;lt;/style&gt;&lt;/pre&gt;
&lt;p&gt;Left over is the &lt;strong&gt;inline&lt;/strong&gt; way, the reason you use this may be, that just a certain element needs f.e. a red color. However, take my advice; When styling a page, &lt;strong&gt;do NOT&lt;/strong&gt; use this to style your whole page, but just for the little pieces that you couldn&#039;t be bothered about in your stylesheet.&lt;br /&gt;
The way you use this way of CSS styling (some may not even call it CSS) is as follows:&lt;/p&gt;
&lt;pre&gt;&amp;lt;div style=&amp;quot;background-color: #fff;&amp;quot;&gt;&lt;/pre&gt;&lt;p&gt;NOTE: This is just an example. Every CSS selector in here, and you can use it with every HTML element.&lt;/p&gt;
&lt;h3&gt;But what way, is the best way?&lt;/h3&gt;
&lt;p&gt;Well, there&#039;s no real answer to this question, because it depends on the way you are going to use it. But when you want to use CSS most efficiently, I suggest using the followng &lt;strong&gt;guidelines&lt;/strong&gt;:&lt;/p&gt;
&lt;p&gt;If you are going to style multiple pages with one stylesheet, &lt;strong&gt;use the external way&lt;/strong&gt;, and you may even want to use this way on a single page.&lt;br /&gt;
This may prevent having issues, when the website needs a style update, or some little tweaking.&lt;/p&gt;
&lt;p&gt;If you just need to style a few elements that were left out on the original stylesheet, for whatever reason, use the &lt;strong&gt;embedded way&lt;/strong&gt;. Like this, you won&#039;t increase the total file size of other pages not needing the additional styling, and thus decrease loading time for other pages.&lt;/p&gt;
&lt;p&gt;If you just need to style a &lt;strong&gt;single&lt;/strong&gt; paragraph tag (or something similar), that neither external nor embedded stylesheets are worth mentioning, use the &lt;strong&gt;inline way&lt;/strong&gt;.&lt;br /&gt;
And again, take my advice, do NOT use this to style whole pages, it will give a lot of unnecessary code, and when updating/tweaking a page, you will be busy for ages.&lt;/p&gt;
&lt;h3&gt;Conclusion&lt;/h3&gt;
&lt;p&gt;I hope you liked this first one in the new series, so I can do many more!&lt;br /&gt;
Also, suggestions or questions are always welcome, so I have some inspiration to write about.&lt;br /&gt;
&lt;strong&gt;Thanks!&lt;/strong&gt;&lt;/p&gt;
&lt;div class=&quot;nodeauthor-info&quot;&gt;&lt;h2 class=&quot;title&quot;&gt;About the author&lt;/h2&gt;&lt;div class=&quot;content&quot;&gt;&lt;div class=&quot;desc&quot;&gt;&lt;p&gt;Hey There! I´m Daan Weijers, I come from Eindhoven, The Netherlands.&lt;br /&gt;
I enjoy design and drawing very much, also, I play guitar, play soccer and hang out with friends.&lt;br /&gt;
Please don&#039;t be mad if you miss my posts, but it&#039;s mainly due to a personal project, called &lt;a href=&quot;http://www.ipaperr.com&quot; title=&quot;iPaperr Link&quot;&gt;iPaperr&lt;/a&gt;&lt;/p&gt;
&lt;/div&gt;&lt;div class=&quot;clear&quot;&gt;&lt;/div&gt;&lt;/div&gt;&lt;h4&gt;Sponsored Links:&lt;/h4&gt;&lt;div class=&#039;author_banner&#039;&gt;&lt;/div&gt;&lt;/div&gt;&lt;!--b1229df49e254d558b48cf6a7d7b099a--&gt;
&lt;a href=&quot;http://book.abduzeedo.com/&quot;&gt;&lt;img src=&quot;http://imgs.abduzeedo.com/files/misc/abdz-book-banner.jpg&quot; alt=&quot;Abduzeedo Inspiration Guide for Designers at Amazon&quot; border=&quot;0&quot; /&gt;&lt;/a&gt;&lt;br/&gt;</description>
 <comments>http://abduzeedo.com/css-quick-tricks-1-where-put-your-css#comments</comments>
 <category domain="http://abduzeedo.com/tags/css">css</category>
 <category domain="http://abduzeedo.com/tags/html">html</category>
 <category domain="http://abduzeedo.com/tags/tricks">tricks</category>
 <category domain="http://abduzeedo.com/tutorials">tutorial</category>
 <category domain="http://abduzeedo.com/tags/web-0">web</category>
 <pubDate>Sun, 22 Feb 2009 22:24:29 +0000</pubDate>
 <dc:creator>Daan</dc:creator>
 <guid isPermaLink="false">3700 at http://abduzeedo.com</guid>
</item>
<item>
 <title>Inspiration: Dutch Design Week Eindhoven</title>
 <link>http://abduzeedo.com/inspiration-dutch-design-week-eindhoven</link>
 <description>&lt;h3&gt;Once again it was time for my favourite 2 weeks of the year! It has a few reasons; My birthday, a week off from school, and most importantly for this post: The Dutch Design Week Eindhoven!&lt;br /&gt;
I have still not figured out why they call it &quot;Dutch&quot;, as it is only in my city, but I love it! This post will feature some pictures of the graduates from the &lt;a href=&quot;http://www.designacademy.nl&quot; title=&quot;Design Academy Eindhoven&quot;&gt;Design Academy Eindhoven&lt;/a&gt;.&lt;/h3&gt;
&lt;!--break--&gt;&lt;!--break--&gt;&lt;!--break--&gt;&lt;!--break--&gt;&lt;p class=&quot;imgC&quot;&gt;&lt;img src=&quot;/files/u182/ddw11__1_.jpg&quot; width=&quot;580&quot; height=&quot;580&quot; alt=&quot;DDW Ad&quot; /&gt;&lt;br /&gt;
I thought it&#039;d be fun to start with the advertisement for the DDW. It was placed all over town, and I find it very creative, yet simple. If you look closer into the logo, you can see the first 2 petals of the flower are &quot;D&quot;s and all 3 petals form a &quot;W&quot;.&lt;/p&gt;
&lt;!--break--&gt;&lt;!--break--&gt;&lt;p class=&quot;imgC&quot;&gt;&lt;img src=&quot;/files/u182/ddw1.jpg&quot; width=&quot;580&quot; height=&quot;580&quot; alt=&quot;DDW Power Of Design&quot; /&gt;&lt;/p&gt;
&lt;p&gt;&quot;Power Of Design!&quot; or should I call it &quot;design electricity&quot;?&lt;br /&gt;
Anyway, the concept of this product was to show people how much electricity devices use when they&#039;re on standby mode, as shown with the red lights, 1 part of the circle was coloured when the light was on standby, when fully powered, it showed 3 coloured parts! (it only shows 2 here, it was dimmed)&lt;br /&gt;
It also has a big green button, which I like, to turn everything off!&lt;/p&gt;
&lt;!--break--&gt;&lt;!--break--&gt;&lt;p class=&quot;imgC&quot;&gt;&lt;img src=&quot;/files/u182/ddw3.jpg&quot; width=&quot;580&quot; height=&quot;580&quot; alt=&quot;DDW Step/Bicycle&quot; /&gt;&lt;/p&gt;
&lt;p&gt;Another idea I really liked, as you can see it&#039;s an step, however, when you apply the two parts laying next to it, and reposition the foot-part. You have a small bicycle!&lt;/p&gt;
&lt;!--break--&gt;&lt;!--break--&gt;&lt;p class=&quot;imgC&quot;&gt;&lt;img src=&quot;/files/u182/ddw4.jpg&quot; width=&quot;580&quot; height=&quot;580&quot; alt=&quot;DDW Paper Holders&quot; /&gt;&lt;/p&gt;
&lt;p&gt;I thought this one would be cool for us designers (referring to the business cards + sketch holders).&lt;br /&gt;
These are some things to hold up, and organise things like business cards, sketches, brochures, etc. I thought it&#039;d be a nice way to present stuff like this to clients :)&lt;/p&gt;
&lt;!--break--&gt;&lt;!--break--&gt;&lt;p class=&quot;imgC&quot;&gt;&lt;img src=&quot;/files/u182/ddw5.jpg&quot; width=&quot;580&quot; height=&quot;580&quot; alt=&quot;DDW Mud Powered&quot; /&gt;&lt;/p&gt;
&lt;p&gt;I thought this would be a good one for our &quot;eco-friendly&quot; world, these are electrical things, running on MUD. Yeah, mud, the little organisms in the mud would be able to light some LED lights, and even a little alarm-clock!&lt;/p&gt;
&lt;!--break--&gt;&lt;!--break--&gt;&lt;p class=&quot;imgC&quot;&gt;&lt;img src=&quot;/files/u182/ddw6.jpg&quot; width=&quot;580&quot; height=&quot;580&quot; alt=&quot;DDW Marble Table&quot; /&gt;&lt;/p&gt;
&lt;p&gt;I liked the idea of this one as well, a regular table, with some grapples and holes in it for kids to play with marbles.&lt;br /&gt;
What a hell lot of work must have been in this one!&lt;/p&gt;
&lt;!--break--&gt;&lt;!--break--&gt;&lt;p class=&quot;imgC&quot;&gt;&lt;img src=&quot;/files/u182/ddw7.jpg&quot; width=&quot;580&quot; height=&quot;580&quot; alt=&quot;DDW Wooden Skeleton&quot; /&gt;&lt;/p&gt;
&lt;p&gt;I thought this one was really cool! When buying this, you are able to rebuilt a skeleton of some cool animal like a snake, an eagle, a beaver or something else, in wood! Also, when placed in the right light, it looks really great!&lt;/p&gt;
&lt;!--break--&gt;&lt;!--break--&gt;&lt;p class=&quot;imgC&quot;&gt;&lt;img src=&quot;/files/u182/ddw8.jpg&quot; width=&quot;580&quot; height=&quot;580&quot; alt=&quot;DDW Numerical Me&quot; /&gt;&lt;/p&gt;
&lt;p&gt;&quot;Numerical Me&quot; the creator called it when she explained it to us, &quot;This is how society has made me&quot;.&lt;br /&gt;
The idea behind this poster, is the creator, but in a way of numbers, birth date, social security number, credit card, etc.&lt;br /&gt;
I thought it was very special to have one of these made with your own data.&lt;/p&gt;
&lt;!--break--&gt;&lt;!--break--&gt;&lt;h3&gt;Conclusion:&lt;/h3&gt;
&lt;p&gt;I really enjoyed these 2 weeks, and I hope you could enjoy a little bit with this post.&lt;br /&gt;
&lt;a href=&quot;http://designacademy.nl&quot; title=&quot;Design Academy Eindhoven&quot;&gt;Click here&lt;/a&gt; if you want to know more about the Design Academy Eindhoven.&lt;br /&gt;
&lt;a href=&quot;http://www.dutchdesignweek.nl/index.php?lang=en&amp;amp;PHPSESSID=48061dbe69d7c6b03bb89e5b2ceb5415&quot; title=&quot;DDW Website&quot;&gt;Click here&lt;/a&gt; for the DDW website.&lt;/p&gt;
&lt;p&gt;Cheers!&lt;/p&gt;
&lt;div class=&quot;nodeauthor-info&quot;&gt;&lt;h2 class=&quot;title&quot;&gt;About the author&lt;/h2&gt;&lt;div class=&quot;content&quot;&gt;&lt;div class=&quot;desc&quot;&gt;&lt;p&gt;Hey There! I´m Daan Weijers, I come from Eindhoven, The Netherlands.&lt;br /&gt;
I enjoy design and drawing very much, also, I play guitar, play soccer and hang out with friends.&lt;br /&gt;
Please don&#039;t be mad if you miss my posts, but it&#039;s mainly due to a personal project, called &lt;a href=&quot;http://www.ipaperr.com&quot; title=&quot;iPaperr Link&quot;&gt;iPaperr&lt;/a&gt;&lt;/p&gt;
&lt;/div&gt;&lt;div class=&quot;clear&quot;&gt;&lt;/div&gt;&lt;/div&gt;&lt;h4&gt;Sponsored Links:&lt;/h4&gt;&lt;div class=&#039;author_banner&#039;&gt;&lt;/div&gt;&lt;/div&gt;&lt;!--b1229df49e254d558b48cf6a7d7b099a--&gt;
&lt;a href=&quot;http://book.abduzeedo.com/&quot;&gt;&lt;img src=&quot;http://imgs.abduzeedo.com/files/misc/abdz-book-banner.jpg&quot; alt=&quot;Abduzeedo Inspiration Guide for Designers at Amazon&quot; border=&quot;0&quot; /&gt;&lt;/a&gt;&lt;br/&gt;</description>
 <comments>http://abduzeedo.com/inspiration-dutch-design-week-eindhoven#comments</comments>
 <category domain="http://abduzeedo.com/tags/design">design</category>
 <category domain="http://abduzeedo.com/tags/dutch-design-week">dutch design week</category>
 <category domain="http://abduzeedo.com/tags/inspiration">inspiration</category>
 <pubDate>Sun, 26 Oct 2008 19:30:27 +0000</pubDate>
 <dc:creator>Daan</dc:creator>
 <guid isPermaLink="false">1090 at http://abduzeedo.com</guid>
</item>
<item>
 <title>Video Inspiration: Vancouver Film School</title>
 <link>http://abduzeedo.com/video-inspiration-vancouver-film-school</link>
 <description>&lt;h3&gt;Vancouver Film School, is exactly what its name tells you, a Film School in Vancouver, Canada. The students, and the school itself make very cool videos, which I&#039;d like to share. Enjoy!&lt;/h3&gt;
&lt;p&gt;The first movie is about a penguin and a wishingwell:&lt;/p&gt;
&lt;p class=&quot;imgC&quot;&gt;
&lt;object width=&quot;425&quot; height=&quot;344&quot;&gt;&lt;param name=&quot;movie&quot; value=&quot;http://www.youtube.com/v/aZB0no_RCMs&amp;hl=en&amp;fs=1&quot; /&gt;&lt;param name=&quot;allowFullScreen&quot; value=&quot;true&quot; /&gt;&lt;embed src=&quot;http://www.youtube.com/v/aZB0no_RCMs&amp;hl=en&amp;fs=1&quot; type=&quot;application/x-shockwave-flash&quot; allowfullscreen=&quot;true&quot; width=&quot;425&quot; height=&quot;344&quot;&gt;&lt;/embed&gt;&lt;/object&gt;&lt;/p&gt;&lt;p&gt;&lt;strong&gt;By Josephine Gutianjo&lt;/strong&gt;&lt;/p&gt;
&lt;p&gt;The second movie is about 2 creatures, 1 trying to cheer the other one up.&lt;/p&gt;
&lt;p class=&quot;imgC&quot;&gt;
&lt;object width=&quot;425&quot; height=&quot;344&quot;&gt;&lt;param name=&quot;movie&quot; value=&quot;http://www.youtube.com/v/XLvDz1zkNXo&amp;hl=en&amp;fs=1&quot; /&gt;&lt;param name=&quot;allowFullScreen&quot; value=&quot;true&quot; /&gt;&lt;embed src=&quot;http://www.youtube.com/v/XLvDz1zkNXo&amp;hl=en&amp;fs=1&quot; type=&quot;application/x-shockwave-flash&quot; allowfullscreen=&quot;true&quot; width=&quot;425&quot; height=&quot;344&quot;&gt;&lt;/embed&gt;&lt;/object&gt;&lt;/p&gt;&lt;p&gt;&lt;strong&gt;By Michael Lewick&lt;/strong&gt;i&lt;/p&gt;
&lt;p class=&quot;imgC&quot;&gt;
&lt;object width=&quot;425&quot; height=&quot;344&quot;&gt;&lt;param name=&quot;movie&quot; value=&quot;http://www.youtube.com/v/uN6-wo-yC0A&amp;hl=en&amp;fs=1&quot; /&gt;&lt;param name=&quot;allowFullScreen&quot; value=&quot;true&quot; /&gt;&lt;embed src=&quot;http://www.youtube.com/v/uN6-wo-yC0A&amp;hl=en&amp;fs=1&quot; type=&quot;application/x-shockwave-flash&quot; allowfullscreen=&quot;true&quot; width=&quot;425&quot; height=&quot;344&quot;&gt;&lt;/embed&gt;&lt;/object&gt;&lt;/p&gt;&lt;p&gt;&lt;strong&gt;By Mauricio Bartok Ruiz&lt;/strong&gt;&lt;/p&gt;
&lt;p&gt;Besides fun movies, there are movies on serious subjects and matters as well.&lt;/p&gt;
&lt;p&gt;A movie about the Space Station &#039;The Voyager&#039;&lt;/p&gt;
&lt;p class=&quot;imgC&quot;&gt;
&lt;object width=&quot;425&quot; height=&quot;344&quot;&gt;&lt;param name=&quot;movie&quot; value=&quot;http://www.youtube.com/v/UZKtHV8wFts&amp;hl=en&amp;fs=1&quot; /&gt;&lt;param name=&quot;allowFullScreen&quot; value=&quot;true&quot; /&gt;&lt;embed src=&quot;http://www.youtube.com/v/UZKtHV8wFts&amp;hl=en&amp;fs=1&quot; type=&quot;application/x-shockwave-flash&quot; allowfullscreen=&quot;true&quot; width=&quot;425&quot; height=&quot;344&quot;&gt;&lt;/embed&gt;&lt;/object&gt;&lt;/p&gt;&lt;p&gt;&lt;strong&gt;By Leo Aguiar, Jaime Arvizu and Tyler Lemermeyer&lt;/strong&gt;&lt;/p&gt;
&lt;p class=&quot;imgC&quot;&gt;
&lt;object width=&quot;425&quot; height=&quot;344&quot;&gt;&lt;param name=&quot;movie&quot; value=&quot;http://www.youtube.com/v/gT3tJZv0sSA&amp;hl=en&amp;fs=1&quot; /&gt;&lt;param name=&quot;allowFullScreen&quot; value=&quot;true&quot; /&gt;&lt;embed src=&quot;http://www.youtube.com/v/gT3tJZv0sSA&amp;hl=en&amp;fs=1&quot; type=&quot;application/x-shockwave-flash&quot; allowfullscreen=&quot;true&quot; width=&quot;425&quot; height=&quot;344&quot;&gt;&lt;/embed&gt;&lt;/object&gt;&lt;/p&gt;&lt;p&gt;&lt;strong&gt;By Dongkun Yoo&lt;/strong&gt;n&lt;/p&gt;
&lt;p&gt;I know I only put up animated movies, but that&#039;s because I enjoyed these most.&lt;/p&gt;
&lt;p&gt;If you want to have more on this, you can visit &lt;a href=&quot;http://www.vfs.com/?campaign=youtube&amp;amp;size=875x75&quot; title=&quot;Vancouver Film School&quot;&gt;the official VFS website&lt;/a&gt; or visit &lt;a href=&quot;http://www.youtube.com/profile?user=VancouverFilmSchool&quot; title=&quot;VFS Youtube Channel&quot;&gt;The VFS Youtube Channel&lt;/a&gt;.&lt;/p&gt;
&lt;h3&gt;I hope you enjoyed this post!&lt;br /&gt;
Daan.&lt;/h3&gt;
&lt;div class=&quot;nodeauthor-info&quot;&gt;&lt;h2 class=&quot;title&quot;&gt;About the author&lt;/h2&gt;&lt;div class=&quot;content&quot;&gt;&lt;div class=&quot;desc&quot;&gt;&lt;p&gt;Hey There! I´m Daan Weijers, I come from Eindhoven, The Netherlands.&lt;br /&gt;
I enjoy design and drawing very much, also, I play guitar, play soccer and hang out with friends.&lt;br /&gt;
Please don&#039;t be mad if you miss my posts, but it&#039;s mainly due to a personal project, called &lt;a href=&quot;http://www.ipaperr.com&quot; title=&quot;iPaperr Link&quot;&gt;iPaperr&lt;/a&gt;&lt;/p&gt;
&lt;/div&gt;&lt;div class=&quot;clear&quot;&gt;&lt;/div&gt;&lt;/div&gt;&lt;h4&gt;Sponsored Links:&lt;/h4&gt;&lt;div class=&#039;author_banner&#039;&gt;&lt;/div&gt;&lt;/div&gt;&lt;!--b1229df49e254d558b48cf6a7d7b099a--&gt;
&lt;a href=&quot;http://book.abduzeedo.com/&quot;&gt;&lt;img src=&quot;http://imgs.abduzeedo.com/files/misc/abdz-book-banner.jpg&quot; alt=&quot;Abduzeedo Inspiration Guide for Designers at Amazon&quot; border=&quot;0&quot; /&gt;&lt;/a&gt;&lt;br/&gt;</description>
 <comments>http://abduzeedo.com/video-inspiration-vancouver-film-school#comments</comments>
 <category domain="http://abduzeedo.com/tags/animation">animation</category>
 <category domain="http://abduzeedo.com/tags/inspiration">inspiration</category>
 <category domain="http://abduzeedo.com/tags/short-film">short film</category>
 <category domain="http://abduzeedo.com/tags/video">video</category>
 <pubDate>Wed, 20 Aug 2008 13:48:09 +0000</pubDate>
 <dc:creator>Daan</dc:creator>
 <guid isPermaLink="false">586 at http://abduzeedo.com</guid>
</item>
</channel>
</rss>


