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
658 B
23 lines
658 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="brew.png" />
|
|
<h1>BEER CATALOG</h1>
|
|
<ul class="catalog">
|
|
</ul>
|
|
</body>
|
|
</html>
|
|
|