A beer catalog
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.
 
 
 

23 lines
690 B

<!doctype html>
<html>
<head>
<meta charset="UTF-8">
<title>Beer Catalog</title>
<script type='text/javascript' src='https://code.jquery.com/jquery-3.1.1.js'></script>
<script type='text/javascript' src='https://cdnjs.cloudflare.com/ajax/libs/require.js/2.3.5/require.js'></script>
<script type='text/javascript'>
require(['beer'], function (initBeerUI) {
$(document).ready(function() {
initBeerUI();
});
});
</script>
<link rel="stylesheet" type="text/css" href="beer.css">
</head>
<body>
<img src="https://brew.sh/img/homebrew-256x256.png" />
<h1>BEER CATALOG</h1>
<ul class="catalog">
</ul>
</body>
</html>