-
Notifications
You must be signed in to change notification settings - Fork 0
/
puertoricotoday.html
65 lines (62 loc) · 5.06 KB
/
puertoricotoday.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Puerto Rico Today</title>
<link rel="stylesheet" href="css/home.css">
<link rel="apple-touch-icon" sizes="180x180" href="/apple-touch-icon.png">
<link rel="icon" type="image/png" sizes="32x32" href="/favicon-32x32.png">
<link rel="icon" type="image/png" sizes="16x16" href="/favicon-16x16.png">
<link rel="manifest" href="/site.webmanifest">
</head>
<body>
<div class="header">
<div class="headerfin">
<a href="index.html" id="home">Home</a>
<a href="puertoricotoday.html" id= "prt">Puerto Rico Today </a>
<a href="nwregion.html" id="nw">N & W Region</a>
<a href="seregion.html" id="se">S & E Region </a>
<a href="culture.html" id="culture">Music on the Island</a>
<a href="sitemap.html" id="se">Sitemap</a>
<a href="contactus.html" id="feedback">Contact Us</a>
</div>
</div>
<div id="background">
<br>
<h1>Why Visit Puerto Rico</h1>
<button type="button" onclick="bck()">Click for colors of flag</button><br><br>
<iframe id="videopr" src="https://www.youtube.com/embed/KgM-KWs9K8c" title="Puerto Rico Videor" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture" allowfullscreen></iframe><br><br>
<p2>Due to its history Puerto Rico is a very culturally rich state, from festivals year round to historical landmarks, every inch of the island has a story to tell and a person to meet. The island is full of beautiful landscapes, warm people, fascinating attractions and intriguing historical cities.</p2>
<ol><li>Food</li><br>
<p1>This maybe one of the most underrated aspects of a visit to Puerto Rico. Many believe that what will captivate them are the landscapes and historical sites but, the food in Puerto Rico is very unique as it is composed of Spanish, English and Indigenous aspects. Making Puerto Rican food very different to many foods from around the world, a particular aspect of food on the island is the amount of grease used to cook. This makes many of the dished very unhealthy but extremely delicious. In Puerto Rico’s website there is a quote from a tourist describing his first experience on the island and he states, “Heaping portions of crispy, garlicky, fried plantains; slow-roasted, succulent pork; savory rice and beans chased with a cold local beer or fruity rum cocktail, and that's just your first meal.”</p1>
<br><br>
<li>Sites</li><br>
<p1>The sites to be seen in Puerto Rico are one in a million, there are many locations in Puerto Rico that many would have to travel to different parts of the world to see but in Puerto Rico you can see them all in the island. Puerto Rico also offers one of the Seven Wonders of the World, “El Yunque.” El Yunque is the second oldest national park in the world after Yellowstone Nation Park. Puerto Rico also offers three of the five bioluminescent bays in the world all in different areas of the island making it accessible for tourists to visit at any time in the vacation. The island also offers tourists flamenco beach which was nominated in 2016-2018 the top six beach in the world by US today. The beauty among beaches is shared meaning that a grand majority of beaches will be pristine. </p1><br>
<br>
<img id="bacardi" src="images/bacardi.jpg" onmouseover="zoomin()" onmouseout="zoomout()"><li>Breweries and Distilleries</li><br>
<p1>Puerto Rico is also known for their great beers and rums, starting by the world renowned Bacardi. Puerto Rico has been home to Bacardi for almost seventy years, Bacardi is the largest privately owned distillery with more than 200 products that they produce on the island. There is also another rum distillery called the Serralles Distillery which is also a rum that is sold internationally. In terms of breweries there are two main one Cerveceria Puerto Rico which is the most well-known one and Ocean Lab Brewery the most luxurious one in the Caribbean. All of these factories offer tours for tourists where visitors have the chance to taste all their products and pair their products to different foods. To the left is a photo of the famouse Bacadi distillery. (Hover over factory image to see something cool)</p1>
</ol>
<br>
</div>
<script>
let colors = ["red", "blue", "white"],
index = 0;
document.getElementById("background").onclick = function() {
document.body.style.background = colors[index];
index = (index + 1) % colors.length;
}
function zoomin(){
let myImg = document.getElementById("bacardi");
let currWidth = myImg.clientWidth;
myImg.style.width = (currWidth + 100 ) + "px";
}
function zoomout(){
let myImg = document.getElementById("bacardi");
let currWidth = myImg.clientWidth;
myImg.style.width = (currWidth - 100 ) + "px";
}
</script>
</body>
</html>