-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathContactPage.html
More file actions
147 lines (129 loc) · 3.24 KB
/
ContactPage.html
File metadata and controls
147 lines (129 loc) · 3.24 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
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
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Aiden Lang - Contact</title>
<link href="https://fonts.googleapis.com/css2?family=Press+Start+2P&display=swap" rel="stylesheet">
<link rel="icon" type="image/x-icon" href="../images/favicon.png">
<style>
body {
background-image: url('../images/starry.gif');
background-color: #000;
color: #fff;
font-family: "Press Start 2P", system-ui;
padding: 40px;
margin: 0;
}
.container {
max-width: 1200px;
margin: 0 auto;
position: relative;
}
.header {
text-align: center;
margin-bottom: 60px;
}
h1 {
font-size: 32px;
color: #a0e540;
animation: bounce 1.5s infinite;
text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
display: inline-block;
padding: 10px 20px;
border: 2px solid #a0e540;
border-radius: 10px;
}
@keyframes bounce {
0%, 100% {
transform: translateY(0);
}
50% {
transform: translateY(-10px);
}
}
.content {
display: flex;
flex-direction: column;
align-items: center;
}
.contact-info {
background-color: rgb(40, 37, 37);
padding: 30px;
margin-bottom: 30px;
border-radius: 10px;
box-shadow: 0 0 20px rgba(160, 229, 64, 0.3);
text-align: center;
width: 100%;
max-width: 500px;
}
.contact-info p {
font-size: 14px;
line-height: 1.6;
margin-bottom: 20px;
}
.contact-info a {
color: #a0e540;
text-decoration: none;
}
.contact-info a:hover {
text-decoration: underline;
}
.back-link {
display: inline-block;
color: #fff;
text-decoration: none;
font-size: 14px;
transition: color 0.3s;
position: absolute;
top: 20px;
left: 20px;
}
.back-link:hover {
color: #a0e540;
}
.back-link:before {
content: "◀";
margin-right: 10px;
color: #a0e540;
}
@media screen and (max-width: 768px) {
.container {
padding: 20px;
}
.header {
margin-bottom: 30px;
}
h1 {
font-size: 24px;
}
.contact-info {
padding: 20px;
}
.contact-info p {
font-size: 12px;
}
.back-link {
top: 0px;
left: 0px;
font-size: 12px;
}
}
</style>
</head>
<body>
<div class="container">
<a href="index.html" class="back-link">Back to Home</a>
<header class="header">
<h1>Contact</h1>
</header>
<div class="content">
<div class="contact-info">
<p>Email: <a href="mailto:ajlang5@wisc.edu">ajlang5@wisc.edu</a></p>
<p>Phone: <a href="tel:+9083231383">+1 (908) 323-1383</a></p>
<p>GitHub: <a href="https://github.com/aidenlang3" target="_blank">github.com/aidenlang3</a></p>
</div>
</div>
</div>
</body>
</html>