finished buisness card

This commit is contained in:
bendwit 2025-06-17 15:16:09 +02:00
parent 234cca9d55
commit a06fb8349f
6 changed files with 71 additions and 3 deletions

View file

@ -0,0 +1,28 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="styles.css">
<title>Business Card</title>
</head>
<body>
<div class="business-card">
<img class="profile-image" src="https://cdn.freecodecamp.org/curriculum/labs/flower.jpg" alt="profile picture of a flower"/>
<p class="full-name">Ben</p>
<p class="designation">Sysadmin</p>
<p class="company">Minty</p>
<hr>
<p>ben@bendwit.com</p>
<p>06-xx-xx-xx-xx</p>
<a href="https://bendwit.com">Portfolio</a>
<hr>
<div class="social-media">
<h2>Connect with me</h2>
<a href="https://x.com/pbdewit">Twitter</a>
<a href="https://www.linkedin.com/in/bendwit/">LinkedIn</a>
<a href="https://github.com/BenDWit">GitHub</a>
</div>
</div>
</body>
</html>

View file

@ -0,0 +1,29 @@
body {
background-color: rosybrown ;
font-family: Arial, sans-serif;
}
p {
margin: 5px;
}
a {
text-decoration: none;
}
.business-card {
font-size: 16px;
width: 300px;
background-color: gray;
padding: 20px;
margin: 100px;
text-align: center;
margin-left: auto;
margin-right: auto;
}
.profile-image {
max-width: 100%;
}