kontakt.html 429 Bytes
Newer Older
Wolfgang Knopki's avatar
Wolfgang Knopki committed
1
2
<!DOCTYPE html>
<html>
Alfakhori's avatar
Alfakhori committed
3
  <head>
Alfakhori's avatar
Alfakhori committed
4
5
6
7
8
9
10
11
12
13
14
15
16
17
    <title>Centered Image</title>
    <style>
      /* CSS styling to center the image */
      body {
        display: flex;
        justify-content: center;
        align-items: center;
        height: 100vh;
      }
      img {
        max-width: 100%;
        max-height: 100%;
      }
    </style>
Alfakhori's avatar
Alfakhori committed
18
19
  </head>
  <body>
Alfakhori's avatar
Alfakhori committed
20
    <img src="assets/image.png" alt="Image Description">
Alfakhori's avatar
Alfakhori committed
21
  </body>
Wolfgang Knopki's avatar
Wolfgang Knopki committed
22
</html>