-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
20 lines (20 loc) · 793 Bytes
/
Copy pathindex.html
File metadata and controls
20 lines (20 loc) · 793 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
<!DOCTYPE HTML>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="author" content="Alice">
<meta name="description" content="99 Bottles Of Beer On The Wall">
<title>99 Bottles Of Beer On The Wall</title>
<link rel="stylesheet" href="style.css">
<script src="script.js"></script>
</head>
<body>
<h1>99 Bottles Of Beer On The Wall</h1>
<p id="bottles-of-beer"></p>
<!--Empty <p> tag so the code doesn't refer to an element that doesn't exist-->
<script>
document.getElementById("bottles-of-beer").innerHTML = bottlesOfBeerOnTheWall(99).join('\n')
</script>
</body>
</html>