Visitenkarte

Reines Html und CSS in einer Datei.

 

 

 

<!DOCTYPE html>
<html>
<head>
  <title>Visitenkarte</title>
  <style>
    body {
      font-family: Oswald, sans-serif;
      text-align: left;
    }
    .card {
      width: 200px;
      margin: 20px auto;
      padding: 20px;
      border: 1px solid #ccc;
      border-radius: 10px;
      box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    }
    .profile-img {
      width: 100px;
      height: 100px;
      border-radius: 50%;
      object-fit: cover;
      margin-bottom: 10px;
    }
    .user-info {
      font-size: 13px;
      margin-bottom: 10px;
    }
  </style>
</head>
<body>
  <div class="card">
    <img src="https://kranner.net/wp-content/uploads/2023/10/8562523343_9bb49b7b7b-modified-80x80.png">
    <div class="user-info">
      <div><strong>Name:</strong> Lorenz Kranner</div>
      <div><strong>Beruf:</strong> verdienter Pensionist</div>
      <div><strong>Email:</strong> lorenz@kranner.net</div>
      <div><strong>&phone;:</strong> +43 681 10 30 23 22</div>
    </div>
  </div>
</body>
</html>