-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathfocus.html
More file actions
58 lines (55 loc) · 2.3 KB
/
Copy pathfocus.html
File metadata and controls
58 lines (55 loc) · 2.3 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="styles.css">
<title>Focus Areas - Dadseyeview</title>
</head>
<body>
<header>
<img src="https://example.com/your-logo.png" alt="Dadseyeview Logo" class="logo">
<div class="header-container">
<h1>Focus Areas</h1>
</div>
</header>
<nav class="sticky-nav">
<div class="nav-container">
<ul>
<li><a href="index.html">Home</a></li>
<li><a href="about.html">About</a></li>
<li><a href="blog.html">Blog</a></li>
<li><a href="contact.html">Contact</a></li>
</ul>
</div>
</nav>
<div class="container">
<section id="focus">
<h2>Focus Areas</h2>
<div class="focus-item">
<h3>Affordability Challenges</h3>
<p>Practical insights and stories about how we make it work in an expensive place like Orange County—from groceries to school fees to family outings that don’t break the bank.</p>
</div>
<div class="focus-item">
<h3>Navigating School Systems</h3>
<p>Tips, tricks, and tales from my journey through the education system for three kids, from preschools to elementary choices and beyond.</p>
</div>
<div class="focus-item">
<h3>Work-Life Balance</h3>
<p>How we juggle demanding work schedules while making time for bedtime stories, soccer practices, and family dinners. Honest reflections on what works and what doesn’t.</p>
</div>
<div class="focus-item">
<h3>Family Activities</h3>
<p>A curated list of activities—from beaches and parks to hidden gems—that we’ve loved, all tried and tested by our own family adventures.</p>
</div>
</section>
</div>
<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>