mirror of
https://github.com/runyanjake/olomana.git
synced 2025-10-04 21:27:29 -07:00
47 lines
1.6 KiB
HTML
47 lines
1.6 KiB
HTML
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>PWS | Pinner Web Services</title>
|
|
<link href="https://fonts.googleapis.com/css2?family=Montserrat:wght@600&family=Roboto&display=swap" rel="stylesheet">
|
|
<link rel="stylesheet" href="styles.css">
|
|
<link rel="icon" href="/static/favicon.ico" type="image/x-icon">
|
|
</head>
|
|
<body>
|
|
<header>
|
|
<div class="container">
|
|
<div class="logo">PWS</div>
|
|
<nav>
|
|
<a href="about.html" class="nav-button">About</a>
|
|
<a href="services.html" class="nav-button">Services</a>
|
|
</nav>
|
|
</div>
|
|
</header>
|
|
|
|
<section id="home" class="hero">
|
|
<div class="container">
|
|
<h1>PWS | Pinner Web Services</h1>
|
|
<p>Experience the ultimate web service tailored just for you.</p>
|
|
<a href="about.html" class="cta-button">Learn More</a>
|
|
</div>
|
|
</section>
|
|
|
|
<section id="quote-of-the-day" class="sub-section">
|
|
<div class="container">
|
|
<h2>Quote of the Day</h2>
|
|
<div class="quote" id="quote-content">
|
|
<!-- Quote content delived dynamically by script.js -->
|
|
</div>
|
|
</div>
|
|
</section>
|
|
<script src="script.js"></script>
|
|
</body>
|
|
<footer>
|
|
<div class="container">
|
|
<p>© 2024 PWS. All rights reserved.</p>
|
|
<div class="social-media">
|
|
<a href="https://github.com/whitney-server">Github</a>
|
|
</div>
|
|
</div>
|
|
</footer>
|
|
</html> |