Skip to content

Commit

Permalink
Create HTML_TEMPLATE_DEFAULT.html
Browse files Browse the repository at this point in the history
forgot to add html template
  • Loading branch information
ski043 authored Nov 26, 2024
1 parent b09e41e commit 000cc26
Showing 1 changed file with 86 additions and 0 deletions.
86 changes: 86 additions & 0 deletions HTML_TEMPLATE_DEFAULT.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,86 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Invoice</title>
<style>
body {
font-family: Arial, sans-serif;
line-height: 1.6;
color: #333333;
margin: 0;
padding: 0;
}
.container {
max-width: 600px;
margin: 0 auto;
padding: 20px;
}
.header {
text-align: center;
padding: 20px 0;
background-color: #f8f9fa;
}
.logo {
max-width: 150px;
height: auto;
}
.content {
padding: 30px 0;
}
.button {
display: inline-block;
padding: 12px 24px;
background-color: #0066cc;
color: #ffffff !important;
text-decoration: none;
border-radius: 4px;
font-weight: bold;
margin: 20px 0;
}
.button:hover {
background-color: #0052a3;
}
.footer {
text-align: center;
padding: 20px;
background-color: #f8f9fa;
font-size: 12px;
color: #666666;
}
</style>
</head>
<body>
<div class="container">
<div class="content">
<h2>Invoice for jan</h2>

<p>Dear User Whats up jan,</p>

<p>
I hope this email finds you well. Please find attached your invoice
attached below
</p>

<p>Invoice Details:</p>
<ul>
<li>Invoice Number: xyz</li>
<li>Due Date: xyz</li>
<li>Total Amount: xyz</li>
</ul>

<p>You can download your invoice by clicking the button below:</p>

<a href="xyz" class="button">Download Invoice</a>

<p>
If you have any questions or concerns, please don't hesitate to
contact us.
</p>

<p>Thank you for your business!</p>
</div>
</div>
</body>
</html>

0 comments on commit 000cc26

Please sign in to comment.