xxxxxxxxxx
Feel free to use my template for the same at https://www.github.com/genius398/genius398
xxxxxxxxxx
Here is the github repo link for pure html css profile page template
==== free to use =====
https://github.com/mhamzase/html-css-user-profile
xxxxxxxxxx
<!DOCTYPE html>
<html>
<head>
<title>Profile Page</title>
<style>
body {
font-family: Arial, sans-serif;
}
.profile {
max-width: 600px;
margin: 0 auto;
padding: 20px;
}
.profile img {
width: 150px;
height: 150px;
border-radius: 50%;
object-fit: cover;
margin-bottom: 20px;
}
.profile h1 {
font-size: 24px;
margin-bottom: 10px;
}
.profile p {
font-size: 16px;
margin-bottom: 10px;
}
</style>
</head>
<body>
<div class="profile">
<img src="profile-picture.png" alt="Profile Picture">
<h1>John Doe</h1>
<p>Web Developer</p>
<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed et mollis mauris, nec vestibulum mi.</p>
</div>
</body>
</html>
xxxxxxxxxx
<!DOCTYPE html>
<html>
<head>
<title>User Profile</title>
<style>
/* CSS styles for the user profile page */
</style>
</head>
<body>
<header>
<!-- Header section -->
</header>
<div class="user-profile">
<img src="profile-picture.jpg" alt="User Profile Picture">
<h1>John Doe</h1>
<p>Email: john.doe@example.com</p>
<p>Location: New York</p>
<p>Interests: Web Development, Photography, Travel</p>
<!-- Additional information or sections can be added here -->
</div>
<footer>
<!-- Footer section -->
</footer>
</body>
</html>
xxxxxxxxxx
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>User Profile</title>
<style>
/* Add CSS styles here to customize the profile layout */
/* For example, you can style the profile picture, name, and other details */
</style>
</head>
<body>
<header>
<h1>User Profile</h1>
</header>
<section>
<img src="profile-picture.jpg" alt="Profile Picture">
<h2>User Name</h2>
<p>User Description</p>
<!-- Add more details about the user here if needed -->
</section>
<!-- Add more sections or customize the layout as needed -->
<footer>
<p>© 2022 Profile Template</p>
</footer>
</body>
</html>