-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcontact.html
More file actions
49 lines (45 loc) · 2.09 KB
/
contact.html
File metadata and controls
49 lines (45 loc) · 2.09 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="icon" href="favicon.png" type="image/png" />
<title>Lucy Butler | Contact</title>
<link rel="stylesheet" href="style.css" />
<link href="https://fonts.googleapis.com/css2?family=Playfair+Display&display=swap" rel="stylesheet" />
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.0/css/all.min.css" />
</head>
<body>
<header>
<img src="images/LButler_Headshot.jpeg" alt="Lucy Butler" class="profile-photo">
<div class="header-text">
<h1>Lucy Butler</h1>
<p>Postdoctoral Research Fellow |
<a href="https://www.networkscienceinstitute.org/pomlab" target="_blank">Psychology of Misinformation Lab</a>
</p>
</div>
</header>
<nav>
<a href="index.html">About</a>
<a href="cv.html">CV</a>
<a href="publications.html">Publications</a>
<a href="projects.html">Projects</a>
<a href="contact.html" class="active">Contact</a>
</nav>
<main>
<section>
<h2>Contact</h2>
<p>Feel free to reach out via <a href="mailto:l.butler@northeastern.edu">email</a> or connect with me on either <a target="_blank" href="https://www.linkedin.com/in/lucy-h-butler/">Linkedin</a> or <a target="_blank" href="https://bsky.app/profile/lucy-h-butler.bsky.social">BlueSky</a>.</p>
</main>
<footer>
<ul class="footer-links">
<li><a href="mailto:l.butler@northeastern.edu" title="Email"><i class="fas fa-envelope"></i></a></li>
<li><a href="https://scholar.google.com/citations?user=jR0tRkIAAAAJ&hl=en" target="_blank" title="Google Scholar"><i class="fas fa-graduation-cap"></i></a></li>
<li><a href="https://www.linkedin.com/in/lucy-h-butler/" target="_blank" title="LinkedIn"><i class="fab fa-linkedin"></i></a></li>
<li><a href="https://bsky.app/profile/lucy-h-butler.bsky.social" target="_blank" title="Bluesky">
<img src="images/Bluesky_Logo_grey.PNG" alt="Bluesky" class="bluesky-icon">
</a></li>
</ul>
</footer>
</body>
</html>