-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex(chosen:hover).html
239 lines (206 loc) · 6.58 KB
/
index(chosen:hover).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
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
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Agomoh Chukwuemeka Emmanuel - Portfolio</title>
<style>
/* Basic Reset */
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
font-family: 'Arial', sans-serif;
color: #fff;
background-color: #121212;
overflow-x: hidden;
}
/* Header Styling */
header {
background: linear-gradient(to right, #181943, #2c1887, #2f12ae);
padding: 20px;
text-align: center;
position: relative;
}
header h1 {
font-size: 2.5em;
margin-bottom: 10px;
text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}
header h2 {
font-size: 1.2em;
margin-bottom: 20px;
text-shadow: 1px 1px 3px rgba(0,0,0,0.5);
}
.social-icons a {
margin: 0 10px;
display: inline-block;
color: #fff;
font-size: 1.5em;
transition: transform 0.3s;
}
.social-icons a:hover {
transform: scale(1.2);
}
/* Section Styling */
section {
padding: 50px 20px;
text-align: center;
}
section h2 {
font-size: 2em;
margin-bottom: 20px;
position: relative;
animation: fadeIn 2s;
}
section h2::after {
content: '';
width: 60px;
height: 3px;
background-color: #1823c3;
position: absolute;
bottom: -10px;
left: 50%;
transform: translateX(-50%);
}
/* Project Styling */
.project {
display: inline-block;
width: 300px;
margin: 20px;
padding: 20px;
background-color: #1f1f1f;
border-radius: 10px;
box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
transition: transform 0.3s;
}
.project img {
width: 100%;
border-radius: 10px;
}
.project h3 {
margin: 15px 0;
font-size: 1.5em;
}
.project p {
font-size: 1em;
line-height: 1.6;
}
.project:hover {
transform: translateY(-10px);
}
/* Button Styling */
.btn {
display: inline-block;
padding: 10px 20px;
margin-top: 20px;
font-size: 1em;
color: #fff;
background-color: #1823c3;
text-decoration: none;
border-radius: 5px;
transition: background-color 0.3s;
}
.btn:hover {
background-color: #007e86;
}
/* Footer Styling */
footer {
background: linear-gradient(to right, #181943, #2c1887, #2f12ae);
text-align: center;
padding: 20px;
}
footer p {
font-size: 1em;
}
/* Achievement Carousel */
.carousel {
position: relative;
width: 100%;
max-width: 600px;
margin: 50px auto;
overflow: hidden;
border-radius: 10px;
}
.carousel img {
width: 100%;
transition: opacity 1s;
}
.carousel img:not(:first-child) {
position: absolute;
top: 0;
left: 0;
opacity: 0;
}
.carousel img.active {
opacity: 1;
}
/* Keyframes for Animations */
@keyframes fadeIn {
from { opacity: 0; }
to { opacity: 1; }
}
@keyframes slideIn {
from { transform: translateX(100%); }
to { transform: translateX(0); }
}
@keyframes fadeInLeft {
from { opacity: 0; transform: translateX(-50px); }
to { opacity: 1; transform: translateX(0); }
}
.project {
animation: fadeInLeft 1s ease-in-out;
}
</style>
</head>
<body>
<header>
<h1>Agomoh Chukwuemeka Emmanuel</h1>
<h2>Project Manager | Machine Learning | Python Developer | Automation</h2>
<div class="social-icons">
<a href="mailto:emyagomoh54321@gmail.com.com"><i class="fa fa-envelope"></i></a>
<a href="https://linkedin.com/in/yourprofile"><i class="fa fa-linkedin"></i></a>
<a href="https://github.com/yourprofile"><i class="fa fa-github"></i></a>
</div>
</header>
<section id="projects">
<h2>Projects</h2>
<div class="project">
<img src="assets/project1_img1.png" alt="Project 1 Image">
<h3>Project 1 Title</h3>
<p>Description of project 1. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Integer nec odio.</p>
<a href="https://github.com/project1" class="btn">View on GitHub</a>
</div>
<div class="project">
<img src="assets/project1_img2.png" alt="Project 2 Image">
<h3>Project 2 Title</h3>
<p>Description of project 2. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Integer nec odio.</p>
<a href="https://github.com/project2" class="btn">View on GitHub</a>
</div>
</section>
<section id="achievements">
<h2>Achievements</h2>
<div class="carousel">
<img src="assets/certificate1.jpg" alt="Certificate 1">
<img src="assets/certificate2.jpg" alt="Certificate 2">
<img src="assets/certificate3.png" alt="Certificate 3">
</div>
</section>
<footer>
<p>© 2024 Agomoh Chukwuemeka Emmanuel. All Rights Reserved.</p>
</footer>
<script>
// Carousel Logic
const images = document.querySelectorAll('.carousel img');
let currentImageIndex = 0;
function changeImage() {
images[currentImageIndex].classList.remove('active');
currentImageIndex = (currentImageIndex + 1) % images.length;
images[currentImageIndex].classList.add('active');
}
setInterval(changeImage, 2000);
</script>
</body>
</html>