I've designed an HTML page on a local host using a sans-serif font, and I've attempted to move my code to a Unix/Linux server so I can use crontabs to generate the page at specific times.
However, I want to use a sans-serif font. This is simple to do at first, just using:
body {
zoom: 23%;
font-family: Verdana, Arial, Helvetica, sans-serif;
}
#multiLine {
font-family: Verdana, Arial, Helvetica, sans-serif;
font-size: 10px;
width: auto;
margin: auto;
text-align: center;
position: absolute;
top: 0px;
right: 0px;
} ...
As soon as I push the code to Linux and attempt to render the file, the fonts never match up correctly and it just returns the page in a clunky looking (with no commas) Linux default font.
Does anyone know how to use CSS on Linux and have it use a font of my choosing? I tried basic CSS, but it never works, and font-face doesn't seem to have access to any files.