-
Notifications
You must be signed in to change notification settings - Fork 46
/
Copy pathyvette.html
112 lines (106 loc) · 3.35 KB
/
yvette.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
<!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>© 2024 Bugema University | Open Source Software Development Program</p>
</footer>
</body>
</html>