This commit is contained in:
dadgam3er 2025-09-12 14:34:02 +00:00
parent a1ff23c306
commit 141f4948fe

View File

@ -6,13 +6,16 @@
<link rel="stylesheet" href="styles.css" /> <link rel="stylesheet" href="styles.css" />
</head> </head>
<body> <body>
<header> <!-- Skip to main content link for screen readers -->
<a href="#main-content" class="skip-link">Skip to main content</a>
<header role="banner">
<div class="logo-container"> <div class="logo-container">
<img src="images/1757630393.png" class="logo" alt="Global Tea Emporium Logo" /> <img src="images/1757630393.png" class="logo" alt="Global Tea Emporium Logo - Premium Authentic Teas Worldwide" />
</div> </div>
<nav class="main-nav"> <nav class="main-nav" role="navigation" aria-label="Main navigation">
<ul> <ul>
<li><a href="index.html">Home</a></li> <li><a href="index.html" aria-current="page">Home</a></li>
<li><a href="about.html">Our Story</a></li> <li><a href="about.html">Our Story</a></li>
<li><a href="teas.html">Our Teas</a></li> <li><a href="teas.html">Our Teas</a></li>
<li><a href="contact.html">Contact</a></li> <li><a href="contact.html">Contact</a></li>
@ -20,20 +23,20 @@
</nav> </nav>
</header> </header>
<main> <main id="main-content" role="main">
<section class="banner"> <section class="banner" aria-labelledby="hero-heading">
<h1>Global Tea Emporium</h1> <h1 id="hero-heading">Global Tea Emporium</h1>
<p class="tagline">Authentic Teas from Around the World</p> <p class="tagline">Authentic Teas from Around the World</p>
</section> </section>
<section class="introduction"> <section class="introduction" aria-labelledby="intro-heading">
<h2>About Our Tea Journey</h2> <h2 id="intro-heading">About Our Tea Journey</h2>
<p>Welcome to <strong>Global Tea Emporium</strong>, your premier destination for <em>authentic, premium teas</em> sourced directly from traditional tea gardens across the globe. With over <strong>15 years of experience</strong> in the tea industry, we have built relationships with <em>artisan farmers</em> and <em>tea masters</em> in the world's most renowned tea-growing regions.</p> <p>Welcome to <strong>Global Tea Emporium</strong>, your premier destination for <em>authentic, premium teas</em> sourced directly from traditional tea gardens across the globe. With over <strong>15 years of experience</strong> in the tea industry, we have built relationships with <em>artisan farmers</em> and <em>tea masters</em> in the world's most renowned tea-growing regions.</p>
<p>Our mission is to bring you the <strong>finest quality teas</strong> while supporting sustainable farming practices and preserving traditional tea-making techniques that have been passed down through <strong>generations</strong>.</p> <p>Our mission is to bring you the <strong>finest quality teas</strong> while supporting sustainable farming practices and preserving traditional tea-making techniques that have been passed down through <strong>generations</strong>.</p>
</section> </section>
<section class="services"> <section class="services" aria-labelledby="services-heading">
<h2>Our Premium Tea Collections</h2> <h2 id="services-heading">Our Premium Tea Collections</h2>
<ul class="services-list"> <ul class="services-list">
<li><strong>Asian Green Teas:</strong> Delicate sencha from Japan, dragon well from China, and matcha varieties</li> <li><strong>Asian Green Teas:</strong> Delicate sencha from Japan, dragon well from China, and matcha varieties</li>
<li><strong>Indian Black Teas:</strong> Authentic Assam, Darjeeling, and Nilgiri teas from renowned estates</li> <li><strong>Indian Black Teas:</strong> Authentic Assam, Darjeeling, and Nilgiri teas from renowned estates</li>
@ -45,7 +48,7 @@
</section> </section>
</main> </main>
<footer> <footer role="contentinfo">
<p>&copy; 2024 Global Tea Emporium. All rights reserved.</p> <p>&copy; 2024 Global Tea Emporium. All rights reserved.</p>
<p>Visit our <a href="about.html">Our Story page</a> to learn more about our tea journey.</p> <p>Visit our <a href="about.html">Our Story page</a> to learn more about our tea journey.</p>
</footer> </footer>