published by adal on Sat, 09/17/2011 - 11:17
Good news, We are the first Semantic Web Developers in Bangalore. Currently developing a site using HTML 5, RDF, Drupal which emits semantic web. Semantic web is some time call as web 3.0 (giant globe semantic). We are Only developers developing websites using Open Graph Protocol, Micro format, Schema.org web standards.
I plan to write more about RDF, Semantic Web, Open Graph Protocols, and how going to affect the feature search results. reply : adal@quardz.com
published by adal on Thu, 09/15/2011 - 08:16
Views

published by adal on Thu, 09/15/2011 - 07:30
Content Type

published by adal on Sat, 07/03/2010 - 07:24
As an SEO you may be taking the full advantage of FireFox’s built-in “View source” option. I used it multiple times for any type of webpage You can create it so easy. A few ways to make viewing the source code of any page more usable.
X-Ray
X-Ray is a great FireFox addon that makes it much easier to compare the source code with an actual website interface design. In fact, it inserts coding right within the page, so you can clearly see which code is used for which web page element.
published by adal on Sat, 07/03/2010 - 07:19
1. Website Designing Architecture According to SEO
Search engines look explicitly at how all your pages are linked together in order to determine their place within the site. Pages that are linked from every other page will be given more weight than those that are only linked from a few others. This is all considered a form of internal link popularity, or in Google language, internal Page Rank. Here are only one search engine which is providing a ranking of a site by there own tools.
published by adal on Thu, 07/01/2010 - 02:11
Like many I have recently been trying to work out whether to use Drupal or Joomla for my own business, and being a small company I didn't want to spend time using the wrong tools. I am also quite new to CMS's so I don't have any bias (yet). I searched the net and found, among many other good reviews, Webology's survey. Then I did some additional analysis of their work and put an article on my own personal blog to contribute to the discussion and help others in the same situation as myself.
published by adal on Tue, 06/29/2010 - 21:11
Put HTML tags in correct - Don't put tags as incomplete. - Style sheet link tags in head tags. - Script tags as in bottom of the HTML document. - tag text as in smaller case. - Don't write inline...Put HTML tags in correct
- Don't put tags as incomplete.
- Style sheet link tags in head tags.
- Script tags as in bottom of the HTML document.
- tag text as in smaller case.
published by adal on Tue, 06/29/2010 - 20:34
When i am trying to write the client validation i used document.getElementById("") to get the value of the control and then validate that and return the result. So, when i move on to jQuery i try to figured out what would be the equivalent code for that i tried
var _Text = $("#controlid").value; //to get the content
but i didn't get the content. So after i browsed in the google and found the $("") ,selector, in jQuery the array so we need to use the array bracket or get method to get the content of the control.