Jump to content

Font changer


jnerotrix

Recommended Posts

I made a font called: "cripttick.ttf"

I need to make a Generator so When you type in Letters In "Criptick" It Changes It to "Times New Roman" and the other Way around

 

Here is the html code i have written for it i just need it to be coded in php

 

<center>
<h1> Cripttick Encoder/Decoder </h1>
<br><br>
<form Action="(This Page)" method=post">
<table border="1">
<tr>
<td align="center"><input type="submit" Value="Encode"></td>
</tr>
<tr>
<td>
!Type Text You Want to Encode!<br>
<textarea name="encode" rows="5" cols="25"></textarea> ==> <textarea name="encoded" rows="5" cols="25"></textarea> </td>
</tr>
</table>
</form>

<br><br>
<form Action="(This Page)" method=post">
<table border="1">
<tr>
<td align="center"><input type="submit" Value="Decode"></td>
</tr>
<tr>
<td>
!Type Coded Text Here!<br>
<textarea name="decode" rows="5" cols="25"></textarea> ==> <textarea name="decoded" rows="5" cols="25"></textarea></td>
</tr>
</table>
</form>

 

Where it says (This page) i dont know what to put there i want it to do the code on this page

 

Thanks Jnerotrix

Link to comment
https://forums.phpfreaks.com/topic/135261-font-changer/
Share on other sites

You could just test it to see if it worked... but yes, that looks like it should be okay. Again, this will only work on machines with the font installed (Google "web safe fonts" for more info). You don't need the extension on the font though... just the name

Link to comment
https://forums.phpfreaks.com/topic/135261-font-changer/#findComment-704532
Share on other sites

Do you have the font "installed"?

 

:)

 

<textarea name="encode" rows="5" cols="25" style="font-family:Tahoma"></textarea>

 

That works for me to change the font to Tahoma

 

So I would think

 

 

<textarea name="encode" rows="5" cols="25" style="font-family:criptick"></textarea>

Link to comment
https://forums.phpfreaks.com/topic/135261-font-changer/#findComment-704538
Share on other sites

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.