26 lines
617 B
PHP
26 lines
617 B
PHP
<?php
|
|
defined('BASEPATH') OR exit('No direct script access allowed');
|
|
|
|
?><!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<link href='https://fonts.googleapis.com/css?family=Sofia' rel='stylesheet'>
|
|
<link href='https://fonts.googleapis.com/css?family=Roboto' rel='stylesheet'>
|
|
<style>
|
|
body {
|
|
font-family:Sofia;
|
|
<!-- font: 13px/20px normal Helvetica, Arial, sans-serif; -->
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
|
|
<h1 style="font-family:Helvetica, Arial, sans-serif">Sofia</h1>
|
|
<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit.</p>
|
|
<p>123456790</p>
|
|
<p>ABCDEFGHIJKLMNOPQRSTUVWXYZ</p>
|
|
<p>abcdefghijklmnopqrstuvwxyz</p>
|
|
|
|
</body>
|
|
</html>
|