battles/bench.php

22 lines
885 B
PHP
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<link href="css/main.css" rel="stylesheet"/>
<title>Скамейка</title>
</head>
<body>
<a onclick="returned()"> на главную</a>
<h1>Скамейка</h1>
<p>
Если вы устали от шума боев и суеты центральных улиц, вы можете отдохнуть на скамейке под тенью парковых деревьев...<br>
Здесь можно, уединившись, подумать о вечном, назначить романтическое свидание или просто спокойно поболтать.<br>
Если только местные хулиганы не помешают вам
</p>
<script>
function returned() {
location.href='city.php?bps=1&tmp='+Math.random();
}
</script>
</body>
</html>