-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbotpage.html
More file actions
executable file
·190 lines (159 loc) · 4.99 KB
/
Copy pathbotpage.html
File metadata and controls
executable file
·190 lines (159 loc) · 4.99 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
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
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Alex Rivera | Business Strategist Portfolio</title>
<style>
* {
box-sizing: border-box;
margin: 0;
padding: 0;
}
body {
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
color: #333;
background-color: #f9f9f9;
scroll-behavior: smooth;
}
/* ===== HEADER / HERO ===== */
header {
background: linear-gradient(
to bottom,
rgba(0,0,0,0.5),
rgba(0,0,0,0.5)
),
url('https://images.unsplash.com/photo-1521737604893-d14cc237f11d?auto=format&fit=crop&w=1400&q=80')
center/cover no-repeat;
color: #fff;
text-align: center;
padding: 120px 20px;
animation: fadeIn 2s ease-in;
}
header h1 {
font-size: 3em;
margin-bottom: 10px;
letter-spacing: 1px;
}
header p {
font-size: 1.2em;
opacity: 0.9;
}
/* ===== MAIN SECTIONS ===== */
section {
max-width: 1000px;
margin: 60px auto;
padding: 0 20px;
text-align: center;
animation: fadeUp 1.5s ease;
}
h2 {
color: #c9302c;
margin-bottom: 20px;
font-size: 1.9em;
}
.about p {
line-height: 1.8;
font-size: 1.1em;
}
/* ===== SERVICES ===== */
.services {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
gap: 20px;
}
.service-card {
background: #fff;
padding: 25px;
border-radius: 10px;
box-shadow: 0 4px 10px rgba(0,0,0,0.08);
transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.service-card:hover {
transform: translateY(-5px);
box-shadow: 0 6px 14px rgba(0,0,0,0.12);
}
.service-card h3 {
color: #c9302c;
margin-bottom: 10px;
}
/* ===== CONTACT ===== */
.contact p {
margin: 10px 0;
font-size: 1.1em;
}
a {
color: #c9302c;
text-decoration: none;
}
a:hover {
text-decoration: underline;
}
/* ===== FOOTER ===== */
footer {
background: #222;
color: #fff;
text-align: center;
padding: 30px 20px;
font-size: 0.9em;
}
footer a {
color: #ff6b6b;
}
/* ===== ANIMATIONS ===== */
@keyframes fadeIn {
from { opacity: 0; }
to { opacity: 1; }
}
@keyframes fadeUp {
from { opacity: 0; transform: translateY(20px); }
to { opacity: 1; transform: translateY(0); }
}
</style>
</head>
<body>
<header>
<h1>Alex Rivera</h1>
<p>Creative Business Strategist & Brand Consultant</p>
</header>
<section class="about">
<h2>About Me</h2>
<p>
Hello! I'm Alex Rivera — a business strategist passionate about helping brands
grow through powerful storytelling, innovative marketing, and clear digital
strategies. Over the past 8 years, I’ve helped startups and organizations turn
their ideas into profitable, sustainable businesses with purpose-driven strategies.
</p>
</section>
<section>
<h2>My Services</h2>
<div class="services">
<div class="service-card">
<h3>Brand Development</h3>
<p>Designing strong brand identities that capture your vision and emotionally connect with your audience.</p>
</div>
<div class="service-card">
<h3>Marketing Strategy</h3>
<p>Creating data-driven campaigns that engage, convert, and drive measurable business growth.</p>
</div>
<div class="service-card">
<h3>Consulting & Coaching</h3>
<p>Offering 1:1 coaching and strategic consulting to help entrepreneurs scale effectively and confidently.</p>
</div>
<div class="service-card">
<h3>Web Design & Optimization</h3>
<p>Building responsive, elegant websites that enhance your digital presence and improve conversions.</p>
</div>
</div>
</section>
<section class="contact">
<h2>Let’s Connect</h2>
<p>Ready to elevate your brand? Let’s create something amazing together.</p>
<p>Email: <a href="mailto:alex@riverarategy.com">alex@riverastrategy.com</a></p>
<p>LinkedIn: <a href="https://www.linkedin.com/in/alexrivra" target="_blank">@alexrivera</a></p>
</section>
<footer>
<p>© 2025 Alex Rivera | Designed by Alex Rivera</p>
</footer>
</body>
</html>