<!doctype html>
<?php

function redirectTohttps() {

if($_SERVER[‘HTTPS’]!=”on”) {

$redirect= “https://”.$_SERVER[‘HTTP_HOST’].$_SERVER[‘REQUEST_URI’];

header(“Location:$redirect”); } }

?>
<html>
<head>
<meta charset="UTF-8">
<title>BOONE AG</title>
<link href="booneag.css" rel="stylesheet" type="text/css">
</head>

<body>
	
	<div class="container">
  <img  src="booneag_logo.png"/>
</div>

	
</body>
</html>
