You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
538 B
18 lines
538 B
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<title>Beijing Wildlife Park</title>
|
|
<link rel="stylesheet" href="/static/style.css">
|
|
</head>
|
|
<body>
|
|
<h1>Beijing Wildlife Park</h1>
|
|
<img src="/static/beijing-wildlife.jpg" alt="Wildlife in Beijing">
|
|
<p>Welcome to Beijing Wildlife Park, home to a variety of animals.</p>
|
|
<h2>Animals</h2>
|
|
<ul id="animal-list">
|
|
<!-- Animal list will be dynamically inserted here -->
|
|
</ul>
|
|
<script src="/static/script.js"></script>
|
|
</body>
|
|
</html>
|