I want to create a page to test and display my web fonts in a browser to compare different sizes of the same user-input text. Later perhaps to compare different font styles with drop down buttons etc. my question for the moment is how to have new text input in a browser field appear instantly at different sizes in other fields on the same page. Many thanks. Here is the page that works fine to display the fonts but the text has to be input manually in each field. Thanks for your help.
<html>
<head>
<link rel="stylesheet" type="text/css" media="screen" href="AlQuds.css" />
<style type="text/css" media="screen">
body { font-family: "AlQuds", Georgia; font-size: 40px ; }
#big { font-size: 100px; background-color:#ede7ab;}
#medium { font-size: 40px; background-color: #eab645}
#small { font-size: 20px; background-color:#d3ffcf}
</style>
</head>
<body>
<table style="width: 100%;" border="1">
<col /> <col />
<tbody>
<tr>
</tr>
<tr>
<td><img alt="alquds-regular-bold" src="alquds-regular-bold-sampler.jpg" style="display: block; text-align: center; margin-left: auto; margin-right: auto; width: 653px; height: 739px;" /></td>
<td style="">
<hr>
<p >Input text below AlQuds Regular font in Arabic, Farsi or in a West European language such as Swedish.</p>
<hr>
<div id="big" contenteditable="true" border="3"> إطبع هنا - type here.</div>
<hr>
<div id="medium" contenteditable="true" border="3"> إطبع هنا- type here.</div>
<hr>
<div id="small" contenteditable="true" border="3">إطبع هنا - type here.</div>
<hr>
</td>
</tr>
</tbody>
</table>
</body>
</html>