-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcontact.html
More file actions
75 lines (70 loc) · 2.41 KB
/
Copy pathcontact.html
File metadata and controls
75 lines (70 loc) · 2.41 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Contact — Your Name</title>
<link rel="preconnect" href="https://fonts.googleapis.com">
<link href="https://fonts.googleapis.com/css2?family=Fraunces:wght@400;600;700&family=Inter:wght@400;500;600&family=IBM+Plex+Mono:wght@400;500&display=swap" rel="stylesheet">
<link rel="stylesheet" href="style.css">
</head>
<body>
<header class="site-header">
<div class="wrap">
<a href="index.html" class="site-name">Your Name<span>.</span></a>
<nav class="site-nav">
<a href="index.html">Home</a>
<a href="research.html">Research</a>
<a href="publications.html">Publications</a>
<a href="contact.html" class="active">Contact</a>
</nav>
</div>
</header>
<section class="hero" style="padding-bottom: 20px;">
<div class="wrap" style="display:block;">
<span class="eyebrow">Contact</span>
<h1 style="font-size:2.1rem;">Get in touch</h1>
<p class="hero-vision">
Feel free to reach out about collaborations, opportunities, or
questions about my work.
</p>
</div>
</section>
<section class="block" style="border-top:none;">
<div class="wrap">
<!-- Edit the text after each label. Delete any <li> rows you don't need. -->
<ul class="contact-list">
<li>
<span class="contact-label">Email</span>
<span><a href="mailto:you@example.com">you@example.com</a></span>
</li>
<li>
<span class="contact-label">Address</span>
<span>Department Name, University Name<br>City, Country</span>
</li>
<li>
<span class="contact-label">Scholar</span>
<span><a href="#" target="_blank" rel="noopener">Google Scholar profile</a></span>
</li>
<li>
<span class="contact-label">ORCID</span>
<span><a href="#" target="_blank" rel="noopener">0000-0000-0000-0000</a></span>
</li>
<li>
<span class="contact-label">LinkedIn</span>
<span><a href="#" target="_blank" rel="noopener">linkedin.com/in/your-name</a></span>
</li>
<li>
<span class="contact-label">GitHub</span>
<span><a href="#" target="_blank" rel="noopener">github.com/your-username</a></span>
</li>
</ul>
</div>
</section>
<footer>
<div class="wrap">
<p>© 2026 Your Name. Last updated [Month Year].</p>
</div>
</footer>
</body>
</html>