-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathIndex.html
190 lines (160 loc) · 4.96 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
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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>TempMail - Disposable Email Service</title>
<style>
/* General Reset */
body, h1, h2, p, ul, li, a, img {
margin: 0;
padding: 0;
border: 0;
outline: 0;
font-size: 100%;
vertical-align: baseline;
background: transparent;
}
body {
font-family: 'Arial', sans-serif;
background-color: #001f3f;
color: #ffffff;
text-align: center;
}
.container {
background-color: rgba(255, 255, 255, 0.1);
border-radius: 15px;
padding: 20px;
width: 90%;
max-width: 860px;
margin: 20px auto;
box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}
.header {
margin-bottom: 20px;
}
.icon {
width: 80px;
height: 80px;
margin-bottom: 10px;
}
.program-name {
font-size: 2.5em;
font-weight: bold;
color: #87CEFA;
}
.content {
text-align: left;
}
.p-line {
font-size: 19px;
display: block;
padding: 1px 0;
}
.introduction {
font-size: 19px;
line-height: 1.6;
margin-bottom: 20px;
font-weight: 500;
color: #f0f0f0;
}
.contacts h2 {
margin-top: 15px;
font-size: 2em;
margin-bottom: 10px;
color: #87CEFA;
}
.contacts ul {
list-style-type: none;
padding-left: 25px;
}
.contacts ul li {
font-size: 1em;
margin-bottom: 10px;
color: #f0f0f0;
}
.contacts ul li a {
font-size: 1.2em;
color: lightskyblue;
text-decoration: none;
font-weight: 100;
}
.contacts ul li a:hover {
text-decoration: underline;
}
.footer {
margin-top: 25px;
text-align: center;
font-size: 1em;
color: #f0f0f0;
border-top: 1px solid lightskyblue;
padding-top: 15px;
}
.footer a {
color: #87CEFA;
text-decoration: none;
}
.footer a:hover {
text-decoration: underline;
}
.footer p {
margin: 5px 0;
font-size: 16px;
}
/* Responsive Design */
@media all and (max-width: 768px) {
.program-name {
font-size: 2em;
}
.introduction {
font-size: 0.9em;
}
.contacts h2 {
font-size: 1.3em;
}
.contacts ul li {
font-size: 0.8em;
}
.icon {
width: 60px;
height: 60px;
}
}
@media all and (max-width: 480px) {
.container {
padding: 15px;
}
.introduction {
line-height: 1.4;
}
}
</style>
</head>
<body>
<div class="container">
<div class="header">
<img src="Icons/email.png" alt="Program Icon" class="icon">
<h1 class="program-name">TempMail - Temporary Email Service</h1>
</div>
<div class="content">
<p class="introduction">
Welcome to <b>TempMail</b>, a Python-based program to generate secure, disposable email addresses.
<br>Your personal email remains confidential while utilizing the TempMail inbox for sign-ups, verifications.
<br>Your temporary inbox will remain active for the duration of your session, after which all emails will be automatically deleted upon closing the program.
<br>TempMail ensures complete privacy and convenience during your use of the service.
<br>Thank you for choosing TempMail!
</p>
<div class="contacts">
<h2>Contact Us</h2>
<ul style="font-size: 16px;">
<li><b>GitHub: </b><a href="https://github.com/AliJ-Official">AliJ-Official</a></li>
<li><b>Gmail: </b><a href="mailto:[email protected]">[email protected]</a></li>
</ul>
</div>
</div>
<div class="footer">
<p>Based on <a href="https://mail.tm">mail.tm</a> and uses the <a href="https://api.mail.tm">mail.tm API</a>.</p>
</div>
</div>
</body>
</html>