-
Notifications
You must be signed in to change notification settings - Fork 284
Open
Description
<title>Dominic Kobos Osuru - Personal Page</title>
<style>
body {
margin: 0;
padding: 0;
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
background-color: #f4f4f4;
color: #333;
display: flex;
flex-direction: column;
align-items: center;
padding: 20px;
transition: background-color 0.3s, color 0.3s;
}
</style>
<script>
function toggleMode() {
document.body.classList.toggle("dark-mode");
}
</script>
.dark-mode {
background-color: #222;
color: #f1f1f1;
}
.container {
background-color: #fff;
border-radius: 10px;
padding: 30px;
max-width: 600px;
width: 100%;
box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
transition: background-color 0.3s, color 0.3s;
}
.dark-mode .container {
background-color: #333;
color: #f1f1f1;
}
h1 {
text-align: center;
margin-bottom: 5px;
}
.tagline {
text-align: center;
color: #888;
font-size: 1em;
margin-bottom: 20px;
}
.profile-pic {
display: block;
margin: 0 auto 20px;
width: 150px;
height: 150px;
border-radius: 50%;
object-fit: cover;
border: 4px solid #007bff;
}
.section-title {
margin-top: 25px;
margin-bottom: 10px;
font-size: 1.2em;
color: #007bff;
}
ul.skills {
list-style-type: square;
padding-left: 20px;
}
.contact p {
margin: 5px 0;
}
.buttons {
display: flex;
justify-content: space-between;
margin-top: 20px;
}
button, .download-btn {
padding: 10px 15px;
font-size: 14px;
border: none;
border-radius: 8px;
cursor: pointer;
background-color: #007bff;
color: white;
text-decoration: none;
}
.test-message {
background-color: #d4edda;
color: #155724;
border: 1px solid #c3e6cb;
padding: 10px;
margin-top: 20px;
border-radius: 5px;
text-align: center;
}
@media (max-width: 600px) {
.container {
padding: 20px;
}
.profile-pic {
width: 120px;
height: 120px;
}
.buttons {
flex-direction: column;
gap: 10px;
}
}
Dominic Kobos Osuru
Aspiring Web Developer from Sherikat, South Sudan
<img class="profile-pic" src="https://via.placeholder.com/150" alt="Profile Photo">
<div>
<p><strong>About Me:</strong> I am a passionate tech enthusiast who grew up in Uganda and is now focused on learning web development. I enjoy building clean websites and hope to pursue a degree in Computer Science. I believe technology can shape the future of South Sudan.</p>
</div>
<div>
<p class="section-title">Skills</p>
<ul class="skills">
<li>HTML & CSS</li>
<li>Python (basic)</li>
<li>Git & GitHub</li>
<li>Responsive Design</li>
<li>Figma (UI/UX)</li>
</ul>
</div>
<div class="contact">
<p class="section-title">Contact</p>
<p>Email: dominickobos.osuru@example.com</p>
<p>LinkedIn: <a href="#" target="_blank">Coming Soon</a></p>
</div>
<div class="buttons">
<button onclick="toggleMode()">Toggle Light/Dark Mode</button>
<a class="download-btn" href="your_resume.pdf" download>Download Resume</a>
</div>
<div class="test-message">
✅ Test Passed: Page loaded successfully!
</div>
Metadata
Metadata
Assignees
Labels
No labels