-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
44 lines (38 loc) · 2.13 KB
/
index.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
<!DOCTYPE html>
<html>
<head>
<title>Neato! Clipboard</title>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie-edge">
<!--Awad Bin-Jawed-->
<!--<p><img src="banner.png"><p>-->
<link rel="stylesheet" href="styles.css">
</head>
<body>
<table style="width:100%">
<tr>
<th>
<div class="dropdown">
<button class="dropbtn" style="width: 209px;">Email Templates</button>
<div class="dropdown-content" style="margin-left: 0%;">
<a> General Response </a>
<a> <input id="copytext1" type="text" value="It was a pleasure speaking with you today about [topic of discussion]."></a>
<a> <input id="copytext2" type="text" value="I apologize for the bad experience you’ve had with [topic of discussion]."></a>
<a> <input id="copytext3" type="text" value="I tried reaching you, but it appears you were unavailable. I left you a voicemail regarding [topic of discussion]."></a>
<a> Billing / Sales </a>
<a> <input id="copytext4" type="text" value="This is to inform you of an unpaid balance in your account in the amount of [$__.__]"> </a>
<a> <input id="copytext5" type="text" value="This is to provide you a record of your payment and purchase history"> </a>
<a> <input id="copytext6" type="text" value="This is to inform you of an upcoming due date in the amount of [$__.__]"> </a>
<a> Tier 2 IT Support </a>
<a> <input id="copytext7" type="text" value="A ticket has been created regarding [topic of discussion]. The Technical Support team is aware and will notify you of further updates."></a>
<a> <input id="copytext8" type="text" value="We are currently experiencing a system outage. We apologize for the inconvenience. A technician is resolving the matter. Thank you for your patience."></a>
<a> <input id="copytext9" type="text" value="Your ticket has been escalated to the Product Development team. We will notify you once we have further updates. Thank you for your patience."></a>
</div>
</div>
</th>
</tr>
</table>
<script src="script.js"></script>
</body>
</html>