Calculator Tools Calculator Tools
Create

Yūtoku Inari Shrine

Oct 19, 2023

About this app

Explore the Yūtoku Inari Shrine, a beautiful Shinto shrine in Saga Prefecture, Japan. Learn about its history, significance, and enjoy interactive features.

Yūtoku Inari Shrine Yūtoku Inari Shrine Yūtoku Inari Shrine is a beautiful Shinto shrine located in Saga Prefecture, Japan. It is known for its vibrant red torii gates and its association with Inari, the Shinto deity of rice and fertility. The shrine is believed to have been established in the early 17th century and has since become a popular destination for visitors seeking blessings for business prosperity, good fortune, and success in their endeavors. In addition to its architectural beauty, Yūtoku Inari Shrine offers various interactive features to enhance the visitor experience. Explore the shrine grounds, learn about its history and significance, and enjoy the tranquil atmosphere. Learn More on Wikipedia

Related apps

Put this on your site

Source

                    <html>
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width,initial-scale=1">

<title>Yūtoku Inari Shrine</title>
<meta name="description" content="Explore the Yūtoku Inari Shrine, a beautiful Shinto shrine in Saga Prefecture, Japan. Learn about its history, significance, and enjoy interactive features.">
<meta name="keywords" content="Yūtoku Inari Shrine, Shinto shrine, Saga Prefecture, Japan">

<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.6.0/jquery.min.js"></script>
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.0.2/dist/css/bootstrap.min.css" rel="stylesheet"
integrity="sha384-EVSTQN3/azprG1Anm3QDgpJLIm9Nao0Yz1ztcQTwFspd3yD65VohhpuuCOmLASjC" crossorigin="anonymous">
<link href="https://stackpath.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css" rel="stylesheet">

<script type="text/javascript">
try {
// App Javascript Goes Here. Place your entire script content inside the try block for error handling.

// This will run when the DOM is ready.
document.addEventListener("DOMContentLoaded", function() {
// Function to display the Wikipedia article in a new tab.
function openWikipedia() {
window.open("https://en.wikipedia.org/wiki/Y%C5%ABtoku+Inari+Shrine", "_blank", "noopener,noreferrer");
}

// Event listener for the Wikipedia button.
document.getElementById("wikipedia-button").addEventListener("click", openWikipedia);
});

} catch (error) {
// This will throw the error to the parent window.
throw error;
}
</script>

<style>
/* App CSS Goes Here */
body {
background-color: #f7f7f7;
font-family: 'Arial', sans-serif;
}

.header-container {
background-color: #ffcf5c;
padding: 20px;
text-align: center;
}

h1 {
color: #333333;
font-size: 32px;
font-weight: bold;
margin: 0;
}

.image-container {
text-align: center;
margin-top: 20px;
}

.image-container img {
max-width: 100%;
height: auto;
}

.content-container {
background-color: #ffffff;
padding: 20px;
margin-top: 20px;
border-radius: 10px;
}

.info {
font-size: 18px;
color: #333333;
line-height: 1.5;
margin-bottom: 20px;
}

.button-container {
text-align: center;
margin-top: 20px;
}

.button {
background-color: #ffcf5c;
color: #333333;
padding: 10px 20px;
border-radius: 5px;
font-size: 16px;
cursor: pointer;
}

.button:hover {
background-color: #ffc246;
}
</style>
</head>
<body>
<div id="main-container" class="container">
<div class="header-container">
<h1>Yūtoku Inari Shrine</h1>
</div>

<div class="image-container">
<img src="https://upload.wikimedia.org/wikipedia/commons/5/5b/Y%C5%ABtoku_Inari_Shrine_sanmon_and_main_hall.JPG" alt="Yūtoku Inari Shrine">
</div>

<div class="content-container">
<p class="info">Yūtoku Inari Shrine is a beautiful Shinto shrine located in Saga Prefecture, Japan. It is known for its vibrant red torii gates and its association with Inari, the Shinto deity of rice and fertility.</p>

<p class="info">The shrine is believed to have been established in the early 17th century and has since become a popular destination for visitors seeking blessings for business prosperity, good fortune, and success in their endeavors.</p>

<p class="info">In addition to its architectural beauty, Yūtoku Inari Shrine offers various interactive features to enhance the visitor experience. Explore the shrine grounds, learn about its history and significance, and enjoy the tranquil atmosphere.</p>

<div class="button-container">
<button id="wikipedia-button" class="button">Learn More on Wikipedia</button>
</div>
</div>
</div>
</body>
</html>