<script>
let menu = ['Gà rán', 'Gà quay', 'Gà hầm ngải cứu', 'Gà nướng mật ong', 'Cánh gà chiên'];
</script>
<h1>Menu</h1>
<ol>
{#each menu as item}
<li>{item}</li>
{/each}
</ol>
<style>
h1 {
color: red;
}
li {
font-size: 18px;
font-weight: bold;
color: #533;
}
</style>