-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcontact.html
More file actions
51 lines (48 loc) · 1.94 KB
/
contact.html
File metadata and controls
51 lines (48 loc) · 1.94 KB
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
<!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">
<link href="./contact.css" rel="stylesheet">
<title>You will be contacted shortly</title>
</head>
<body>
<header>
<div class="clearfix div1">
<a class="name" href="./index.html">Ali Sadygov</a>
<nav>
<ul class="clearfix">
<li><a class="menu" href="./index.html">About</a></li>
<li><a class="menu" href="portfolio.html">Portfolio</a></li>
<li><a class="menu" href="./contact.html">Contact</a></li>
</ul>
</nav>
</div>
</header>
<div class="div2">
<h1>Contact</h1>
<form>
<label class="label1">Name</label>
<input class="input1" type="text" required="true" placeholder=" John Smith">
<label class="label2">Email</label>
<input type="email" class="input2" required="true" placeholder=" example@gmail.com">
<label class="label3">Message</label>
<textarea class="input3"></textarea>
<button>Send</button>
</form>
</div>
<div class="div3">
<h2>Connect with Me</h2>
<a href="https://github.com/Ali-Sadygov" title="Github" target="_blank"><img src="./Foto/github.png"
width="63px" height="63px" class="github"></a>
<a href="https://www.linkedin.com/feed/" title="Linkedln" target="_blank"><img src="./Foto/linkedin.png" width="63px" height="63px"
class="gmail"></a>
<a href="https://www.instagram.com/sadygov.dev/" title="Instagram" target="_blank"><img
src="./Foto/instagram.png" width="63px" height="63px" class="instagram"></a>
</div>
<footer>
<div>Copyright © 2022 Ali Sadygov</div>
</footer>
</body>
</html>