Advanced Java and Web Technologies for JNTUK
Blog providing beginner tutorials on different web technologies like HTML, CSS, Javascript, PHP, MYSQL, XML, Java Beans, Servlets, JSP and AJAX
Subscribe to Startertutorials.com's YouTube channel for different tutorial and lecture videos.

Forms

Categories: HTML. No Comments on Forms

Introduction   A form is a collection of GUI controls like textboxes, checkboxes, radio buttons etc which allows the user to send data to the server. After entering the data into the form, a special program is used to process that data. Such programs are called as form handlers.   Inserting a Form   To […]

Read the rest of this entry »

Frames

Categories: HTML. No Comments on Frames

Frames are popular in the olden days. There are used in almost all the web pages. The frameset structure provides an easy way to create multiple, separate scrolling areas in a user agent window and a flexible mechanism to modify the contents of a frame.   However, there are some disadvantages of using frames. Due […]

Read the rest of this entry »

Tables

Categories: HTML. No Comments on Tables

Introduction   Tables are a powerful HTML tool with many uses. They are developed primarily to communicate tabular data (for academic and research purpose). Tables are now used for many purposes like simply holding tabular data to the layout of entire pages.   A table in HTML is delimited using the table tag (<table>). A […]

Read the rest of this entry »

Links

Categories: HTML. No Comments on Links

Links are the elements what make the World Wide Web, web like. One document can link to several other documents and those in turn can link to several other documents resulting in a web.   Besides linking to other documents, we can link to any other content that can be delivered over the internet like: […]

Read the rest of this entry »

Lists

Categories: HTML. 1 Comment on Lists

Introduction   HTML was primarily created to reproduce academic and research text. For this reason, particular care was taken to ensure that specific elements, such as lists and tables, were implemented and robust enough to handle the tasks for which they serve. Lists HTML are used to display a list of items either in an […]

Read the rest of this entry »