21 lines
629 B
HTML
21 lines
629 B
HTML
<!DOCTYPE html>
|
|
<meta charset="UTF-8">
|
|
<html lang="ru">
|
|
<head>
|
|
<title>Ты котя?</title>
|
|
<link rel="stylesheet" href="css/index.css"><link href="https://fonts.googleapis.com/css?family=Roboto+Mono&display=swap" rel="stylesheet">
|
|
<meta name="viewport" content="width=device-width">
|
|
|
|
</head>
|
|
<body>
|
|
<div class="container">
|
|
<div class="kotya">
|
|
<h1>Ты котя?</h1>
|
|
<input type="button" class="flex-child" id="yesbtn" value="Да" onClick='location.href="yespage.htm"'>
|
|
<input type="button" class="flex-child" id="nobtn" value="Нет" onClick='location.href="nopage.htm"'>
|
|
</div>
|
|
</div>
|
|
|
|
</body>
|
|
|
|
</html> |