-
Notifications
You must be signed in to change notification settings - Fork 0
/
contact.html
49 lines (44 loc) · 1.89 KB
/
contact.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Contact Info</title>
<link href="contact.css" type="text/css" rel="stylesheet">
</head>
<body>
<div class="outer">
<h1>Contact Info</h1>
<div class="outer1">
<h2>You may also find me in</h2>
</div><br>
<div class="buttons">
<button onclick="location.href='https://www.instagram.com/_abi_t_s/';" class="content_button">INSTAGRAM</button><BR><BR>
<button onclick="location.href='https://github.com/Abin-T-Sunil';" class="content_button">GITHUB</button><BR><BR>
<button onclick="location.href='https://www.linkedin.com/in/abin-t-sunil-89b760205/';" class="content_button">LINKED IN</button>
</div><br>
<div class="container">
<form id="contact" action="" method="post">
<h2 id="quick"><u>Quick Contact</u></h2>
<h3>Ask any doubts</h3>
<fieldset>
<input placeholder="Your name" type="text" tabindex="1" required autofocus>
</fieldset>
<fieldset>
<input placeholder="Your Email Address" type="email" tabindex="2" required>
</fieldset>
<fieldset>
<input placeholder="Your Phone Number" type="tel" tabindex="3" required>
</fieldset>
<fieldset>
<textarea placeholder="Type your Message Here...." tabindex="5" required></textarea>
</fieldset>
<fieldset>
<button name="submit" type="submit" id="contact-submit" data-submit="...Sending">Submit</button>
</fieldset>
</form>
</div>
</div>
</body>
</html>