Nantes Université

Skip to content
Extraits de code Groupes Projets
Valider 8130c3b7 rédigé par Gabin LAVAZAIS's avatar Gabin LAVAZAIS
Parcourir les fichiers

tuto nginx

parent 13ca4b81
Aucune branche associée trouvée
Aucune étiquette associée trouvée
Aucune requête de fusion associée trouvée
FROM docker.io/nginx:1.25
RUN rm /usr/share/nginx/html/*
COPY ./*.html /usr/share/nginx/html/index.html
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Burma Natural Gems</title>
<style>
body {
font-family: Arial, sans-serif;
background-color: #f3f4f6;
color: #333;
margin: 0;
padding: 0;
}
header {
background-color: #b22222;
color: white;
padding: 20px 0;
text-align: center;
}
nav {
background-color: #2e8b57;
padding: 10px 0;
}
nav a {
color: white;
text-decoration: none;
padding: 14px 20px;
display: inline-block;
}
.container {
width: 80%;
margin: 20px auto;
padding: 20px;
background-color: white;
border-radius: 8px;
box-shadow: 0 0 10px rgba(0,0,0,0.1);
}
.about, .contact {
margin-bottom: 20px;
}
footer {
text-align: center;
padding: 10px 0;
background-color: #2e8b57;
color: white;
position: fixed;
width: 100%;
bottom: 0;
}
.gem-header {
color: #8b0000;
}
</style>
</head>
<body>
<header>
<h1 class="gem-header">Burma Natural Gems</h1>
<p>Natural Gems Supplier</p>
</header>
<nav>
<a href="#about">About Us</a>
<a href="#contact">Contact</a>
</nav>
<div class="container">
<section id="about" class="about">
<h2>About Us</h2>
<p>Welcome to Burma Natural Gems, your trusted supplier of exquisite natural gems. We specialize in providing high-quality rubies, sapphires, and peridots directly from the heart of Myanmar, known for its rich gem deposits.</p>
<p>Our mission is to bring the beauty and elegance of natural gemstones to jewelers, collectors, and enthusiasts around the world. With years of experience in the gem industry, we ensure that each gemstone meets the highest standards of quality and authenticity.</p>
</section>
<section id="contact" class="contact">
<h2>Contact Us</h2>
<p>We'd love to hear from you! Whether you have questions about our gemstones or need assistance with an order, please reach out to us.</p>
<p>Email: info@burmanaturalgems.com</p>
<p>Phone: +95 123 456 789</p>
<p>Address: 123 Gemstone Avenue, Yangon, Myanmar</p>
</section>
</div>
<footer>
<p>&copy; 2024 Burma Natural Gems. All rights reserved.</p>
</footer>
</body>
</html>
0% Chargement en cours ou .
You are about to add 0 people to the discussion. Proceed with caution.
Veuillez vous inscrire ou vous pour commenter