I have been struggling to change the font size of an embedded text file, but the style doesn't seem to be working. Despite trying various approaches, nothing seems to make a difference.
<style>
pre {
font-family: "Courier New", monospace;
font-size: 50px;
}
object {
font-family: "Courier New", monospace;
font-size: 50px;
}
body {
font-family: "Courier New", monospace;
font-size: 50px;
}
</style>
<body>
<pre class="tab" id="Display">
<object width="12000" height="12000" type="text/css" data="textFiles/file.txt" border="0" >
</pre>
</body>