<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"><channel><description>..where technology and creativity meet to develop, research, and explore new Web innovations and technologies.</description><title>roovno.blog</title><generator>Tumblr (3.0; @roovno)</generator><link>http://roovno.tumblr.com/</link><item><title>The most beautiful HTML yet !</title><description>&lt;p&gt;We write HTML for every web page that we create for a web service or application. Unlike other development companies, we follow strict guidelines for every html page such that it is well advanced in format and performance.  Since we use Javascript libraries like YUI, jQuery etc. , we ensure a very high standard for every line of HTML code that we write.&lt;/p&gt;
&lt;p&gt;In this post we are sharing the HTML standards that we follow while creating web pages , to give an idea about how well we work to ensure good quality for your web service / application. &lt;i&gt;&lt;Click on image to view high resolution image&gt; &lt;/i&gt;&lt;/p&gt;
&lt;!-- more --&gt;
&lt;p&gt;&lt;a href="http://roovnoventures.com/images/html.jpg" target="_blank"&gt;&lt;img width="1000" src="http://roovnoventures.com/images/html.jpg"/&gt;&lt;/a&gt;&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;
&lt;b&gt;HTML5&lt;/b&gt; – HTML5 and it’s new elements make for the most beautiful HTML yet.&lt;/li&gt;
&lt;li&gt;
&lt;b&gt;DOCTYPE&lt;/b&gt; – HTML5 has the best DOCTYPE ever&lt;/li&gt;
&lt;li&gt;
&lt;b&gt;Indentation&lt;/b&gt; – Code is indented to show parent/child relationships and emphasize hierarchy.&lt;/li&gt;
&lt;li&gt;
&lt;b&gt;Charset&lt;/b&gt; – Declared as first thing in the head, before any content.&lt;/li&gt;
&lt;li&gt;
&lt;b&gt;Title&lt;/b&gt; – Title of the site is simple and clean. Purpose of page is first, a separator is used, and ends with title of the site.&lt;/li&gt;
&lt;li&gt;
&lt;b&gt;CSS&lt;/b&gt; – Only one single stylesheet is used (media types declared inside stylesheet), and only served to good browsers. IE 6 and below are served a universal stylesheet.&lt;/li&gt;
&lt;li&gt;
&lt;b&gt;Body&lt;/b&gt; – ID applied to body to allow for unique page styling without any additional markup.&lt;/li&gt;
&lt;li&gt;
&lt;b&gt;JavaScript&lt;/b&gt; – jQuery (the most beautiful JavaScript library) is served from Google. Only a single JavaScript file is loaded. Both scripts are referenced at the bottom of the page.&lt;/li&gt;
&lt;li&gt;
&lt;b&gt;File Paths&lt;/b&gt; – Site resources use relative file paths for efficiency. Content file paths are absolute, assuming content is syndicated.&lt;/li&gt;
&lt;li&gt;
&lt;b&gt;Image Attributes&lt;/b&gt; – Images include alternate text, mostly for visually impaired uses but also for validation. Height and width applied for rendering efficiency.&lt;/li&gt;
&lt;li&gt;
&lt;b&gt;Main Content First&lt;/b&gt; – The main content of the page comes after basic identity and navigation but before any ancillary content like sidebar material.&lt;/li&gt;
&lt;li&gt;
&lt;b&gt;Appropriate Descriptive Block-Level Elements&lt;/b&gt; – Header, Nav, Section, Article, Aside… all appropriately describe the content they contain better than the divs of old.&lt;/li&gt;
&lt;li&gt;
&lt;b&gt;Hierarchy&lt;/b&gt; – Title tags are reserved for real content, and follow a clear hierarchy.&lt;/li&gt;
&lt;li&gt;
&lt;b&gt;Appropriate Descriptive Tags&lt;/b&gt; – Lists are marked up as lists, depending on the needs of the list: unordered, ordered, and the underused definition list.&lt;/li&gt;
&lt;li&gt;
&lt;b&gt;Common Content Included&lt;/b&gt; – Things common across multiple pages are inserted via server side includes (via whatever method, language, or CMS that works for you)&lt;/li&gt;
&lt;li&gt;
&lt;b&gt;Semantic Classes&lt;/b&gt; – Beyond appropriate element names, classes and IDs are semantic: they describe without specifying. (e.g. “col” is much better than “left”)&lt;/li&gt;
&lt;li&gt;
&lt;b&gt;Classes&lt;/b&gt; – Are used any time similar styling needs to be applied to multiple elements.&lt;/li&gt;
&lt;li&gt;
&lt;b&gt;IDs&lt;/b&gt; – Are used any time an element appears only once on the page and cannot be targeted reasonably any other way.&lt;/li&gt;
&lt;li&gt;
&lt;b&gt;Dynamic Elements&lt;/b&gt; – Things that need to be dynamic, are dynamic.&lt;/li&gt;
&lt;li&gt;
&lt;b&gt;Characters Encoded&lt;/b&gt; – If it’s a special character, it’s encoded.&lt;/li&gt;
&lt;li&gt;
&lt;b&gt;Free From Styling&lt;/b&gt; – Nothing on the page applies styling or even implies what the styling might be. Everything on the page is either a required site resource, content, or describing content.&lt;/li&gt;
&lt;li&gt;
&lt;b&gt;Comments&lt;/b&gt; – Comments are included for things that may not be immediately obvious upon reviewing the code.&lt;/li&gt;
&lt;li&gt;
&lt;b&gt;Valid&lt;/b&gt; – The code should adhere to W3C guidelines. Tags are closed, required attributes used, nothing deprecated, etc.&lt;/li&gt;
&lt;/ul&gt;</description><link>http://roovno.tumblr.com/post/251699991</link><guid>http://roovno.tumblr.com/post/251699991</guid><pubDate>Sat, 21 Nov 2009 13:37:00 +0530</pubDate></item><item><title>We write less code !</title><description>&lt;p&gt;How to save the resource in our application code ? Should we repeat writing the same code in every page/file ? We can save a lot of our time and resource by putting the same code or lines into a function or procedure.&lt;/p&gt;
&lt;p&gt;That’s what we exactly do to save coding effort.  We use jQeury to write less code and do more !&lt;/p&gt;
&lt;p&gt;&lt;b&gt;jQuery UI&lt;/b&gt; provides abstractions for low-level interaction and animation, advanced effects and high-level, themeable widgets, built on top of the jQuery JavaScript Library, that you can use to build highly interactive web applications.  We use jQuery extensively for our &lt;a title="Roovno Venture Services"&gt;services&lt;/a&gt; to write less code and do more with less code.&lt;/p&gt;
&lt;p&gt;With jQuery, you can get to just about anything on a Web page. Its syntax makes it easy to quickly locate HTML DOM elements. While this is readily available with standard JavaScript, jQuery presents a streamlined syntax that allows you to reduce coding tasks with less code and less time.&lt;/p&gt;
&lt;p&gt;Today, we will have a look at few creative uses of jQuery in modern day websites and applications; sure to inspire you for your next project. Let us know if you want any of these inspirations to be part of your web application design. We can do it for you.&lt;/p&gt;
&lt;p&gt;Try our demo jQuery page here - &lt;a target="_blank" href="http://roovnoventures.com/CoWave/demo.php"&gt;CoWave&lt;/a&gt;- Playback comments using jQuery&lt;/p&gt;
&lt;!-- more --&gt; 
&lt;ul class="webroundup"&gt;
&lt;li&gt;
&lt;h4&gt;Dragon Interactives jQuery Navigation&lt;/h4&gt;
&lt;img alt="Screenshot 1" src="http://nettuts.s3.amazonaws.com/175_creativeUses/img1.jpg"/&gt;&lt;p&gt;These guys are pretty much Gods of web design, and their site really proves it. Just have a look at the custom jQuery navigation they used on their homepage. Have you ever seen such a sexy navigation in your life?&lt;/p&gt;
&lt;p&gt;&lt;a href="http://dragoninteractive.com/" target="_blank"&gt;Visit Site&lt;/a&gt;&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;h4&gt;FamSpams FaceBox&lt;/h4&gt;
&lt;img alt="Screenshot 2" src="http://nettuts.s3.amazonaws.com/175_creativeUses/img2.jpg"/&gt;&lt;p&gt;FamFamFam needed a custom lightbox like script for FamSpam (whew, say that three times). They ended up building what is now know as &lt;a href="http://famspam.com/facebox" target="_blank"&gt;FaceBox&lt;/a&gt;, which replicates the effects of lightbox, but goes above and beyond by allowing you to load in static html pages, contact forms, anything you wish really! FaceBox is now a jQuery plugin after all the demand for their script.&lt;/p&gt;
&lt;p&gt;&lt;a href="http://famspam.com/" target="_blank"&gt;Visit Site&lt;/a&gt;&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;h4&gt;Grooveshark Widget Creator&lt;/h4&gt;
&lt;img alt="Screenshot 3" src="http://nettuts.s3.amazonaws.com/175_creativeUses/img3.jpg"/&gt;&lt;p&gt;Instead of going with a typical flash menu/control menu, Grooveshark mixed it up a bit and built a custom jQuery script to allow you to make your own music widgets; pretty nifty indeed.&lt;/p&gt;
&lt;p&gt;&lt;a href="http://widgets.grooveshark.com/" target="_blank"&gt;Visit Site&lt;/a&gt;&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;h4&gt;CSS-Tricks Fade-In Navigation&lt;/h4&gt;
&lt;img alt="Screenshot 4" src="http://nettuts.s3.amazonaws.com/175_creativeUses/img4.jpg"/&gt;&lt;p&gt;CSS-Tricks, by Chris Coyier, is next up on the list with a wonderfully simple and creative jQuery navigation. When the links are hovered over, instead of immediately changing colors, jQuery is used to help the color fade slowly to the desired color.&lt;/p&gt;
&lt;p&gt;&lt;a href="http://css-tricks.com/" target="_blank"&gt;Visit Site&lt;/a&gt;&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;h4&gt;David Walsh Link Nudge&lt;/h4&gt;
&lt;img alt="Screenshot 5" src="http://nettuts.s3.amazonaws.com/175_creativeUses/img5.jpg"/&gt;&lt;p&gt;Developer David Walsh of DavidWalsh.name implements an extremely simple to use script to give your links a little nudge on hover. The script utilizes the strong animation capabilities of jQuery triggered on hover. Check out the links in the sidebar and in the footer to see the effect in action.&lt;/p&gt;
&lt;p&gt;&lt;a href="http://davidwalsh.name/" target="_blank"&gt;Visit Site&lt;/a&gt;&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;h4&gt;CarrotCreative-Custom Sites Lightbox&lt;/h4&gt;
&lt;img alt="Screenshot 6" src="http://nettuts.s3.amazonaws.com/175_creativeUses/img6.jpg"/&gt;&lt;p&gt;If you check out the CarrotCreative website, you will actually notice two really unique jQuery effects. Firstly, if you click on sites in the upper left, you will see a unique application of a ‘lightbox’ like effect listing their sites and icons. Secondly, if you click on any navigation links, you will notice there is no refresh, but that the new page just slides in from the right. Cool stuff!&lt;/p&gt;
&lt;p&gt;&lt;a href="http://carrotcreative.com/" target="_blank"&gt;Visit Site&lt;/a&gt;&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;h4&gt;BrightCreative Portfolio&lt;/h4&gt;
&lt;img alt="Screenshot 7" src="http://nettuts.s3.amazonaws.com/175_creativeUses/img7.jpg"/&gt;&lt;p&gt;Another “two for one” special, Bright Creative uses an extremely subtle glow effect in their navigation that is very calming and warm. In addition, all of their portfolio pages have a tabbing effect, so their is no need for the user to refresh the page every time - thanks to AJAX and jQuery.&lt;/p&gt;
&lt;p&gt;&lt;a href="http://www.brightcreative.com/portfolio/" target="_blank"&gt;Visit Site&lt;/a&gt;&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;h4&gt;Incredible Login Form&lt;/h4&gt;
&lt;img alt="Screenshot 1" src="http://nettuts.s3.amazonaws.com/175_creativeUses/connor.jpg"/&gt;&lt;p&gt;Not too long ago, Connor Zwick wrote us a nice tutorial that demonstrates exactly how to build an amazing drop-down login form.&lt;/p&gt;
&lt;p&gt;&lt;a href="http://nettuts.com/javascript-ajax/build-a-top-panel-with-jquery/" target="_blank"&gt;Visit Site&lt;/a&gt;&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;h4&gt;Application Scroller by Aviary&lt;/h4&gt;
&lt;img alt="Screenshot 8" src="http://nettuts.s3.amazonaws.com/175_creativeUses/img8.jpg"/&gt;&lt;p&gt;It would be an insult to call this a type of ‘marquee’ (shivers uttering that word). Instead, Aviary came up with a very nice looking and functioning ‘scroller’ to showcase a lot of text in a small amount of space. Even better is that the scroller will degrade gracefully is javascript is disabled.&lt;/p&gt;
&lt;p&gt;&lt;a href="http://aviary.com/home?v=b" target="_blank"&gt;Visit Site&lt;/a&gt;&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;h4&gt;Featured Fade Effect by DesignFlavr&lt;/h4&gt;
&lt;img alt="Screenshot 9" src="http://nettuts.s3.amazonaws.com/175_creativeUses/img9.jpg"/&gt;&lt;p&gt;DesignFlavr, known for their great sources of design inspiration, put together a simple fadeIn/fadeOut script to showcase their featured artwork and corresponding descriptions. Also, they’ve used the lavalamp plugin quite well on their main navigation.&lt;/p&gt;
&lt;p&gt;&lt;a href="http://www.designflavr.com/" target="_blank"&gt;Visit Site&lt;/a&gt;&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;h4&gt;Hv-Designs Fade In RSS Icon&lt;/h4&gt;
&lt;img alt="Screenshot 11" src="http://nettuts.s3.amazonaws.com/175_creativeUses/img12.jpg"/&gt;&lt;p&gt;On the Hv-Designs homepage, you will notice the the RSS icon starts off as an outline/sketch of the actual image. Then, when hovered, the rss icons ‘glows’ into place.&lt;/p&gt;
&lt;p&gt;&lt;a href="http://hv-designs.co.uk/" target="_blank"&gt;Visit Site&lt;/a&gt;&lt;/p&gt;
&lt;ul class="webroundup"&gt;
&lt;li&gt;
&lt;h4&gt;Codas Entire Website&lt;/h4&gt;
&lt;img alt="Screenshot 15" src="http://nettuts.s3.amazonaws.com/175_creativeUses/img16.jpg"/&gt;&lt;p&gt;Coda is well known for its amazing UI and site design. It set a fire under the jQuery plugin community by inspiring many developers to re create their page tabbing effect. In addition, they have a wonderful on hover effect on the links located in the header.&lt;/p&gt;
&lt;p&gt;&lt;a href="http://www.panic.com/coda/" target="_blank"&gt;Visit Site&lt;/a&gt;&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;h4&gt;Clark Lab Fading Effect&lt;/h4&gt;
&lt;img alt="Screenshot 16" src="http://nettuts.s3.amazonaws.com/175_creativeUses/img17.jpg"/&gt;&lt;p&gt;ClarkLab is a well known and very successful author on &lt;a href="http://themeforest.net/" target="_blank"&gt;ThemeForest&lt;/a&gt;. If you visit his portfolio below, you will notice the large header images eventually fade to the next, showcasing all of his latest work. The fade effect is so well done and subtle, you barely notice the new image showing up.&lt;/p&gt;
&lt;p&gt;&lt;a href="http://www.clarklab.net/blog/" target="_blank"&gt;Visit Site&lt;/a&gt;&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;h4&gt;Rob Young | E is for Effort&lt;/h4&gt;
&lt;img alt="Screenshot 17" src="http://nettuts.s3.amazonaws.com/175_creativeUses/img19.jpg"/&gt;&lt;p&gt;Designer and Art Director Rob Young used a unique idea of displaying his artwork on a simulated Mac screen. Then using jQuery scrolling effects, each new page slides into the page view as if it is being loaded on a computer.&lt;/p&gt;
&lt;p&gt;&lt;a href="http://www.eisforeffort.com/" target="_blank"&gt;Visit Site&lt;/a&gt;&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;h4&gt;Web Designer Wall&lt;/h4&gt;
&lt;img alt="Screenshot 18" src="http://nettuts.s3.amazonaws.com/175_creativeUses/img20.jpg"/&gt;&lt;p&gt;Besides being a visually stunning website, WDW features some unique custom jQuery scripting to add classes to certain elements on hover. Check out the effects when the rss and navigation items are hovered over.&lt;/p&gt;
&lt;p&gt;&lt;a href="http://www.webdesignerwall.com/" target="_blank"&gt;Visit Site&lt;/a&gt;&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;h4&gt;Junaid W. Hanif&lt;/h4&gt;
&lt;img alt="Screenshot 19" src="http://nettuts.s3.amazonaws.com/175_creativeUses/img21.jpg"/&gt;&lt;p&gt;Another really cool tabbing effect - instead of arrows however, pagination and AJAX is used to create a sleek and clean user experience. Plus, the navigation has a very nice albeit simple effect.&lt;/p&gt;
&lt;p&gt;&lt;a href="http://www.jwhanif.net/" target="_blank"&gt;Visit Site&lt;/a&gt;&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;h4&gt;KomodoMedia&lt;/h4&gt;
&lt;img alt="Screenshot 19" src="http://nettuts.s3.amazonaws.com/175_creativeUses/img22.jpg"/&gt;&lt;p&gt;We’ve saved our absolute favorite site for last. First, just look at that design, it’s wonderfully unique and comforting. Using one of the most creative jQuery scripts we have ever seen, KM has a ‘foliage-o-meter’ slider where sliding it either increases or decreases the foliage and design of the theme, depending on the direction the slider is moved.&lt;/p&gt;
&lt;p&gt;&lt;a href="http://www.komodomedia.com/" target="_blank"&gt;Visit Site&lt;/a&gt;&lt;/p&gt;
&lt;/li&gt;
&lt;/ul&gt;
&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;Keep in mind that jQuery is simply a tool and is only limited by your creativity and skill level. Get unique with your designs and development process and you might be surprised to see great results occur.&lt;/p&gt;</description><link>http://roovno.tumblr.com/post/229728954</link><guid>http://roovno.tumblr.com/post/229728954</guid><pubDate>Sun, 01 Nov 2009 19:19:00 +0530</pubDate></item></channel></rss>
