You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
31 lines
1.3 KiB
31 lines
1.3 KiB
<?php namespace App\Views\inc;
|
|
/******************************************************************************************************************
|
|
* RPSLS - Rock, Paper, Scissors, Lizard, Spock Game
|
|
*
|
|
* @file app/views/inc/head.php
|
|
* @package App\Views\inc
|
|
* @description
|
|
* View - Head portion of the Main View Pages. Includes Meta and CSS Loads.
|
|
* @author Rick Hays
|
|
* @date 11/15/2019
|
|
* @license MIT
|
|
* @copyright Copyright © 2019 - Rick Hays, All Rights Reserved.
|
|
*
|
|
* Revisions:
|
|
* YYYY-MM-DD XX Description
|
|
******************************************************************************************************************/
|
|
?>
|
|
<!DOCTYPE html>
|
|
<html lang="en" class="h-100">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
|
|
<title>Rock, Paper, Scissors, Lizard, Spock</title>
|
|
<meta name="description"
|
|
content="Simple game of Rock, Paper, Scissors, Lizard, Spock. Written in HTML and Javascript">
|
|
<meta name="author" content="Rick Hays">
|
|
<link href="assets/css/bootstrap/bootstrap.min.css" rel="stylesheet">
|
|
<link href="assets/css/sticky-footer-navbar.css" rel="stylesheet">
|
|
<link href="assets/css/game.css" rel="stylesheet">
|
|
</head>
|
|
<body class="d-flex flex-column h-100">
|
|
|