-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcontact.html
65 lines (50 loc) · 1.9 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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Contact | VinayPatil</title>
<link href="/styles.css" rel="stylesheet" />
</head>
<body>
<nav class="navigation">
<div class="nav-brand">Vinay Patil</div>
<ul class="list-non-bullet align-right">
<li class="display-inline">
<a class="link" href="/">home </a>
</li>
<li class="display-inline">
<a class="link" href="/projects.html">Project </a>
</li>
<li class="display-inline">
<a class="link" href="/blogs.html">Blogs </a>
</li>
<li class="display-inline">
<a class="link link-active" href="/contact.html">Contact</a>
</li>
</ul>
</nav>
<header class="hero">
<img class="hero-image" src="image-contact.svg">
</header>
<table class="container container-center">
<tr>
<td class="table-data"><a href="https://github.com/engineervinay"><img class="icon-big"src="github.svg" ></a></td>
<td class="table-data"><a href="https://linkedin.com/in/engineervinay"><img class="icon-big"src="linkedin.svg"></a></td>
</tr>
<tr>
<td class="table-data"><a href="https://twitter.com/meengineervinay"><img class="icon-big"src="twitter.svg" ></a></td>
<td class="table-data"><a href="mailto:[email protected]"><img class="icon-big"src="gmail.svg"></a></td>
</tr>
<tr>
<td class="table-data"><a href="https://instagram.com/v.inay.patil"><img class="icon-big"src="instagram.svg" ></a></td>
<td class="table-data"><a href="https://t.me/vinay_patil/"><img class="icon-big"src="telegram.svg"></a></td>
</tr>
</table>
<footer>
<div>
<h3>Connect With Me </h3>
</div>
</footer>
</body>
</html>