JSFiddle - React, Tailwind, and code Playground
by Lars Holm Jensen
HTML
<!DOCTYPE html>
<html>
<head>
<style>
body {
font-family: Arial, sans-serif;
font-size: 14px;
color: #333;
}
.signature {
border-top: 1px solid #ccc;
padding-top: 10px;
margin-top: 10px;
display: flex;
align-items: center;
}
.logo {
width: 50px;
height: 50px;
margin-right: 15px;
}
.info {
line-height: 1.5;
}
.info a {
color: #0066cc;
text-decoration: none;
}
.info a:hover {
text-decoration: underline;
}
</style>
</head>
<body>
<div class="signature">
<img src="[LOGO_URL]" alt="LHSoft Logo" class="logo">
<div class="info">
<strong>Lars Holm Jensen</strong><br>
Senior Developer / Owner<br>
<strong>LHSoft</strong><br>
Phone: <a href="tel:+4524232183">24232183</a><br>
Email: <a href="mailto:[email protected]">[email protected]</a>
</div>
</div>
</body>
</html>