PHP Classes

File: index.php

Recommend this page to a friend!
  Classes of Ali Bahaari   Ziko Math   index.php   Download  
File: index.php
Role: Example script
Content type: text/plain
Description: An example for ZikoMath
Class: Ziko Math
Perform simple common math operations
Author: By
Last change:
Date: 9 years ago
Size: 671 bytes
 

Contents

Class file image Download
<!doctype html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <title>Math Class</title>
    <style type="text/css">

        @font-face {
            font-family: 'CaviarDreams';
            src: url('Fonts/CaviarDreams.eot');
            src: url('Fonts/CaviarDreams.eot') format('embedded-opentype'),
            url('Fonts/CaviarDreams.woff2') format('woff2'),
            url('Fonts/CaviarDreams.woff') format('woff'),
            url('Fonts/CaviarDreams.ttf') format('truetype'),
            url('Fonts/CaviarDreams.svg#CaviarDreams') format('svg');
        }

        html {
            font-family: 'CaviarDreams';
        }

    </style>
</head>
<body>

</body>
</html>
<?php

require_once('Math.php');
echo
Math::diffCos(60);

?>