The Business Card project is a web application designed to provide users with a digital representation of a business card. The page highlights the individual's professional information, contact details, and social media links.
- Profile Section: Displays the individual's profile picture, name, and professional title.
- Contact Information: Provides the user's contact details, including email address and phone number.
- Social Media Links: Includes links to the user's social media profiles, such as LinkedIn, Twitter, and GitHub.
- Responsive Design: The page is designed to be responsive, ensuring a seamless experience across different devices and screen sizes.
Here is an example of how to create a simple profile section in HTML and CSS:
<!-- Profile Section -->
<section class="profile">
<img src="path/to/profile-picture.jpg" alt="Profile Picture" class="profile-picture">
<h1>John Doe</h1>
<p>Software Engineer</p>
</section>
<!-- CSS for Profile Section -->
<style>
.profile {
text-align: center;
padding: 20px;
}
.profile-picture {
width: 150px;
height: 150px;
border-radius: 50%;
}
h1 {
font-size: 24px;
margin: 10px 0;
}
p {
font-size: 18px;
color: gray;
}
</style>