-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcontact.html
110 lines (98 loc) · 3.5 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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
<!-- <!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Contact - Yash's Portfolio</title>
<link href="https://fonts.googleapis.com/css2?family=Press+Start+2P&display=swap" rel="stylesheet">
<link rel="stylesheet" href="styles.css">
</head>
<body>
<div class="moon">
<div class="small-crater"></div>
<div class="small-crater"></div>
<div class="small-crater"></div>
<div class="small-crater"></div>
</div>
<div class="clouds"></div>
<div class="clouds-reverse"></div>
<div class="stars"></div>
<div class="container">
<h1 class="title">Contact Me</h1>
<form class="contact-form" action="mailto:your-email@example.com" method="post" enctype="text/plain">
<div class="form-group">
<label for="name">Name</label>
<input type="text" id="name" name="name" required>
</div>
<div class="form-group">
<label for="email">Email</label>
<input type="email" id="email" name="email" required>
</div>
<div class="form-group">
<label for="message">Message</label>
<textarea id="message" name="message" rows="4" required></textarea>
</div>
<button type="submit" class="submit-button">Send Message</button>
</form>
<button class="back-home-button" onclick="window.location.href='index.html'">Back to Home</button>
</div>
<script src="script.js"></script>
</body>
</html> -->
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Contact - Yash's Portfolio</title>
<link href="https://fonts.googleapis.com/css2?family=Press+Start+2P&display=swap" rel="stylesheet">
<link rel="stylesheet" href="styles.css">
<style>
.socials {
list-style-type: none;
padding: 0;
text-align: center;
}
.socials li {
margin: 10px 0;
}
.socials a {
text-decoration: none;
color: #00ff00; /* Bright green to match your theme */
font-size: 1.2em;
transition: color 0.3s ease;
}
.socials a:hover {
color: #ff00ff; /* Add a hover effect */
}
</style>
</head>
<body>
<div class="moon">
<div class="small-crater"></div>
<div class="small-crater"></div>
<div class="small-crater"></div>
<div class="small-crater"></div>
</div>
<div class="clouds"></div>
<div class="clouds-reverse"></div>
<div class="stars"></div>
<div class="container">
<h1 class="title">Contact Me</h1>
<p>Feel free to connect with me on the following platforms:</p>
<ul class="socials">
<li>
<a href="https://www.linkedin.com/in/yash-kulkarni-657b971b9/" target="_blank">LinkedIn</a>
</li>
<li>
<a href="https://github.com/yash-kulkarni2000" target="_blank">GitHub</a>
</li>
<li>
<a href="mailto:yashpandharish@vt.edu">Email</a>
</li>
</ul>
<button class="back-home-button" onclick="window.location.href='index.html'">Back to Home</button>
</div>
<script src="script.js"></script>
</body>
</html>