-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathhealth-nuggets.html
146 lines (132 loc) · 3.99 KB
/
health-nuggets.html
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
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Health Nuggets</title>
<style>
/* Reset basic styles */
* {
box-sizing: border-box;
margin: 0;
padding: 0;
font-family: 'Arial', sans-serif;
}
/* Body and Container Setup */
body {
display: flex;
flex-direction: column;
align-items: center;
justify-content: flex-start;
min-height: 100vh;
background: linear-gradient(135deg, #834cbd, #6f99e1);
color: #333;
}
/* Header Styles */
.main-header {
width: 100%;
background-color: #3969bd;
padding: 10px 20px;
box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
display: flex;
justify-content: space-between;
align-items: center;
color: white;
position: sticky;
top: 0;
z-index: 100;
}
/* Tagline Styling */
.tagline {
font-size: 16px;
color:#dde1ea;
font-style: italic;
text-align: center;
margin-top: 10px;
}
.logo-section {
display: flex;
align-items: center;
}
.logo {
height: 40px;
width: 40px;
margin-right: 10px;
}
.website-name {
font-size: 30px;
font-weight: bold;
color: white;
text-align: center;
margin-top: 10px;
}
.nav-links {
display: flex;
gap: 15px;
}
.nav-links a {
color: white;
text-decoration: none;
font-size: 16px;
font-weight: 500;
transition: color 0.3s ease;
}
.nav-links a:hover {
color: #cce3ff;
}
/* Main Content */
main {
padding: 20px;
max-width: 900px;
margin: 20px auto;
}
article {
margin-bottom: 20px;
padding: 20px;
border: 1px solid #ddd;
border-radius: 8px;
background-color: #fff;
box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}
h2 {
color: #333;
}
footer {
text-align: center;
margin-top: 20px;
padding: 10px 0;
font-size: 0.9rem;
}
</style>
</head>
<body>
<header class="main-header">
<div class="logo-section">
<img src="paw.png" alt="PremiumPaw Logo" class="logo">
<span class="website-name">PremiumPaw</span>
</div>
<p class="tagline">Purr-fect Predictions for Your Insurance Needs</p>
<nav class="nav-links">
<a href="insurance.html">Home</a>
<a href="profile.html">My Profile</a>
</nav>
</header>
<main>
<article>
<h2>Did you know?</h2>
<p>Honey is the only food that never spoils. Archaeologists have found pots of honey in ancient Egyptian tombs that are over 3,000 years old and still edible!</p>
</article>
<article>
<h2>Surprising Food Fact</h2>
<p>Bananas are berries, but strawberries aren’t! Botanically speaking, bananas fit the criteria of berries, while strawberries do not.</p>
</article>
<article>
<h2>Carrots Were Purple?</h2>
<p>Before the 17th century, most carrots were purple or white. Orange carrots were cultivated later to honor the Dutch royal family.</p>
</article>
</main>
<footer>
<p>© 2024 Health Nuggets Blog</p>
</footer>
</body>
</html>