Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
this is for learnes
112 changes: 112 additions & 0 deletions Yvette/yvette.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,112 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<title>IRakoze Yvette - Bugema University Student</title>
<style>
* {
box-sizing: border-box;
margin: 0;
padding: 0;
}
body {
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
background-color: #f8f9fa;
color: #333;
padding: 20px;
}
header {
background-color: #4CAF50;
padding: 20px;
text-align: center;
color: white;
margin-bottom: 30px;
}
header h1 {
font-size: 2.5em;
}
.container {
max-width: 900px;
margin: 0 auto;
background-color: white;
padding: 40px;
border-radius: 10px;
box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}
.profile-section {
display: flex;
flex-direction: row;
align-items: center;
margin-bottom: 30px;
}
.profile-pic {
width: 150px;
height: 150px;
border-radius: 50%;
margin-right: 30px;
}
.profile-info h2 {
font-size: 1.8em;
margin-bottom: 10px;
color: #333;
}
.profile-info p {
font-size: 1.1em;
margin-bottom: 8px;
}
.profile-info strong {
color: #4CAF50;
}
.lecturer-info {
margin-top: 20px;
padding: 15px;
background-color: #f1f1f1;
border-radius: 10px;
}
footer {
text-align: center;
margin-top: 50px;
padding: 20px;
background-color: #4CAF50;
color: white;
border-radius: 0 0 10px 10px;
}
</style>
</head>
<body>

<header>
<h1>Student Profile: IRakoze Yvette</h1>
</header>

<div class="container">
<div class="profile-section">
<img src="profile-pic.jpg" alt="IRakoze Yvette" class="profile-pic">
<div class="profile-info">
<h2>IRakoze Yvette</h2>
<p><strong>University:</strong> Bugema University</p>
<p><strong>Course:</strong> Open Source Software Development</p>
<p><strong>Email:</strong> [email protected]</p>
</div>
</div>

<div class="lecturer-info">
<h3>Lecturer Information</h3>
<p><strong>Name:</strong> Lubingwa Nandere Hudson</p>
<p><strong>Position:</strong> Lecturer in Open Source Software Development</p>
</div>

<section class="about">
<h3>About IRakoze Yvette</h3>
<p>IRakoze Yvette is a dedicated student at Bugema University, pursuing a degree in Open Source Software Development. She is passionate about technology, coding, and contributing to open source projects. Yvette is committed to learning new skills and applying them to real-world challenges.</p>
</section>
</div>

<footer>
<p>&copy; 2024 Bugema University | Open Source Software Development Program</p>
</footer>

</body>
</html>