-
Notifications
You must be signed in to change notification settings - Fork 0
/
contact.html
42 lines (42 loc) · 1.77 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
<!DOCTYPE html>
<html lang="en-us">
<head>
<meta charset="UTF-8">
<title>Juthika Shetye - Contact</title>
<link rel = "icon" type = "image/png" href = "assets/images/jLetter.png"/>
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<!-- Font Awesome 5 Icons -->
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.6.3/css/all.css" integrity="sha384-UHRtZLI+pbxtHCWp1t77Bi1L4ZtiqrqD80Kn4Z8NTSRyMA2Fd33n5dQ8lWUE00s/" crossorigin="anonymous">
<!-- Reset CSS -->
<link rel="stylesheet" type="text/css" href="https://meyerweb.com/eric/tools/css/reset/reset.css">
<!-- External Stylesheet -->
<link rel="stylesheet" type="text/css" href="assets/css/style.css">
</head>
<body>
<!-- Header -->
<header id="mainhead">
<div class="container">
<a href="index.html" title="Home Page" id="myName">Juthika Shetye</a>
<nav>
<a href="index.html">About</a>
<a href="portfolio.html">Portfolio</a>
<a href="contact.html">Contact</a>
</nav>
</div>
</header>
<!-- Main Content -->
<div id="main-container" class="container">
<section class="main-section contactSection">
<h1>Contact</h1>
<p>Email : [email protected]</p>
<span>Connect with me : </span>
<a href="https://www.linkedin.com/in/jshetye/" target="_blank" title="LinkedIn" class="linkedinLink">Linked<i class="fab fa-linkedin fa-lg"></i></a>
<a href="https://github.com/juthikashetye" target="_blank" title="GitHub" class="gitHubLink"><i class="fab fa-github fa-lg"></i> GitHub</a>
</section>
</div>
<!-- Footer -->
<footer>
<p>© Juthika Shetye. All Rights Reserved.</p>
</footer>
</body>
</html>