<?php
$Strings = explode("\n", file_get_contents('compliment.txt'));
$String = $Strings[rand(0), count($Strings) - 1];
?>
<!DOCTYPE html>
<html lang="en">
<head>
<meta property="og:title" content="<?= $String ?>">
</head>
<body>
<div id="compliment"><?= $String ?></div>
</body>
</html>