-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
44 lines (44 loc) · 1.27 KB
/
index.html
File metadata and controls
44 lines (44 loc) · 1.27 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="mainstyles.css">
<title>Profile Page</title>
<style>
img {
border-radius: 50%;
width: 150px;
height: 150px;
display: block;
margin: 20px auto;
}
</style>
</head>
<body>
<header>
<h1>My Profile</h1>
</header>
<nav>
<a href="index.html">Profile</a>
<a href="goals.html">Goals/Achievements</a>
<a href="contacts.html">Contacts</a>
</nav>
<div class="container">
<img src="image.jpg" alt="Your Name">
<h2 style="text-align: center;">ARAFAT HAMIDU</h2>
<p><strong>Reg No:</strong> 23/BSE/BU/R/0018</p>
<h3>Personal Details</h3>
<p>Am by names of El Fati.</p>
<p>Am a Tanzanian by nationality and Ugandan by birth.</p>
<p>Am single and contented.</p>
<p>Am a student at Bugema University.</p>
<p>Pursuing Bachelors in Software Engneering.</p>
<p>I like coding.</p>
<p>And finally I like eating.</p>
</div>
<footer class="footer">
<p>© EL FATI 2024</p>
</footer>
</body>
</html>