Friday, April 8, 2011

Scrolling Lists in HTML

The Scrolling lists can configure lists to allow the users to choose one or multiple answers to be selected form. It is efficient way to display more information in less space than static HTML.

Source Code:

<!DOCTYPE html>

<html>
<head>
<title>Scrolling Lists</title>
</head>

<body>
<b>Scrolling List:</b><br/>

<p>
<select MULTIPLE SIZE="3" NAME="course department">
<option value= "BSCS"> Computer Science
<option value= "BSIT"> Information Technology
<option value= "BSCoE"> Computer Engineering
<option value= "BSA"> Accountancy
<option value= "BSN"> Nursing
</select>
</p>

</body>
</html>


Multiple - defines the ability to make multiple selections.

Size - You can modify the number of line will display from you webpage. Example of my codes there are "3" size indicate.

Output:







This look like the scrolling list. I hope did you get some idea from my blog.
thanks for reading and try your own making a webpage.

No comments:

Post a Comment