|
<!DOCTYPE html> |
|
<html lang="en"> |
|
<head> |
|
<meta charset="UTF-8"> |
|
<meta name="viewport" content="width=device-width, initial-scale=1.0"> |
|
<style> |
|
body { |
|
margin: 0; |
|
font-family: Arial, sans-serif; |
|
} |
|
|
|
.top-bar { |
|
display: flex; |
|
justify-content: center; |
|
align-items: center; |
|
background-color: #1f1f20; |
|
padding: 10px; |
|
border-bottom: 1px solid #d1d5db; |
|
width: 100%; |
|
box-sizing: border-box; |
|
} |
|
|
|
.profile-container { |
|
text-align: center; |
|
} |
|
|
|
.profile-image { |
|
width: 50px; |
|
height: 50px; |
|
border-radius: 50%; |
|
} |
|
|
|
.profile-text { |
|
margin-top: 8px; |
|
font-size: 14px; |
|
color: #ffffff; |
|
} |
|
</style> |
|
<title>Top Bar</title> |
|
</head> |
|
<body> |
|
<div class="top-bar"> |
|
<div class="profile-container"> |
|
<img src="./profile.png" alt="Profile Image" class="profile-image"> |
|
<p class="profile-text">TIMBOVILL</p> |
|
</div> |
|
</div> |
|
</body> |
|
</html> |