Advertisement
Guest User

Untitled

a guest
Nov 26th, 2016
160
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.46 KB | None | 0 0
  1. <!--Choose font style & size widget by www.codedforum.com.ng-->
  2. <script>
  3. function go1(){
  4. if (document.selecter2.select2.options
  5. [document.selecter2.select2.selectedIndex].value != "none") {
  6. document.getElementById('main').style.fontSize
  7. =document.selecter2.select2.options
  8. [document.selecter2.select2.selectedIndex].value
  9. }
  10. }
  11.  
  12. function go2(){
  13. if (document.selecter2.select3.options
  14. [document.selecter2.select3.selectedIndex].value != "none") {
  15. document.getElementById('main').style.fontFamily
  16. =document.selecter2.select3.options
  17. [document.selecter2.select3.selectedIndex].value
  18. }
  19. }
  20. </script>
  21. <form id="forma" name="selecter2" method="POST">
  22.  
  23. <select onchange="go2()" style="font-family:verdana;font-size:8pt" name="select3" size="1">
  24. <option value="Times New Roman"/>Times New Roman
  25. <option value="Arial"/>Arial
  26. <option selected value="Book Antiqua"/>Book Antiqua
  27. <option value="Bookman Old Style"/>Bookman Old Style
  28. <option value="Century Gothic"/>Century Gothic
  29. <option value="Comic Sans Ms"/>Comic Sans Ms
  30. <option value="Tahoma"/>Tahoma
  31. <option selected value="Trebuchet Ms"//>Trebuchet Ms
  32. <option value="Verdana"/>Verdana
  33. </select>
  34. <select onchange="go1()" style="font-family:verdana;font-size:8pt" name="select2" size="1">
  35. <option value="8px"/>8
  36. <option value="9px"/>9
  37. <option value="10px"/>10
  38. <option value="11px"/>11
  39. <option selected value="12px"/>12
  40. <option value="14px"/>14
  41. <option value="16px"/>16
  42. <option value="18px"/>18
  43. </select></form>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement