Website Draft
Website Draft
DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Green Arc Legal | Your Business Partner for Energy Transition</title>
<style>
body {
font-family: Arial, sans-serif;
color: #333;
background-color: #f4f7f6;
margin: 0;
}
header, footer {
background-color: #2a6e3e;
color: white;
padding: 20px;
text-align: center;
}
header h1 {
font-family: 'Georgia', serif;
font-size: 2.5em;
margin: 10px 0;
}
nav {
display: flex;
justify-content: center;
background-color: #1e4d2b;
padding: 10px;
}
nav a {
color: white;
margin: 0 15px;
text-decoration: none;
font-weight: bold;
font-size: 1.1em;
}
.container {
width: 80%;
margin: auto;
overflow: hidden;
}
.section-title {
color: #2a6e3e;
font-size: 2em;
margin: 20px 0;
text-align: center;
font-family: 'Georgia', serif;
}
.about, .services, .contact, .team, .reviews {
margin-bottom: 40px;
}
.about-content {
background-color: #e0f3e5;
padding: 20px;
border-left: 6px solid #2a6e3e;
box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
margin: 20px 0;
}
.content {
padding: 20px;
line-height: 1.6;
}
.carousel {
position: relative;
width: 100%;
max-width: 600px;
margin: 0 auto;
background-color: #e0f3e5;
padding: 20px;
border-radius: 5px;
border-left: 6px solid #2a6e3e;
box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
}
.carousel-content {
display: none;
text-align: center;
font-size: 1.1em;
color: #2a6e3e;
}
.carousel-content.active {
display: block;
max-width: 90%;
margin: auto;
}
.carousel-controls {
text-align: center;
margin-top: 20px;
}
.carousel-controls button {
background-color: #2a6e3e;
color: white;
border: none;
padding: 12px 18px;
font-size: 1em;
cursor: pointer;
border-radius: 5px;
margin: 5px;
font-weight: bold;
}
.team {
display: flex;
flex-wrap: wrap;
justify-content: space-around;
}
.team-member {
background: #e9f5ec;
border-radius: 5px;
padding: 20px;
width: 100%;
max-width: 500px;
margin: 20px auto;
display: flex;
align-items: center;
box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
}
.team-member img {
width: 100px;
height: 100px;
border-radius: 5px;
margin-right: 20px;
background-color: #ccc;
}
.contact form {
display: flex;
flex-direction: column;
align-items: center;
}
.contact form input, .contact form textarea {
width: 100%;
max-width: 500px;
padding: 10px;
margin: 5px 0;
border: 1px solid #ccc;
border-radius: 5px;
}
.contact form button {
background-color: #2a6e3e;
color: white;
border: none;
padding: 10px;
border-radius: 5px;
cursor: pointer;
width: 100%;
max-width: 200px;
margin-top: 10px;
}
.placeholder-images {
display: flex;
justify-content: space-between;
margin: 20px 0;
}
.placeholder-images img {
width: 30%;
height: 150px;
background-color: #ccc;
border-radius: 5px;
}
.reviews {
text-align: center;
}
.review-carousel {
position: relative;
width: 100%;
max-width: 500px;
margin: 0 auto;
background-color: #e0f3e5;
padding: 20px;
border-radius: 5px;
border-left: 6px solid #2a6e3e;
box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
}
.review-slide {
display: none;
color: #2a6e3e;
}
.review-slide.active {
display: block;
}
.review-stars {
color: gold;
font-size: 1.5em;
}
footer p {
font-size: 0.9em;
text-align: center;
}
.map {
margin: 20px 0;
text-align: center;
}
</style>
</head>
<body>
<header>
<!-- Logo Placeholder -->
<img src="logo-placeholder.png" alt="Green Arc Legal Logo" />
<h1>Green Arc Legal</h1>
<p>Your Business Partner for Energy Transition</p>
</header>
<nav>
<a href="#about">About Us</a>
<a href="#services">Our Services</a>
<a href="#team">Our Team</a>
<a href="#contact">Contact Us</a>
</nav>
<div class="container">
<section id="about" class="about">
<h2 class="section-title">About Green Arc Legal</h2>
<div class="about-content">
<p>We specialize in providing comprehensive legal services for
renewable energy projects and initiatives in Australia & Asia. Our expertise in the
green hydrogen sector includes governance, risk management, compliance,
project financing, and cross-border transactions.</p>
<p>Our mission is to deliver customized legal strategies aligned with
your business goals, with a strong understanding of Australian and Indonesian
legal systems.</p>
</div>
<div class="placeholder-images">
<img src="placeholder-image.png" alt="Placeholder Image">
<img src="placeholder-image.png" alt="Placeholder Image">
<img src="placeholder-image.png" alt="Placeholder Image">
</div>
</section>
<section id="services" class="services">
<h2 class="section-title">Our Services</h2>
<div class="carousel">
<div class="carousel-content active">
<h3>Commercial and Business Law</h3>
<p>Expertise in drafting and negotiating contracts that align with
your business needs.</p>
</div>
<div class="carousel-content">
<h3>Project Financing</h3>
<p>Comprehensive support for obtaining financing for renewable
energy projects.</p>
</div>
<div class="carousel-content">
<h3>International Joint Ventures</h3>
<p>Guidance on cross-border ventures and establishing
partnerships in global markets.</p>
</div>
</div>
<div class="carousel-controls">
<button onclick="prevSlide()">Previous</button>
<button onclick="nextSlide()">Next</button>
</div>
<div class="placeholder-images">
<img src="placeholder-image.png" alt="Placeholder Image">
<img src="placeholder-image.png" alt="Placeholder Image">
<img src="placeholder-image.png" alt="Placeholder Image">
</div>
</section>
<footer>
<p>© 2024 Green Arc Legal - All Rights Reserved</p>
<p>Liability limited by a scheme approved under Professional Standards
Legislation</p>
</footer>
<script>
let currentSlide = 0;
const slides = document.querySelectorAll('.carousel-content');
function showSlide(index) {
slides.forEach(slide => slide.classList.remove('active'));
slides[index].classList.add('active');
}
function nextSlide() {
currentSlide = (currentSlide + 1) % slides.length;
showSlide(currentSlide);
}
function prevSlide() {
currentSlide = (currentSlide - 1 + slides.length) % slides.length;
showSlide(currentSlide);
}
let currentReview = 0;
const reviewSlides = document.querySelectorAll('.review-slide');
function showReview(index) {
reviewSlides.forEach(review => review.classList.remove('active'));
reviewSlides[index].classList.add('active');
}
function nextReview() {
currentReview = (currentReview + 1) % reviewSlides.length;
showReview(currentReview);
}
function prevReview() {
currentReview = (currentReview - 1 + reviewSlides.length) %
reviewSlides.length;
showReview(currentReview);
}
</script>
</body>
</html>