-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
100 lines (96 loc) · 3.05 KB
/
index.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Korey Imara - Personal Webpage</title>
<style>
body {
font-family: Arial, sans-serif;
margin: 0;
padding: 0;
background-color: #f4f4f4;
color: #333;
}
.container {
width: 80%;
margin: auto;
overflow: hidden;
}
header {
background: #333;
color: #fff;
padding-top: 30px;
min-height: 70px;
border-bottom: #0779e4 3px solid;
}
header a {
color: #fff;
text-decoration: none;
text-transform: uppercase;
font-size: 16px;
}
header ul {
padding: 0;
list-style: none;
}
header li {
display: inline;
padding: 0 20px 0 20px;
}
.main-content {
padding: 20px;
background: #fff;
margin-top: 20px;
}
.footer {
background: #333;
color: #fff;
text-align: center;
padding: 10px;
margin-top: 20px;
}
.profile-pic {
max-width: 150px;
border-radius: 50%;
margin-top: 10px;
}
</style>
</head>
<body>
<header>
<div class="container">
<h1>Korey Imara</h1>
<nav>
<ul>
<li><a href="#about">About Me</a></li>
<li><a href="#projects">Projects</a></li>
<li><a href="#contact">Contact</a></li>
</ul>
</nav>
</div>
</header>
<div class="container">
<div class="main-content" id="about">
<h2>About Me</h2>
<img src="20230803_153342.jpg" alt="Korey Imara" class="profile-pic">
<p>Hello! I am Korey Imara also Known online as "imarak2". Welcome to my personal webpage. Here, you can find more about my projects and how to contact me.</p>
</div>
<div class="main-content" id="projects">
<h2>Projects</h2>
<p>Here are some of the projects I've worked on:</p>
<ul>
<li><a href="https://scratch.mit.edu/projects/897906052/" target="_blank">Scratch Project</a></li>
<li><a href="https://github.com/imarak2/Penguin-Money-Offline" target="_blank">Penguin Money Offline (GitHub)</a></li>
</ul>
</div>
<div class="main-content" id="contact">
<h2>Contact</h2>
<p>If you want to get in touch with me, please contact me at: <a href="mailto:[email protected]">[email protected]</a></p>
</div>
</div>
<footer class="footer">
<p>© 2024 Korey Imara. All rights reserved.</p>
</footer>
</body>
</html>