-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcontact.html
More file actions
61 lines (51 loc) · 2.33 KB
/
contact.html
File metadata and controls
61 lines (51 loc) · 2.33 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Contact - Riya Goyal</title>
<link rel="stylesheet" href="styles.css">
</head>
<body>
<header>
<h1>Contact</h1>
</header>
<nav>
<ul>
<li><a href="index.html">Home</a></li>
<li><a href="experience.html">Experience</a></li>
<li><a href="research.html">Research & Publications</a></li>
<li><a href="skills.html">Skills & Certifications</a></li>
<li><a href="education.html">Education & Awards</a></li>
<li><a href="awards.html">Honors and Awards</a></li>
</ul>
</nav>
<main id="contact">
<h2>Contact Me</h2>
<div class="contact-container">
<p>
Feel free to reach out on <a href="mailto:riyagoyal1126@gmail.com">riyagoyal1126@gmail.com</a> for collaborations, inquiries, or just to connect!
</p>
<div class="contact-container">
<!-- LinkedIn -->
<div class="contact-card">
<img src="https://upload.wikimedia.org/wikipedia/commons/thumb/c/ca/LinkedIn_logo_initials.png/500px-LinkedIn_logo_initials.png" alt="LinkedIn Icon" class="contact-icon">
<p><a href="https://www.linkedin.com/in/riya-goyal-23b6b326a" target="_blank">LinkedIn</a></p>
</div>
<!-- Google Scholar -->
<div class="contact-card">
<img src="https://upload.wikimedia.org/wikipedia/commons/thumb/c/c7/Google_Scholar_logo.svg/2048px-Google_Scholar_logo.svg.png" alt="Google Scholar Icon" class="contact-icon">
<p><a href="https://scholar.google.com/citations?hl=en&user=qncyVHAAAAAJ" target="_blank">Google Scholar</a></p>
</div>
<!-- GitHub -->
<div class="contact-card">
<img src="https://github.githubassets.com/assets/GitHub-Mark-ea2971cee799.png" alt="GitHub Icon" class="contact-icon">
<p><a href="https://github.com/riyagoyal2134" target="_blank">GitHub</a></p>
</div>
</div>
</main>
<footer>
<p>© 2025 Riya Goyal. All rights reserved.</p>
</footer>
</body>
</html>