Wednesday, May 30, 2007

DIFFICULT HTML TAGS

HTML TAGS FOR MAIL SENDING AND LINKING:

1.If locked in a frame set the target attribute in anchor tag to "_top" for getting out of the frame.

2.For sending mails using outlook express the following form is used in the href attribute of the anchor tag

href="mailto:someone@microsoft.com?subject=hello%20again"

where the mailid is someone@microsoft.com and the subject is hello again. Here %20 is used to enforce space between words.

3.More advanced feature in mailing is bcc and cc.. inorder to include that too in mailto attribute the following tag is used

href="mailto:someone@microsoft.com?cc=someoneelse@microsoft.com&bcc=andsomeoneelse2@microsoft.com&subject=Summer%20Party&body=You%20are%20invited%20to%20a%20big%20summer%20party!"

where the mailid is same and cc to someoneelse@microsoft.com and bcc to andsomeoneelse2 with subject "summer party" and the body of the mail is "You are invited to a big summer party!".

HTML


HTML BASICS:

  • HTML is a text file with markup tags.
  • Markup tags tell the web browser "how to display the page".
  • .htm/.html both extensions are allowed while saving the files.
  • .htm is used when some softwares demand only 3 letter file extension, but now with newer softwares it is recommended we follow .html.
  • <> - angular brackets. <> - start tag ,















































ResultDescriptionEntity NameEntity Number
non-breaking space&#160;
<less than&lt;<
>greater than&gt;>
&ampersand&amp;amp;amp;amp;amp;amp;amp;amp;&
"quotation mark""
'apostrophe &apos; (does not work in IE)&#39;





The easy reference to Html and other things are found in this link


http://www.w3schools.com/


To practise the html tags use this simple editor provided by the w3schools


http://www.w3schools.com/html/tryit.asp?filename=tryhtml_basic

Tuesday, May 29, 2007

Dynamic HTML

DEFINITION:
The ability to make changes in real time to a web document after it has been downloaded by the user, without requiring additional trips back to the server.

Can also check here...

http://www.sitepoint.com/article/beginners-guide-dhtml

Monday, May 21, 2007

Algorithms

Very good algorithm book

Introduction to Algorithms by Thomas H Cormen