Sunday, May 18, 2014

Learn XHTML





XHTML stands for eXtensible HyperText Markup Language. It is markup used to design websites and webpages.
XHTML is much stricter than ordinary HTML, and is based on both XML and HTML. Due to the lax nature of HTML, different web browsers can sometimes display websites incorrectly since there is more than one way to interpret poorly written HTML. The strict and formal nature of XHTML, once fully adopted will allow for web browsers to display the same page correctly between them. Proper XHTML is also easier to read for humans.
For example, the below code shows one of the differences between HTML and XHTML:
Incorrect, HTML version:
<br>
Correct, XHTML version:
<br />
The line break tag in HTML does not have a closing tag, you just type it once and it creates a line break. In XHTML the rule is that tags that do not have an closing tag must close themselves within the initial tag. These tags are called "empty tags." Another empty tag is <hr /> which inserts a "horizontal rule" or dividing line.
From Wikipedia, the free encyclopedia

Learn XHTML Online

Learn Dart Programming Language


Dart is an open-source Webprogramming language developed by Google. It was unveiled at the GOTO conference in Aarhus, October 10–12, 2011. The goal of Dart is "ultimately to replace JavaScript as the lingua franca of web development on the open web platform". Until then, in order to run in mainstream browsers, Dart relies on a source-to-source compiler to JavaScript. For performance reasons Google engineers solved their JavaScript issues by evolving Dart rather than extending JavaScript. Dart enables Google to build more full-featured complexity into client-side Web applications.
From Wikipedia

Learn Dart online

Download Dart Software Here