How can i achieve http://jdstiles.com/java/angledtext2.html this kind of angle(slant) using html , css and javascript. In design we have tabular structrer and by clicking on a tab the area beneath should refresh without reloading page (some thing like jquery or ajax).
The way it looks like they're doing it is by using a trigonometric function to draw out text as lines. It's vector-based, so they create a rise/run, split the word up into characters, then loop over the function, adding a span to each character, and positioning it in kind.
It's not entirely clear how you want to use it, but what you would have to do is break down your form into its smallest elements in someway, and then apply style to each element, using the basis of the trigonometric function for calculating the position of each element in a loop.
Without knowing what exactly you want to make though, it's pointless to show you what it might look like in code. The site you linked to is probably the best example of the process, even if not exactly what you want to do.