d479-prototype/food-and-attractions.html

73 lines
3.0 KiB
HTML
Raw Normal View History

2024-11-13 04:34:51 +00:00
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Food & Attractions - Island of Taniti</title>
<link rel="stylesheet" href="styles.css">
</head>
<body>
<header>
<img src="icons/island.svg" />
<p>ISLAND OF TANITI</p>
<ul>
<li><a href="index.html">HOME</a></li>
<li><a href="food-and-attractions.html">FOOD & ATTRACTIONS</a></li>
<li><a href="lodging.html">LODGING</a></li>
<li><a href="transportation.html">TRANSPORTATION</a></li>
<li><a href="faqs.html">FAQs</a></li>
</ul>
</header>
2024-11-15 03:57:59 +00:00
<div id="content">
2024-11-13 04:34:51 +00:00
2024-11-15 03:57:59 +00:00
<h1>See the sights and eat some grub!</h1>
<h2>Food</h2>
<div class="split-container">
<div class="fifty-percent">
<h3>Restaurants</h3>
<p>Taniti currently has 10 restaurants: five serve mostly local fish and rice, three serve American-style meals, and two serve Pan-Asian cuisine.</p>
</div>
<div class="image-container-right"><img src="images/tropical-forest-restaurant.jpg" alt="Beach diner"></div>
</div>
<div class="split-container">
<div>
<h3>Grocery stores</h3>
<p>Taniti has two supermarkets, two smaller grocery stores, and one convenience store that is open 24 hours a day. </p>
</div>
<div class="image-container-left"><img src="images/Dining_Bluewater.jpg" alt=""></div>
</div>
<h2>Attractions</h2>
<div class="split-container">
<div>
<h3>Entertainment</h3>
<p>Most people visit Taniti to enjoy the beaches, explore the rainforest, and to visit the volcano. However, there are other things to do, including visiting a local history museum, going on chartered fishing tours, snorkeling, zip-lining in the rainforest, visiting several pubs, including a microbrewery, dancing at a new dance club, seeing a movie, taking helicopter rides, playing at an arcade, visiting art galleries, and bowling. Also, a nine-hole golf course should be operational by next year. Many of these activities are located in Merriton Landing, which is a rapidly developing area on the north side of Yellow Leaf Bay. </p>
</div>
<div class="image-container-right"><img src="images/rock-climbing.jpg" alt=""></div>
</div>
<div class="split-container">
<div>
<h3>Sight-Seeing</h3>
<p>Most tourists spend most of their time in Taniti City, which boasts native architecture and nearby white, sandy beaches that encircle Yellow Leaf Bay. Other popular activities include boat or bus tours of the island, hikes in the rainforest, or visits to Tanitis active volcano.</p>
</div>
<div class="image-container-left"><img src="images/active-volcano-tour.jpg" alt=""></div>
</div>
</div>
<footer>
<ul>
<li>Design by <a href="https://bellsworne.com">Bellsworne Tech</a></li> |
<li><a href="https://git.bellsworne.tech/chrisbell/d479-prototype">Page source</a></li> |
<li>&copy;2024</li>
</ul>
</footer>
2024-11-13 04:34:51 +00:00
</body>
</html>