-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcontact.html
More file actions
86 lines (60 loc) · 2.21 KB
/
contact.html
File metadata and controls
86 lines (60 loc) · 2.21 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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Contact | Parthiv</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<!-- FontAwesome -->
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.2/css/all.min.css">
<!-- Main CSS -->
<link rel="stylesheet" href="style.css">
</head>
<body>
<header>
<a href="index.html" class="logo">Parthiv</a>
<nav>
<a href="index.html">Home</a>
</nav>
</header>
<section class="contact-page">
<h1>Contact Me</h1>
<p>Have a job opportunity or project? Let’s connect.</p>
<div class="contact-wrapper">
<div class="contact-details">
<div class="contact-item">
<i class="fa-solid fa-envelope"></i>
<span>parthivpm2002@gmail.com</span>
<a class="contact-btn" onclick="openGmail()">
Mail
</a>
</div>
<div class="contact-item">
<i class="fa-solid fa-phone"></i>
<span>+91 90375 38551</span>
<a class="contact-btn"
target="_blank"
href="https://wa.me/919037538551?text=Hi%20Parthiv!%0A%0AI%20came%20across%20your%20portfolio%20and%20wanted%20to%20connect%20regarding%20a%20potential%20opportunity.%20Your%20profile%20looks%20interesting.%0A%0ALet%20me%20know%20when%20you%E2%80%99re%20available%20for%20a%20quick%20chat.%0A%0AThanks!">
Chat
</a>
</div>
<div class="contact-item">
<i class="fa-solid fa-location-dot"></i>
<span>Kerala, India</span>
</div>
</div>
</div>
</section>
<script>
function openGmail() {
const url = "https://mail.google.com/mail/?view=cm&fs=1" +
"&to=parthivpm2002@gmail.com" +
"&su=Opportunity%20Discussion" +
"&body=Hi%20Parthiv,%0A%0A" +
"I%20reviewed%20your%20portfolio%20and%20would%20like%20to%20connect%20regarding%20a%20potential%20opportunity%20that%20matches%20your%20skill%20set.%0A%0A" +
"Please%20share%20your%20availability%20so%20we%20can%20schedule%20a%20quick%20discussion.%0A%0A" +
"Regards,";
window.open(url, "_blank");
}
</script>
</body>
</html>