20 lines
356 B
PHP
20 lines
356 B
PHP
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<style>
|
|
@font-face {
|
|
font-family: Abril;
|
|
src: url("file:///{{ storage_path('fonts/AbrilFatface-Regular.ttf') }}");
|
|
}
|
|
|
|
body {
|
|
font-family: Abril;
|
|
font-size: 48px;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
THIS SHOULD LOOK VERY STYLISH
|
|
</body>
|
|
</html>
|