<html lang="en">
|
|
<head>
|
|
<title>Buzz buzz</title>
|
|
<meta name="description" content="That's a lot of bees!">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
|
<meta charset="UTF-8">
|
|
<script src="script.js">
|
|
</script>
|
|
<style>
|
|
#container {
|
|
width: 100%;
|
|
height: 100%;
|
|
}
|
|
|
|
.bee {
|
|
position: absolute;
|
|
top: 50px;
|
|
left: 50px;
|
|
width: 64px;
|
|
height: 64px;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<div id="container">
|
|
<button onclick="addBee()">Add bee</button>
|
|
<div id="numBeeText"></div>
|
|
</div>
|
|
</body>
|
|
</html>
|