6 lines
153 B
PHP
6 lines
153 B
PHP
|
|
<?php
|
||
|
|
// fonts.php
|
||
|
|
header('Access-Control-Allow-Origin: *');
|
||
|
|
header('Content-Type: font/woff');
|
||
|
|
echo @file_get_contents('webfonts/fa-light-300.woff');
|
||
|
|
?>
|