-
Notifications
You must be signed in to change notification settings - Fork 0
/
contact_me.html
93 lines (71 loc) · 4.14 KB
/
contact_me.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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
<link rel="stylesheet" href="pstyle.css">
<script type="text/javascript">
function submitmessage()
{
if(confirm("Are you sure you want to submit?")){
alert("The message is sent.");
}
}
</script>
</head>
<body>
<div class="topnav">
<a href="intro.html">Intro</a>
<a class="right" href="contact_me.html">Contact me</a>
<a class="right" href="achievements.html">Achievments</a>
<a class="right" href="skills.html">Skills</a>
</div>
<div style="padding-left:14px;color:#FEFFFF" >
<h1 style="text-align: left;">Contact me</h1>
</div>
<div style=" padding-left:18px;font-family:-apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;">
<p style="color: #17251A;"><b>I'd be happy to hear from you either by emailing me or using the below form.</b></p>
<form id="messageform" style="height: 0px">
<table style="width: 40%; border: 0px;">
<tr>
<td><label style="color: #17252a;font-family:'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;" for="firstname">First name: </label></td>
<td><input style="padding: 12px;background-color: #def2f1;border-radius: 5px;border: transparent;" type="text" id="fname" name="fname" ></td>
</tr>
<tr>
<td><label style="color: #17252a;font-family:'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;" for="lastname">Last name: </label></td>
<td><input style="padding: 12px;background-color: #def2f1;border-radius: 5px;box-sizing: border-box;border: transparent;" type="text" id="lastname" name="lastname"></td>
</tr>
<tr>
<td><label style="color: #17252a;font-family:'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;" for="Email">Email: </label></td>
<td><input style="padding: 12px;background-color: #def2f1;border-radius: 5px;border: transparent;" type="text" id="email" name="Email"> </td>
</tr>
<tr>
<td><label style="color: #17252a;" for="message">Your message:</label></td>
<td><textarea style="padding: 12px;background-color: #def2f1;border-radius: 5px;border: transparent;font-family:'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;" name="message" rows="10" cols="20" form="messageform"></textarea></td>
</tr>
<tr>
<td></td>
<td><input style="background-color: #EDF5e1;border-radius: 5px;border: transparent;cursor: pointer;" type="submit" value="submit" onclick="submitmessage();"></td>
</tr>
</form>
</table>
</div>
<div class="footer">
<table style="width: 100%; border: 0px;">
<tr>
<td><p>Email : <a style="background-color: transparent;text-decoration: none;color: bisque;" href="mailto:[email protected]">[email protected]</a></p></td>
<td><p>Github : <a style="background-color: transparent;text-decoration: none;color: bisque;" href="https://github.com/cyberrosa">cyberrosa</a> </p></td>
</tr>
<tr>
<td><p>Telegram : <a style="background-color: transparent;text-decoration: none;color: bisque;">@parham_rezaei</a> </p></td>
<td><p>Math StackExchange : <a style="background-color: transparent;text-decoration: none;color: bisque;" href="https://math.stackexchange.com/users/745074/whiterose" >Whiterose</a></p></td>
</tr>
<tr>
<td><p>Art of Problem Solving: <a style="background-color: transparent;text-decoration: none;color: bisque;" href="https://artofproblemsolving.com/community/user/541340">gaussian_cyber</a></p></td>
<td><p>Stack Overflow : <a style="background-color: transparent;text-decoration: none;color: bisque;" href="https://stackoverflow.com/users/17409205/whiterose" >Whiterose</a></p></td>
</tr>
</table>
</div>
</body>
</html>