| Guide For Beginners If you are thinking what is Active Server Page then here is the answer.ASP is a server side scripting which is used in a web page like e-commerce,
database, guest book, etc. Server side scripting means that all the script will
be executed by the server and interpreted as needed. Client side scripting means that the script will be executed immediately in the browser such as form field validation, clock, email validation, etc. Client side scripting is usually done in VBScript or JavaScript. VBScript , JavaScript ???VBScript is the client side scripting (script which is executed in your
browser). This script looks like VB and it is only supported by Internet
Explorer. List of HTML Tags<br> this tag is used for line break. <p align="position"> </p> Whatever text between this tag is considered as one paragraph. Align specifies the alignment of the paragraph position may be center, left or right. <HTML> </HTML> Whatever between them is considered as HTML <Head> </Head> Between this tag you define the basic information about the web page. <body> </body> The content of the site is between this tags. <a href="Hyperlink">Text</a> This tag defines the hyperlink. Hyperlink can be URL , email address or bookmark. Text is the text to be shown. <title> </title> Any text between this tag is considered as the title. Title is usually displayed on the title bar of the browser. |