Posts Tagged ‘beautiful’
27+ Beautiful Examples of Infographics
|
Infographics refers to visual representations of information, data or knowledge. These graphics are used where complex information needs to be explained quickly and clearly, such as in signs, maps, journalism, technical writing, and education. They are also used extensively as tools by computer scientists, mathematicians, and statisticians to ease the process of developing and communicating conceptual information. Infographics allows you to see the and understand the concept in a more interesting and useful manner, Here I’ve listed 27+ beautiful infographic design, that will help and inspire you to design a complex data in to a simple attractive design. 1.) The Largest Bankruptcies in History2.) Housing & Poverty3.) Crisis Of Credit 14.) Crisis Of Credit 25.) The Great Pacific Garbage6.) On Words Concordance7.) infoGraphic On Driving8.) Show do Milhao9.) Seeking Refuge10.) Michael Anderson Resume11.) Biking to Work |
15 Beautiful Free Web 2.0 Fonts
|
The term Web 2.0 refers to the second generation of web development incorporating websites designed to encourage sharing and collaboration between users, like social networking sites (e.g. Facebook), video sharing sites (e.g. Youtube), wikis (e.g. Wikipedia) and blogs (e.g. this one). Of course, Web 2.0 sites are not only accessed through desktop computers with large displays. They are increasingly being viewed on portable web-ready devices, from mobile phones to netbooks and car dashboards, not to mention on TVs and through a plethora of video game consoles. The best Web 2.0 fonts, therefore, must look great at a range of scales regardless of what device is being used. Web 2.0 sites aim to encourage participation and Web 2.0 fonts must do the same. In addition to being highly legible, the best are inclusive and accessible to all. They are cool, original and striking, but not to the extent that they are only appreciated by certain groups with specific aesthetic sensibilities. Here are 15 great ones to download and start using in your designs! 1. CorpulentCorpulent is a simple font that looks at its best in uppercase. 2. Airstrip FourAirstrip Four combines straight and curved edges to great effect. 3. AutomaticaThis is a stylish, somewhat squat, sans serif font. 4. RezlandRezland is a really cool, curvy font. Unfortunately, it’s only available in lower case. 5. Ubuntu TitleUbuntu Title takes up little horizontal space, so it perfect for inserting into tight spots. 6. TuffyTuffy looks friendly and playful, but not at the expense of clarity. 7. PhotonicaPhotonica is a futuristic-looking seriffed font that looks even better when italicised. 8. ModernaModerna’s rounded letters are really well balanced and very attractive. 9. AristaArista is also available in ‘light’ and ‘extra filled’. The ‘light’ version looks fantastic when viewed on a small screen (such as on a mobile phone). The ‘extra filled’, on the other hand, is practically illegible. 10. BohemicaBohemica is an interesting looking font that retains legibility, despite its disjointed structure. |
























Making Your Code as Beautiful as the Design Itself
Regular people can’t see code, nor do they care to see it or what it looks like. It’s precisely this reason that there’s so much ugly code in the web world today. People don’t see it so developers don’t believe that clean code is important, but it is.
It’s quite rare to find a clean coded site, even from huge companies who should have the budget to pay for a good developer. However, it’s just as important to have beautiful code as it is to have a beautiful design.
Why Should It Matter?
Most of the time, messy code works just as well as clean code. So why should it matter if it’s pretty or not?
Beautify Your CSS
There are several ways that I’ll show you how to organize your CSS. Of course, beauty is in the eye of the beholder, so you may not find that what works for me, works for you. Experiment with a few different ways you can organize your code to find what works for you.
div {background: #FFF;
font-style: italic;
font-size: 18px;
margin: 20px;
padding: 10px;
font-weight: bold;
}
Try doing this instead:
div { background: #FFF; font-style: italic; font-size: 18px; margin: 20px; }div.element {}div.element a {}
div.element ul {}
div.element .class p {}
div.other {}div.other a {}
div.other p.class {}
continue reading…