pick font type in php
Posted: Thu Mar 23, 2006 1:09 pm
feyd | Please use
feyd | Please use
Code: Select all
andCode: Select all
tags where appropriate when posting code. Your post has been edited to reflect how we'd like it posted. Please read: [url=http://forums.devnetwork.net/viewtopic.php?t=21171]Posting Code in the Forums[/url] to learn how to do it too.[/color]
Hi guys,
I want the user to pick a font type, at the moment I have it in check boxes but I prefer to have it in a drop down list.
But the key is to have each font option displayed in their own style. Any Ideas ?
here is my current code:Code: Select all
<b>Choose a Font Style for your Text:</b>
<font face= arial>Arial</font>
<input name="fontType" type="checkbox" id="sel_templateA" value="arial">
<font face="Bookman Old Style">Bookman Old Style </font>
<input name="fontType" type="checkbox" id="sel_templateA" value="Bookman Old Style">
<font face="Comic Sans MS">Comic Sans </font>
<input name="fontType" type="checkbox" id="sel_templateA" value="Comic Sans MS">
<font face="Courier">Courier </font>
<input name="fontType" type="checkbox" id="sel_templateA" value="Courier">feyd | Please use
Code: Select all
andCode: Select all
tags where appropriate when posting code. Your post has been edited to reflect how we'd like it posted. Please read: [url=http://forums.devnetwork.net/viewtopic.php?t=21171]Posting Code in the Forums[/url] to learn how to do it too.[/color]