Skip to content

Strack87/business_card

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

2 Commits
 
 
 
 
 
 
 
 

Repository files navigation

Business Card

Overview

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.

Features

  • 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.

Code Example

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>

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published