-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcontact.html
96 lines (93 loc) · 2.71 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
<!-- contact.html -->
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Contact</title>
<style>
body {
font-family: Arial, sans-serif;
margin: 0;
padding: 0;
background: url('images/nasa_star_background.jpg') no-repeat center center fixed;
background-size: cover;
color: white;
}
nav {
position: absolute;
top: 20px;
right: 20px;
display: flex;
gap: 15px;
}
nav a {
color: white;
text-transform: uppercase;
text-decoration: none;
font-size: 18px;
font-weight: bold;
transition: all 0.3s ease;
}
nav a:hover {
text-decoration: underline;
font-size: 20px;
}
.title {
position: absolute;
top: 20px;
left: 20px;
font-size: 24px;
font-weight: bold;
}
.container {
padding: 40px;
max-width: 600px;
margin: auto;
background: rgba(80, 80, 80, 0.8);
box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
border-radius: 8px;
text-align: center;
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
}
.contact-icon {
font-size: 50px;
color: white;
margin-bottom: 10px;
}
.email {
font-size: 20px;
color: white;
text-decoration: none;
font-weight: bold;
}
.image-credits {
position: absolute;
bottom: 10px;
left: 20px;
font-size: 12px;
color: rgba(255, 255, 255, 0.7);
}
</style>
</head>
<body>
<div class="title">Amanda M. Cook</div>
<nav>
<a href="index.html">Home</a>
<a href="publications.html">Publications</a>
<a href="media.html">Media</a>
<a href="cv.html">CV</a>
<a href="contact.html">Contact</a>
</nav>
<section class="container">
<div class="contact-icon">📧</div>
<p>If you would like to get in touch, please send me an email.</p>
<a class="email" href="mailto:[email protected]">[email protected]</a>
<p>My office is number 207 and it is located in the Trottier Space Institute at 3550 rue University, Montreal QC H3A 2A7. </p>
</section>
<div class="image-credits">Background image from NASA/JPL-Caltech/STScI/IRAM</div>
</body>
</html>