mirror of
https://github.com/BenDWit/freecodecamp.git
synced 2025-12-23 13:09:59 +01:00
28 lines
No EOL
959 B
HTML
28 lines
No EOL
959 B
HTML
<!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> |