olomana/homepage/website/services.html
2024-05-18 02:08:36 -07:00

56 lines
1.8 KiB
HTML

<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Services | PWS</title>
<link href="https://fonts.googleapis.com/css2?family=Montserrat:wght@600&family=Roboto&display=swap" rel="stylesheet">
<link rel="stylesheet" href="styles.css">
</head>
<body>
<header>
<div class="container">
<div class="logo">PWS</div>
<nav>
<a href="index.html" class="nav-button">Home</a>
</nav>
</div>
</header>
<section id="home" class="hero">
<div class="container">
<h1>PWS Services</h1>
<p>Check out some of the PWS services!</p>
</div>
</section>
<section id="services" class="sub-section">
<div class="container">
<div class="service-entry">
<img src="static/image.png" alt="Service Image 1">
<div class="service-text">
<h2>Service Title 1</h2>
<p>Coming soon</p>
</div>
</div>
<div class="service-entry">
<img src="static/image.png" alt="Service Image 2">
<div class="service-text">
<h2>Service Title 2</h2>
<p>Coming soon</p>
</div>
</div>
<!-- Add more service entries as needed -->
</div>
</section>
<footer>
<div class="container">
<p>&copy; 2024 PWS. All rights reserved.</p>
<div class="social-media">
<a href="https://github.com/whitney-server">Github</a>
</div>
</div>
</footer>
<script src="script.js"></script>
</body>
</html>