English Breakfast fra Hanrey & Sons en blanding av sort te fra Ceylon og Kenya.
Denne typen er litt rundere i smaken enn Keemun-teen fra Classics-serien.
20 pyramideposer i en boks
En pyramidepose lager ca. 3,5 dl te - til to kopper eller en liten tekanne
Inneholder koffein
Trekk sort te i kokende vann i 5 minutter
{
let header = document.querySelector('header'); // Adjust the selector as needed
// Find the tab link element (modify the selector if necessary)
let tabLink = document.querySelector('.__lipscore_tab_link');
if (window.innerWidth < 600) {
tabLink = document.querySelector('.mobile_lipscore_tab_link');
header = document.querySelector('.__mobile-header');
}
const headerHeight = header ? header.offsetHeight : 0; // Get the height of the header
if (tabLink) {
// Dispatch a click event on the tab link
tabLink.click();
setTimeout(() => {
const targetPosition = tabLink.getBoundingClientRect().top + window.scrollY - headerHeight;
window.scrollTo({
top: targetPosition,
behavior: 'smooth' // Optional: for smooth scrolling
});
}, 100)
}
}">