Portfolio HTML Css
Portfolio HTML Css
DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<style>
body {
max-width: 800px;
margin: 0 auto;
padding: 20px;
background-color: #f5f5f5;
.container {
background-color: white;
padding: 40px;
border-radius: 10px;
text-align: center;
.title-section {
display: flex;
align-items: center;
justify-content: center;
gap: 20px;
margin-bottom: 20px;
h1 {
color: #333;
margin: 0;
}
.title-img {
max-width: 80px;
height: auto;
border-radius: 50%;
.welcome-text {
color: #666;
font-size: 18px;
margin-top: 20px;
</style>
</head>
<body>
<div class="container">
<div class="title-section">
</div>
</div>
</body>
</html>