-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathmail.html
22 lines (22 loc) · 1.44 KB
/
mail.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
<!DOCTYPE html><html lang="en"><head><meta charset="utf-8">
<title>Send Free Email Online</title>
<meta http-equiv="X-UA-Compatible" content="IE=edge"/>
<meta http-equiv="content-type" content="text/html; charset=UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1"/>
<style type="text/css">
html,body {height:100%; width:100%; padding:0px; margin:0px;}
.title {padding:0px; margin:0px; background-color: #02C54C; color: #ffffff; width: 100%; height: 60px; line-height:60px;}
@media only screen and (max-width: 300px) {.title{font-size: 26px;}}
.button {background-color: #02C54C;border: none;color: #ffffff;padding: 15px 32px;text-align: center;text-decoration: none;
display: inline-block;font-size:22px;margin: 4px 2px;cursor: pointer;width:98%;}
.textinput {width: 97%; min-height:125px; outline: none;resize: none; border: 1px solid #000;}
.bat {width: 360px; height:30px; border: 1px solid #000;}
@media only screen and (max-width: 500px) {.bat{width:98%; height:30px;}}
</style></head><body>
<center> <h1 class="title"> Send Free Email Online </h1>
<form method="post" action="http://htmlkhaled.000webhostapp.com/send.php">
<h1>email adress: </h1><input class="bat" type="text" name="to">
<h1>subject: </h1><input class="bat" type="text" name="subject">
<h1>text message: </h1><textarea class="textinput" name="message"></textarea><br>
<input type="submit" class="button" name="submit" value="send">
</form></center></body></html>