Skip to content

Commit

Permalink
feat: import inter font in html
Browse files Browse the repository at this point in the history
  • Loading branch information
foochifa committed Sep 12, 2023
1 parent 0808cf3 commit fe8c2e5
Showing 1 changed file with 25 additions and 6 deletions.
31 changes: 25 additions & 6 deletions src/app/views/templates/payment-confirmation.view.html
Original file line number Diff line number Diff line change
@@ -1,5 +1,10 @@
<!DOCTYPE html>
<html lang="en" xmlns="http://www.w3.org/1999/xhtml">
<head>
<style>
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600&display=swap');
</style>
</head>
<body
class="clean-body u_body"
style="margin: 0; padding: 0; background-color: #f8f9fd"
Expand All @@ -21,7 +26,7 @@
</p>
<p
style="
font-family: 'Inter';
font-family: 'Inter', sans-serif;
font-style: normal;
font-weight: 600;
font-size: 24px;
Expand All @@ -37,7 +42,7 @@
</p>
<div
style="
font-family: 'Inter';
font-family: 'Inter', sans-serif;
font-style: normal;
font-weight: 400;
font-size: 16px;
Expand All @@ -64,7 +69,7 @@
width: 100%;
height: 56px;
font-family: 'Inter';
font-family: 'Inter', sans-serif;
font-style: normal;
font-weight: 500;
font-size: 16px;
Expand All @@ -84,12 +89,11 @@
<div style="margin-top: 32px">
<p
style="
font-family: 'Inter';
font-family: 'Inter', sans-serif;
font-style: normal;
font-weight: 500;
font-size: 14px;
line-height: 20px;
/* or 143% */
letter-spacing: -0.006em;
font-feature-settings: 'cv05' on, 'cv10' on;
Expand All @@ -100,7 +104,22 @@
If you are having trouble with the button above, copy and paste the
link below into your browser:
</p>
<p style="color: #445fcd; word-wrap: break-word"><%= invoiceUrl %></p>
<p
style="
color: #445fcd;
word-wrap: break-word;
font-family: 'Inter', sans-serif;
font-style: normal;
font-weight: 500;
font-size: 14px;
line-height: 20px;
letter-spacing: -0.006em;
font-feature-settings: 'cv05' on, 'cv10' on;
"
>
<%= invoiceUrl %>
</p>
</div>
</div>
</body>
Expand Down

0 comments on commit fe8c2e5

Please sign in to comment.