-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
82 lines (76 loc) · 3.86 KB
/
Copy pathindex.html
File metadata and controls
82 lines (76 loc) · 3.86 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="description" content="Parenting in The OC: Tips and insights for raising children in today's challenging economy.">
<meta name="keywords" content="parenting, The OC, tips, family activities, childcare, financial planning">
<link rel="stylesheet" href="styles.css">
<title>Dadseyeview - A Dad's Perspective on Raising Three in The OC</title>
</head>
<body>
<header>
<img src="https://example.com/your-logo.png" alt="Dadseyeview Logo" class="logo">
<div class="header-container">
<h1>Dadseyeview</h1>
<p class="tagline">Navigating Challenges and Finding Joy with Young Children in The OC</p>
</div>
</header>
<nav class="sticky-nav">
<div class="nav-container">
<ul>
<li><a href="/dadseye/index.html">Home</a></li>
<li><a href="/dadseye/about.html">About</a></li>
<li><a href="/dadseye/focus.html">Focus Areas</a></li>
<li><a href="/dadseye/blog.html">Blog</a></li> <!-- Updated to blog.html -->
<li><a href="/dadseye/contact.html">Contact</a></li>
</ul>
</div>
</nav>
<!-- Hero Section -->
<section class="hero-section">
<div class="hero-text">
<h2>Welcome to Dadseyeview</h2>
<p>Sharing experiences of raising three kids in The OC. Tips, tricks, and insights for making family life more joyful and less stressful.</p>
</div>
</section>
<!-- Featured Section -->
<section class="featured-section">
<div class="featured-item">
<img src="https://example.com/featured1.jpg" alt="Family activities" class="featured-image">
<h3>Life's GOOD Overview</h3>
<p>Explore how financial freedom can transform family life through meaningful experiences, travel, giving back, and creating lasting memories.</p>
<a href="/dadseye/lifesgood.html" class="cta-button">Read Full Story</a>
</div>
<div class="featured-item">
<img src="https://example.com/featured2.jpg" alt="Parenting in OC" class="featured-image">
<h3>Parenting in The OC</h3>
<p>Practical insights on navigating parenting, affordability, and work-life balance in an expensive place like The OC.</p>
<a href="/dadseye/blog.html" class="cta-button">Explore More</a> <!-- Updated to blog.html -->
</div>
</section>
<!-- Blog Section -->
<section id="blog-content" class="blog-section">
<h2>Latest Articles</h2>
<div class="blog-item">
<img src="https://example.com/blog1.jpg" alt="Finding Balance" class="blog-image">
<h3>First Post: Finding Balance in Chaos</h3>
<p>Life with three kids can be chaotic, but finding the balance is key. Here's how we manage work, school, and fun all in one day...</p>
<a href="/dadseye/blog-post1.html" class="read-more-button">Read More</a> <!-- Corrected path -->
</div>
<div class="blog-item">
<img src="https://example.com/blog2.jpg" alt="Family Adventures" class="blog-image">
<h3>Family Adventures on a Budget</h3>
<p>Exploring The OC doesn’t have to cost a fortune. Here are some of our favorite low-cost family activities that are fun for all...</p>
<a href="/dadseye/blog-post2.html" class="read-more-button">Read More</a> <!-- Corrected path -->
</div>
</section>
<footer class="footer-container">
<p>© 2024 Dadseyeview. All rights reserved.</p>
<ul class="social-links">
<li><a href="https://twitter.com">Twitter</a></li>
<li><a href="https://instagram.com">Instagram</a></li>
</ul>
</footer>
</body>
</html>