-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsend.html
73 lines (69 loc) · 2.26 KB
/
send.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
<!DOCTYPE html>
<html lang="en" data-theme="dark">
<head>
<!-- HTML Meta Tags -->
<title>Mailspread</title>
<meta
name="description"
content="Create and share email templates with ease !"
/>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<!-- icons and themes -->
<meta name="theme-color" content="#11191f" />
<link
rel="icon"
href="./imgs/favicon.svg"
sizes="any"
type="image/svg+xml"
/>
<!-- Facebook Meta Tags -->
<meta property="og:url" content="https://mailspread.netlify.app/" />
<meta property="og:type" content="website" />
<meta property="og:title" content="Mailspread" />
<meta
property="og:description"
content="Create and share email templates with ease !"
/>
<meta property="og:image" content="https://i.imgur.com/JZViZMR.png" />
<!-- Twitter Meta Tags -->
<meta name="twitter:card" content="summary_large_image" />
<meta property="twitter:domain" content="" />
<meta property="twitter:url" content="https://mailspread.netlify.app/" />
<meta name="twitter:title" content="Mailspread" />
<meta
name="twitter:description"
content="Create and share email templates with ease !"
/>
<meta name="twitter:image" content="https://i.imgur.com/JZViZMR.png" />
<link
rel="stylesheet"
href="https://unpkg.com/@picocss/pico@latest/css/pico.min.css"
/>
<link rel="stylesheet" href="styles/global.css" />
<title>MailShare Send Template</title>
</head>
<body>
<main class="app">
<h1 class="branding">
<a href="index.html">MailSpread</a> <span>Send</span>
</h1>
<article class="card" id="card">
<header class="subject-header">
<b class="subject-indicator">Tamplate Subject:</b>
<span id="subject" />
</header>
</article>
</main>
<footer class="footer">
<p>
Made with <span class="heart">♥</span> by
<a href="https://srujangurram.me">Srujan Gurram</a>
</p>
</footer>
<!-- scripts -->
<script src="./lib/base64.js"></script>
<script src="../js/send.js"></script>
</body>
</html>