Toggle navigation
Genres
Frontend (2)
JavaScript (6)
Database (2)
Linux Server (3)
Web Apps (4)
Misc (4)
Search
List
New Tutorials
Last Modified Tutorials
</>
Code examples
code
smiko
frontend
html
examples
forms_bak
11tabindex.html
11tabindex.html
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN"> <html> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8"> <title>HTML obrasci -primjer</title> </head> <body bgcolor="#66ccff"> Bez upotrebe miša, koristeći TAB tipku pristupajte elementima obrasca ! <br><br> <form action="./get.htm" method="GET"> <br>polje1: <input type="Text" name="var1" tabindex="1"> <br>polje3: <input type="Text" name="var3" tabindex="3"> <br>polje2: <input type="Text" name="var2" tabindex="2"> <br>polje4: <input type="Text" name="var4" tabindex="4"> <br><input type="Submit" value="Potvrdi" tabindex="5"> <input type="Reset"> </form> </body> </html>
Reload page
Preview
W3C validation
Edit Code