Hi
I am not a developer and dont know HTML. Can someone please help me with something simple?
I am putting an HTML in my form (screenshots below)
I would like the Finance Option ( in drop down to give me like 2 other choices like)
2015/04 Fees Paid
2016/01 Student Fees Pending
Can someone tell me how to manipulate the code below so finance could have those options please?
<html><head><meta><meta></head><body style="word-wrap: break-word;">
<h1>Student Records by Department</h1>
<div style="font-family: undefined;"><select><option>Finance</option><option>Records</option></select></div>
<hr>
<table>
<tbody><tr>
<td><b>Semester </b></td><td><b>Status </b></td>
</tr>
<tr>
<td>2015/3</td><td>Un-registered</td>
</tr>
<tr>
<td>2015/2</td><td>Registered</td>
</tr>
<tr>
<td>2015/1</td><td>Completed</td>
</tr>
</tbody></table>
</body></html>
Thank you very much for your help


