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.