-
Notifications
You must be signed in to change notification settings - Fork 0
/
Contact-me.html
44 lines (44 loc) · 1.51 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
<!DOCTYPE html>
<html lang="en" dir="ltr">
<head>
<meta charset="utf-8">
<title>Contact Me</title>
<link rel="stylesheet" href="css/styles.css">
</head>
<body>
<h1>My Contact Details</h1>
<hr>
<table>
<tr>
<td><strong>Telegram</strong></td>
<td><a href="https://t.me/+V_Qd3VgNW-djNTk1"><em>here</em></a></td>
</tr>
<tr>
<td> <strong>Discord </strong></td>
<td><a href="https://discord.gg/SdgyuAzg"><em>here</em></a></td>
</tr>
<tr>
<td> <strong>Youtube</strong></td>
<td> <a href="https://www.youtube.com/c/Defectru"><em>here</em></a></td>
</tr>
<tr>
<td><strong>Phone No </strong></td>
<td><a href="tel:+918618427089">+91 8618427089</a></td>
</tr>
<tr>
<td><strong>Mail </strong></td>
<td><a href="mailto:purushothamb011@gmail.com">purushothamb011@gmail.com</a></td>
</tr>
</table>
<form action="mailto:purushothamb011@gmail.com" method="post" enctype="text/plain">
<label for="YourName:">Your Name: </label><input type="text"><br>
<label>Enter your file: </label><input type="file" name="" id=""><br>
<label for="email"> Your Email:</label><input type="email"><br>
<label for="DOB">Enter DOB:</label><input type="date" name="" id=""><br>
<label for="Message">Your Message:</label><br>
<textarea name="name" rows="10" cols="30"></textarea><br>
<label for="Password:">Password : </label><input type="password"><br>
<input type="checkbox"> <input type="submit">
</form>
</body>
</html>