PHP Classes

File: includes/head.php

Recommend this page to a friend!
  Classes of Martin Latter   Noter   includes/head.php   Download  
File: includes/head.php
Role: Auxiliary script
Content type: text/plain
Description: Auxiliary script
Class: Noter
Create and manage notes shared between users
Author: By
Last change: Update of includes/head.php
Date: 2 years ago
Size: 625 bytes
 

Contents

Class file image Download
<?php
declare(strict_types=1);
ini_set('date.timezone', TIMEZONE);
header('Content-Type: text/html; charset=utf-8');
?><!DOCTYPE html>

<html lang="en">

    <head>
        <meta charset="utf-8">
        <meta name="viewport" content="width=device-width,initial-scale=1">
        <title><?php echo CONFIG_APP_NAME; ?></title>
        <meta name="application-name" content="<?php echo CONFIG_APP_NAME; ?>">
        <meta name="copyright" content="&copy; <?php echo date('Y'); ?> Tinram">
        <link rel="stylesheet" type="text/css" href="css/noter.css">
        <script src="js/common.js"></script>
    </head>

    <body>