Skip to main content

Posts

Showing posts with the label lecture notes Web technology

HTML Tags

HTML COMMENTS HTML comments start with <! -- And end with -->. Each and every thing written within these characters will be ignored by the browsers. These are used to explain the purpose the HTML tags used in the documents. It can be used anywhere in the document. Following is the general syntax:- <! -- comment text --> TEXT FORMATTING PARAGRAPH HTML provides a <p> tag, which is used to start a new paragraph, escaping one line between new line and previous line. Following is the general syntax:- <p> this is a new paragraph </p> HEADING A web page contain different heading with different sizes, color and fonts. HTML provides different tags for such headings. There are 6 levels of headings h1 to h6, where h1 is the largest in size and h6 is the smallest. <h1> heading 1 </h1> <h2> heading 2 </h2> <h3> heading 3 </h3> <h4> heading 4 </h4> <h5> heading 5 </h5> <h6

Hypertext Markup Language (HTML)

Fundamental of HTML HTML HTML is an acronym for Hyper Text Markup language. It is the primary language used to encode documents containing hyperlinks. It provides simple mechanisms for formulating text, creating links and lists inserting images, embedding audio and video etc. Its first version was released in 1991 by Tim Burners Lee, the founder of WWW.  It is an application of Standard Generalized Markup Language (SGML), which is a standard that specifies a formal mete-language for markup documents.  Any simple text editor such as notepad in Windows or simple Text in Macintosh can be used to create and edit HTML files. §   HTML documents are written using HTML “Tags”. §   Tags are embedded in angular brackets. §   HTML tags are case-insensitive. §   Tags are organized in hierarchical order. §   Documents are linked by special tag called anchor tags. §   Anchor tags are also called hyperlinks. §   HTML documents are viewed by software called ‘browser’. ELEMENT

Fundamental of Web Services

FUNDAMENTAL OF WEB SERVICES WEB SERVICES:- A   Web service   is a method of interaction between two devices over the  WWW . It is a software tool provided on internet which helps us to create client-server service. It is a software system designed to support interoperability with various machine interaction over a network. The web service replies in a language called WSDL (Web Service Description Language).    Some of its features are:- They are application components They  communicate with open protocols They  are  self-describing It can be used by various applications The basis for web services are HTTP and XML Working of web services The client sends a request to the server  The Request is  encoded in XML format  The Function (GET, POST…)is inserted in the file  The server receives and decodes the file  The received function is executed  A new XML file is encoded and is sent back to the client. WSDL WSDL is an acronym