diff options
Diffstat (limited to 'header.php')
| -rw-r--r-- | header.php | 30 |
1 files changed, 30 insertions, 0 deletions
diff --git a/header.php b/header.php new file mode 100644 index 0000000..082135a --- /dev/null +++ b/header.php @@ -0,0 +1,30 @@ +<!doctype html> +<html> +<head> + <meta charset="utf-8"> + <link rel="stylesheet" href="//maxcdn.bootstrapcdn.com/bootstrap/3.2.0/css/bootstrap.min.css"> + <title>Check HTTP Headers online!</title> + <meta name="viewport" content="width=device-width, initial-scale=1.0"> + <link rel='shortcut icon' href='/favicon.ico' type='image/x-icon'> +</head> +<body> + <nav class="navbar navbar-default navbar-custom" role="navigation"> + <div class="container"> + <div class="navbar-header"> + <a class="navbar-brand" href="">Home</a> + </div> + </div> + </nav> +<div class="container"> + <div class="text-center"> + <div class="row"> + <pre> +<?php + require 'getheader.php'; + echo $header; +?> + </pre> + </div> + </div> +</div> +</body> |
