603 lines
20 KiB
HTML
603 lines
20 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>Blog - Fetch Metrics | Dog Training Business Insights</title>
|
|
<meta name="description" content="Expert insights, tips, and strategies for professional dog trainers. Learn how to grow your training business with Fetch Metrics.">
|
|
<style>
|
|
* {
|
|
margin: 0;
|
|
padding: 0;
|
|
box-sizing: border-box;
|
|
}
|
|
|
|
body {
|
|
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
|
|
line-height: 1.6;
|
|
color: #333;
|
|
background-color: #f8f9fa;
|
|
}
|
|
|
|
/* Header */
|
|
.header {
|
|
background: linear-gradient(135deg, #2c5282 0%, #3182ce 100%);
|
|
color: white;
|
|
padding: 1rem 0;
|
|
box-shadow: 0 2px 10px rgba(0,0,0,0.1);
|
|
}
|
|
|
|
.container {
|
|
max-width: 1200px;
|
|
margin: 0 auto;
|
|
padding: 0 20px;
|
|
}
|
|
|
|
.nav {
|
|
display: flex;
|
|
justify-content: space-between;
|
|
align-items: center;
|
|
margin-bottom: 2rem;
|
|
}
|
|
|
|
.logo {
|
|
font-size: 1.5rem;
|
|
font-weight: bold;
|
|
color: #ff6b35;
|
|
}
|
|
|
|
.nav-links {
|
|
display: flex;
|
|
list-style: none;
|
|
gap: 2rem;
|
|
}
|
|
|
|
.nav-links a {
|
|
color: white;
|
|
text-decoration: none;
|
|
transition: color 0.3s;
|
|
}
|
|
|
|
.nav-links a:hover {
|
|
color: #ff6b35;
|
|
}
|
|
|
|
.blog-header {
|
|
text-align: center;
|
|
padding: 2rem 0;
|
|
}
|
|
|
|
.blog-header h1 {
|
|
font-size: 2.5rem;
|
|
margin-bottom: 1rem;
|
|
}
|
|
|
|
.blog-header p {
|
|
font-size: 1.2rem;
|
|
opacity: 0.9;
|
|
max-width: 600px;
|
|
margin: 0 auto;
|
|
}
|
|
|
|
/* Main Content */
|
|
.main-content {
|
|
padding: 3rem 0;
|
|
}
|
|
|
|
.blog-grid {
|
|
display: grid;
|
|
grid-template-columns: 2fr 1fr;
|
|
gap: 3rem;
|
|
margin-bottom: 3rem;
|
|
}
|
|
|
|
/* Featured Post */
|
|
.featured-post {
|
|
background: white;
|
|
border-radius: 12px;
|
|
overflow: hidden;
|
|
box-shadow: 0 4px 20px rgba(0,0,0,0.1);
|
|
transition: transform 0.3s, box-shadow 0.3s;
|
|
}
|
|
|
|
.featured-post:hover {
|
|
transform: translateY(-5px);
|
|
box-shadow: 0 8px 30px rgba(0,0,0,0.15);
|
|
}
|
|
|
|
.featured-image {
|
|
height: 300px;
|
|
background: linear-gradient(45deg, #ff6b35, #f093fb);
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
color: white;
|
|
font-size: 3rem;
|
|
}
|
|
|
|
.featured-content {
|
|
padding: 2rem;
|
|
}
|
|
|
|
.post-category {
|
|
display: inline-block;
|
|
background: #ff6b35;
|
|
color: white;
|
|
padding: 0.3rem 1rem;
|
|
border-radius: 20px;
|
|
font-size: 0.8rem;
|
|
font-weight: 600;
|
|
margin-bottom: 1rem;
|
|
}
|
|
|
|
.featured-content h2 {
|
|
font-size: 1.8rem;
|
|
margin-bottom: 1rem;
|
|
color: #2d3748;
|
|
line-height: 1.3;
|
|
}
|
|
|
|
.post-excerpt {
|
|
color: #666;
|
|
margin-bottom: 1.5rem;
|
|
line-height: 1.7;
|
|
}
|
|
|
|
.post-meta {
|
|
display: flex;
|
|
align-items: center;
|
|
gap: 1rem;
|
|
font-size: 0.9rem;
|
|
color: #888;
|
|
margin-bottom: 1rem;
|
|
}
|
|
|
|
.read-more {
|
|
display: inline-flex;
|
|
align-items: center;
|
|
color: #3182ce;
|
|
text-decoration: none;
|
|
font-weight: 600;
|
|
transition: color 0.3s;
|
|
}
|
|
|
|
.read-more:hover {
|
|
color: #2c5282;
|
|
}
|
|
|
|
.read-more::after {
|
|
content: ' →';
|
|
margin-left: 0.5rem;
|
|
transition: margin-left 0.3s;
|
|
}
|
|
|
|
.read-more:hover::after {
|
|
margin-left: 1rem;
|
|
}
|
|
|
|
/* Sidebar */
|
|
.sidebar {
|
|
display: flex;
|
|
flex-direction: column;
|
|
gap: 2rem;
|
|
}
|
|
|
|
.sidebar-widget {
|
|
background: white;
|
|
padding: 2rem;
|
|
border-radius: 12px;
|
|
box-shadow: 0 2px 15px rgba(0,0,0,0.08);
|
|
}
|
|
|
|
.widget-title {
|
|
font-size: 1.3rem;
|
|
margin-bottom: 1.5rem;
|
|
color: #2d3748;
|
|
border-bottom: 2px solid #ff6b35;
|
|
padding-bottom: 0.5rem;
|
|
}
|
|
|
|
.category-list {
|
|
list-style: none;
|
|
}
|
|
|
|
.category-list li {
|
|
padding: 0.8rem 0;
|
|
border-bottom: 1px solid #e2e8f0;
|
|
display: flex;
|
|
justify-content: space-between;
|
|
}
|
|
|
|
.category-list li:last-child {
|
|
border-bottom: none;
|
|
}
|
|
|
|
.category-list a {
|
|
color: #4a5568;
|
|
text-decoration: none;
|
|
transition: color 0.3s;
|
|
}
|
|
|
|
.category-list a:hover {
|
|
color: #3182ce;
|
|
}
|
|
|
|
.post-count {
|
|
background: #e2e8f0;
|
|
color: #4a5568;
|
|
padding: 0.2rem 0.6rem;
|
|
border-radius: 12px;
|
|
font-size: 0.8rem;
|
|
}
|
|
|
|
.recent-posts {
|
|
list-style: none;
|
|
}
|
|
|
|
.recent-post-item {
|
|
padding: 1rem 0;
|
|
border-bottom: 1px solid #e2e8f0;
|
|
}
|
|
|
|
.recent-post-item:last-child {
|
|
border-bottom: none;
|
|
}
|
|
|
|
.recent-post-title {
|
|
font-weight: 600;
|
|
color: #2d3748;
|
|
text-decoration: none;
|
|
transition: color 0.3s;
|
|
display: block;
|
|
margin-bottom: 0.3rem;
|
|
}
|
|
|
|
.recent-post-title:hover {
|
|
color: #3182ce;
|
|
}
|
|
|
|
.recent-post-date {
|
|
font-size: 0.8rem;
|
|
color: #888;
|
|
}
|
|
|
|
/* Blog Posts Grid */
|
|
.blog-posts-grid {
|
|
display: grid;
|
|
grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
|
|
gap: 2rem;
|
|
margin-top: 2rem;
|
|
}
|
|
|
|
.blog-post-card {
|
|
background: white;
|
|
border-radius: 12px;
|
|
overflow: hidden;
|
|
box-shadow: 0 2px 15px rgba(0,0,0,0.08);
|
|
transition: transform 0.3s, box-shadow 0.3s;
|
|
}
|
|
|
|
.blog-post-card:hover {
|
|
transform: translateY(-3px);
|
|
box-shadow: 0 6px 25px rgba(0,0,0,0.12);
|
|
}
|
|
|
|
.post-image {
|
|
height: 200px;
|
|
background: linear-gradient(45deg, #667eea, #764ba2);
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
color: white;
|
|
font-size: 2rem;
|
|
}
|
|
|
|
.post-content {
|
|
padding: 1.5rem;
|
|
}
|
|
|
|
.post-content h3 {
|
|
font-size: 1.3rem;
|
|
margin-bottom: 1rem;
|
|
color: #2d3748;
|
|
line-height: 1.3;
|
|
}
|
|
|
|
/* Newsletter Signup */
|
|
.newsletter-form {
|
|
display: flex;
|
|
flex-direction: column;
|
|
gap: 1rem;
|
|
}
|
|
|
|
.newsletter-input {
|
|
padding: 1rem;
|
|
border: 2px solid #e2e8f0;
|
|
border-radius: 8px;
|
|
font-size: 1rem;
|
|
transition: border-color 0.3s;
|
|
}
|
|
|
|
.newsletter-input:focus {
|
|
outline: none;
|
|
border-color: #3182ce;
|
|
}
|
|
|
|
.newsletter-btn {
|
|
background: #ff6b35;
|
|
color: white;
|
|
border: none;
|
|
padding: 1rem;
|
|
border-radius: 8px;
|
|
font-size: 1rem;
|
|
font-weight: 600;
|
|
cursor: pointer;
|
|
transition: background 0.3s;
|
|
}
|
|
|
|
.newsletter-btn:hover {
|
|
background: #e55a2b;
|
|
}
|
|
|
|
/* Footer */
|
|
.footer {
|
|
background: #2d3748;
|
|
color: white;
|
|
text-align: center;
|
|
padding: 2rem 0;
|
|
margin-top: 4rem;
|
|
}
|
|
|
|
/* Responsive */
|
|
@media (max-width: 768px) {
|
|
.nav {
|
|
flex-direction: column;
|
|
gap: 1rem;
|
|
text-align: center;
|
|
}
|
|
|
|
.nav-links {
|
|
flex-wrap: wrap;
|
|
justify-content: center;
|
|
}
|
|
|
|
.blog-header h1 {
|
|
font-size: 2rem;
|
|
}
|
|
|
|
.blog-grid {
|
|
grid-template-columns: 1fr;
|
|
gap: 2rem;
|
|
}
|
|
|
|
.blog-posts-grid {
|
|
grid-template-columns: 1fr;
|
|
}
|
|
|
|
.featured-content h2 {
|
|
font-size: 1.5rem;
|
|
}
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<!-- Header -->
|
|
<header class="header">
|
|
<div class="container">
|
|
<nav class="nav">
|
|
<div class="logo">🐕 Fetch Metrics</div>
|
|
<ul class="nav-links">
|
|
<li><a href="#home">Home</a></li>
|
|
<li><a href="#features">Features</a></li>
|
|
<li><a href="#pricing">Pricing</a></li>
|
|
<li><a href="#blog">Blog</a></li>
|
|
<li><a href="#contact">Contact</a></li>
|
|
</ul>
|
|
</nav>
|
|
|
|
<div class="blog-header">
|
|
<h1>Dog Training Business Insights</h1>
|
|
<p>Expert tips, industry trends, and practical advice to help you grow your professional dog training business</p>
|
|
</div>
|
|
</div>
|
|
</header>
|
|
|
|
<!-- Main Content -->
|
|
<main class="main-content">
|
|
<div class="container">
|
|
<div class="blog-grid">
|
|
<!-- Featured Post -->
|
|
<article class="featured-post">
|
|
<div class="featured-image">🎯</div>
|
|
<div class="featured-content">
|
|
<span class="post-category">Business Growth</span>
|
|
<h2>How to Scale Your Dog Training Business from 25 to 100+ Clients</h2>
|
|
<div class="post-meta">
|
|
<span>📅 March 15, 2025</span>
|
|
<span>⏱️ 8 min read</span>
|
|
<span>👤 Sarah Mitchell</span>
|
|
</div>
|
|
<p class="post-excerpt">
|
|
Discover the proven strategies successful trainers use to systematically grow their client base while maintaining quality training standards. Learn about pricing models, scheduling systems, and client management techniques that actually work.
|
|
</p>
|
|
<a href="#" class="read-more">Read Full Article</a>
|
|
</div>
|
|
</article>
|
|
|
|
<!-- Sidebar -->
|
|
<aside class="sidebar">
|
|
<!-- Categories -->
|
|
<div class="sidebar-widget">
|
|
<h3 class="widget-title">Categories</h3>
|
|
<ul class="category-list">
|
|
<li>
|
|
<a href="#">Business Management</a>
|
|
<span class="post-count">12</span>
|
|
</li>
|
|
<li>
|
|
<a href="#">Training Techniques</a>
|
|
<span class="post-count">8</span>
|
|
</li>
|
|
<li>
|
|
<a href="#">Client Relations</a>
|
|
<span class="post-count">15</span>
|
|
</li>
|
|
<li>
|
|
<a href="#">Marketing & Growth</a>
|
|
<span class="post-count">6</span>
|
|
</li>
|
|
<li>
|
|
<a href="#">Technology & Tools</a>
|
|
<span class="post-count">9</span>
|
|
</li>
|
|
<li>
|
|
<a href="#">Industry News</a>
|
|
<span class="post-count">4</span>
|
|
</li>
|
|
</ul>
|
|
</div>
|
|
|
|
<!-- Recent Posts -->
|
|
<div class="sidebar-widget">
|
|
<h3 class="widget-title">Recent Posts</h3>
|
|
<ul class="recent-posts">
|
|
<li class="recent-post-item">
|
|
<a href="#" class="recent-post-title">5 Essential Commands Every Dog Owner Should Master</a>
|
|
<div class="recent-post-date">March 12, 2025</div>
|
|
</li>
|
|
<li class="recent-post-item">
|
|
<a href="#" class="recent-post-title">Creating Effective Training Reports for Your Clients</a>
|
|
<div class="recent-post-date">March 10, 2025</div>
|
|
</li>
|
|
<li class="recent-post-item">
|
|
<a href="#" class="recent-post-title">Handling Difficult Dogs: Professional Strategies</a>
|
|
<div class="recent-post-date">March 8, 2025</div>
|
|
</li>
|
|
<li class="recent-post-item">
|
|
<a href="#" class="recent-post-title">Pricing Your Training Services: A Complete Guide</a>
|
|
<div class="recent-post-date">March 5, 2025</div>
|
|
</li>
|
|
</ul>
|
|
</div>
|
|
|
|
<!-- Newsletter Signup -->
|
|
<div class="sidebar-widget">
|
|
<h3 class="widget-title">Stay Updated</h3>
|
|
<p style="margin-bottom: 1rem; color: #666;">Get weekly insights and tips delivered to your inbox.</p>
|
|
<form class="newsletter-form">
|
|
<input type="email" class="newsletter-input" placeholder="Your email address" required>
|
|
<button type="submit" class="newsletter-btn">Subscribe Now</button>
|
|
</form>
|
|
</div>
|
|
</aside>
|
|
</div>
|
|
|
|
<!-- More Blog Posts -->
|
|
<section class="blog-posts-grid">
|
|
<article class="blog-post-card">
|
|
<div class="post-image">📊</div>
|
|
<div class="post-content">
|
|
<span class="post-category">Analytics</span>
|
|
<h3>Understanding Your Training Success Metrics</h3>
|
|
<div class="post-meta">
|
|
<span>📅 March 13, 2025</span>
|
|
<span>⏱️ 6 min read</span>
|
|
</div>
|
|
<p class="post-excerpt">
|
|
Learn which metrics matter most for measuring training progress and client satisfaction.
|
|
</p>
|
|
<a href="#" class="read-more">Read More</a>
|
|
</div>
|
|
</article>
|
|
|
|
<article class="blog-post-card">
|
|
<div class="post-image">🤝</div>
|
|
<div class="post-content">
|
|
<span class="post-category">Client Relations</span>
|
|
<h3>Building Long-term Client Relationships</h3>
|
|
<div class="post-meta">
|
|
<span>📅 March 11, 2025</span>
|
|
<span>⏱️ 5 min read</span>
|
|
</div>
|
|
<p class="post-excerpt">
|
|
Strategies for maintaining strong relationships with clients beyond the initial training period.
|
|
</p>
|
|
<a href="#" class="read-more">Read More</a>
|
|
</div>
|
|
</article>
|
|
|
|
<article class="blog-post-card">
|
|
<div class="post-image">💡</div>
|
|
<div class="post-content">
|
|
<span class="post-category">Training Techniques</span>
|
|
<h3>Command Dictionary: Essential Training Signals</h3>
|
|
<div class="post-meta">
|
|
<span>📅 March 9, 2025</span>
|
|
<span>⏱️ 7 min read</span>
|
|
</div>
|
|
<p class="post-excerpt">
|
|
A comprehensive guide to standardizing commands and hand signals for consistent training results.
|
|
</p>
|
|
<a href="#" class="read-more">Read More</a>
|
|
</div>
|
|
</article>
|
|
|
|
<article class="blog-post-card">
|
|
<div class="post-image">🚀</div>
|
|
<div class="post-content">
|
|
<span class="post-category">Business Growth</span>
|
|
<h3>Digital Marketing for Dog Trainers in 2025</h3>
|
|
<div class="post-meta">
|
|
<span>📅 March 7, 2025</span>
|
|
<span>⏱️ 9 min read</span>
|
|
</div>
|
|
<p class="post-excerpt">
|
|
Modern marketing strategies that actually work for professional dog training businesses.
|
|
</p>
|
|
<a href="#" class="read-more">Read More</a>
|
|
</div>
|
|
</article>
|
|
|
|
<article class="blog-post-card">
|
|
<div class="post-image">🎓</div>
|
|
<div class="post-content">
|
|
<span class="post-category">Professional Development</span>
|
|
<h3>Advanced Certification: Is It Worth It?</h3>
|
|
<div class="post-meta">
|
|
<span>📅 March 6, 2025</span>
|
|
<span>⏱️ 4 min read</span>
|
|
</div>
|
|
<p class="post-excerpt">
|
|
Exploring the ROI of advanced certifications and specialized training for professional trainers.
|
|
</p>
|
|
<a href="#" class="read-more">Read More</a>
|
|
</div>
|
|
</article>
|
|
|
|
<article class="blog-post-card">
|
|
<div class="post-image">📱</div>
|
|
<div class="post-content">
|
|
<span class="post-category">Technology</span>
|
|
<h3>Why Paper Records Are Holding You Back</h3>
|
|
<div class="post-meta">
|
|
<span>📅 March 4, 2025</span>
|
|
<span>⏱️ 6 min read</span>
|
|
</div>
|
|
<p class="post-excerpt">
|
|
The hidden costs of manual record-keeping and how digital solutions transform training businesses.
|
|
</p>
|
|
<a href="#" class="read-more">Read More</a>
|
|
</div>
|
|
</article>
|
|
</section>
|
|
</div>
|
|
</main>
|
|
|
|
<!-- Footer -->
|
|
<footer class="footer">
|
|
<div class="container">
|
|
<p>© 2025 Fetch Metrics. Empowering professional dog trainers across the UK.</p>
|
|
</div>
|
|
</footer>
|
|
</body>
|
|
</html> |