Files
webdev-site/index.html
2025-02-22 17:28:20 -05:00

50 lines
2.7 KiB
HTML

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>D@N Tech - Web Development Services</title>
<!-- Bootstrap CSS and JS -->
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.3/dist/css/bootstrap.min.css" integrity="sha384-QWTKZyjpPEjISv5WaRU9OFeRpok6YctnYmDr5pNlyT2bRjXh0JMhjY6hW+ALEwIH" crossorigin="anonymous">
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.3.3/dist/js/bootstrap.min.js" integrity="sha384-0pUGZvbkm6XF6gxjEnlmuGrJXVbNuzT9qBBavbLwCsOGabYfZo0T0to5eqruptLy" crossorigin="anonymous"></script>
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.3.3/dist/js/bootstrap.bundle.min.js" integrity="sha384-YvpcrYf0tY3lHB60NNkmXc5s9fDVZLESaAA55NDzOxhy9GkcIdslK1eN7N6jIeHz" crossorigin="anonymous"></script>
<link rel="stylesheet" href="styles.css">
<style>
html {
scroll-behavior: smooth;
}
</style>
</head>
<body>
<header class="text-center py-3">
<h1 style="color: var(--bs-secondary);">D@N Tech</h1>
<p>Your partner in web development</p>
<p><a href="https://dustin.coffee" target="_blank">Visit my main site</a></p>
</header>
<div class="container mt-4">
<h2>About Us</h2>
<p>Welcome to D@N Tech! We specialize in creating stunning and efficient websites for businesses of all sizes. Our team of experienced developers is dedicated to delivering high-quality web solutions that meet your unique needs.</p>
<h2>Services</h2>
<ul class="list-group">
<li class="list-group-item">Custom Website Development</li>
<li class="list-group-item">Responsive Design</li>
<li class="list-group-item">E-commerce Solutions</li>
<li class="list-group-item">SEO Optimization</li>
<li class="list-group-item">Website Maintenance</li>
</ul>
<h2>Contact Us</h2>
<p>For inquiries, please email us at <a href="mailto:info@dustin.coffee">info@dustin.coffee</a></p>
<p>View your invoices at <a href="https://invoice.dustin.coffee" target="_blank">invoice.dustin.coffee</a></p>
</div>
<footer class="bg-dark text-white text-center py-3 mt-4">
<p>&copy; <span id="currentYear"></span> D@N Tech. All rights reserved.</p>
<p><a href="tos.html" class="text-white">Terms of Service</a> | <a href="privacy.html" class="text-white">Privacy Policy</a></p>
</footer>
<script>
// Display the current year in the footer
document.getElementById('currentYear').textContent = new Date().getFullYear();
</script>
</body>
</html>