18 lines
533 B
HTML
18 lines
533 B
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<link rel="stylesheet" href="style.css">
|
|
<link rel="icon" href="favicon.png" type="image/png">
|
|
<meta charset="UTF-8">
|
|
<title>Кот</title>
|
|
</head>
|
|
<body>
|
|
<h1>Random Cat Pictures</h1>
|
|
<img id="cat-img" src="" alt="Random cat picture">
|
|
<button onclick="getCat()">Get Random Cat Picture</button>
|
|
<script src="script.js"></script>
|
|
<footer>
|
|
<a href="https://codeberg.org/PurpleBored/cat-pics">View Source Code</a>
|
|
</footer>
|
|
</body>
|
|
</html> |