Files
thorshammerelectrical.com/Services.html
2025-11-20 23:35:55 +00:00

123 lines
4.4 KiB
HTML

<!DOCTYPE html>
<html lang="en">
<head>
<!-- Google tag (gtag.js) -->
<script async src="https://www.googletagmanager.com/gtag/js?id=G-ZJ4YKQNNG1"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'G-ZJ4YKQNNG1');
</script>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Services</title>
<link rel="stylesheet" href="styles.css" type="text/css" />
<!-- Cyborg Bootstrap Theme -->
<link href="https://cdn.jsdelivr.net/npm/bootswatch@5.3.0/dist/cyborg/bootstrap.min.css" rel="stylesheet">
<!-- Bootstrap Bundle JS -->
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.3.3/dist/js/bootstrap.bundle.min.js" integrity="sha384-YvpcrYf0tY3lHB60NNkmXc5s9fDVZLESaAA55NDzOxhy9GkcIdslK1eN7N6jIeHz" crossorigin="anonymous"></script>
<script src="https://cdn.jsdelivr.net/npm/@popperjs/core@2.11.8/dist/umd/popper.min.js" integrity="sha384-I7E8VVD/ismYTF4hNIPjVp/Zjvgyol6VFvRkX/vR+Vc4jQkC+hVqc2pM8ODewa9r" crossorigin="anonymous"></script>
<link rel="icon" href="Logo.png" sizes="16x16">
<link rel="icon" href="Logo.png" sizes="32x32">
<link rel="icon" href="Logo.png" sizes="96x96">
</head>
<body style="background-color: #000000; color: white;">
<!-- Navbar -->
<nav class="navbar navbar-expand-lg navbar-dark bg-dark">
<img src="Logo.png" width="60" height="60" alt="">
<a class="navbar-brand" href="index.html">Thor's Hammer Electrical</a>
<button class="navbar-toggler" type="button" data-bs-toggle="collapse" data-bs-target="#navbarNav" aria-controls="navbarNav" aria-expanded="false" aria-label="Toggle navigation">
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse" id="navbarNav">
<ul class="navbar-nav ms-auto">
<li class="nav-item active">
<a class="nav-link" href="About.html">About</a>
</li>
<li class="nav-item">
<a class="nav-link" href="Services.html">Services</a>
</li>
<li class="nav-item">
<a class="nav-link" href="https://help.thorshammerelectrical.com">Submit Work-Order</a>
</li>
<li class="nav-item">
<a class="nav-link" href="Review.html">Reviews</a>
</li>
</ul>
</div>
</nav>
<!-- Main Content -->
<div class="text-center my-5">
<h1 class="display-3 text-white">Our Services</h1>
<br>
<h3 class="text-white">Thor's Hammer Electrical provides a diverse spread of services.</h3>
</div>
<!-- Residential Section in Card Box -->
<div class="container my-5">
<div class="card text-white bg-dark-gray">
<div class="card-body">
<h3 class="card-title">Residential</h3>
<p class="card-text">
Our residential services are the bread and butter of Thor's Hammer. We live to serve our community members and make sure their needs are met.
</p>
</div>
</div>
</div>
<!-- Commercial Section in Card Box -->
<div class="container my-5">
<div class="card text-white bg-dark-gray">
<div class="card-body">
<h3 class="card-title">Commercial</h3>
<p class="card-text">
Part of serving your community is ensuring the needs of both the people and their businesses are met. Having spent multiple years servicing commercial products, Thor's Hammer is your go-to commercial contractor!
</p>
</div>
</div>
</div>
<!-- Jobs Completed Section in Card Box -->
<div class="container my-5">
<div class="card text-white bg-dark-gray">
<div class="card-body text-center">
<h4 class="card-title">Here are some specific jobs completed by Thor's Hammer in the past.</h4>
<br>
<h5 class="text-white">(Pictures coming soon!)</h5>
<br>
<ul class="list-unstyled text-white">
<li><h5>Christmas Lights</h5></li>
<li><h5>Cat5, Cat6, and Cat6a Network Installation</h5></li>
<li><h5>Security Camera Installation</h5></li>
<li><h5>Flood Light Installation</h5></li>
</ul>
</div>
</div>
</div>
<!-- Footer -->
<footer class="text-center text-white py-4">
<p>&copy; 2025 Thor's Hammer Electrical LLC</p>
<button class="btn btn-light">
<a href="https://www.bennyshouse.net" class="text-dark text-decoration-none">Web Design by Benny's House. Click Here to Learn More</a>
</button>
</footer>
</body>
</html>