-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcontactScreen.html
More file actions
55 lines (51 loc) · 1.81 KB
/
Copy pathcontactScreen.html
File metadata and controls
55 lines (51 loc) · 1.81 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Eric Zhong's Website</title>
<link rel="stylesheet" href="contactScreen.css">
</head>
<!-- Google tag (gtag.js) -->
<script async src="https://www.googletagmanager.com/gtag/js?id=G-VG9S0H4EGX"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'G-VG9S0H4EGX');
</script>
<body>
<div class="headerContainer">
<div class="nameSignature">Eric Zhong</div>
<div class="nameDescription">
Software Engineer, Mahjong Fanatic, Escape Room Enthusiast, Mental Health Advocate, Harry Potter Nerd, Brain
Teaser Maniac, Beach
Volleyball Player, Food Aficionado
</div>
<a class="homeButton" href="index.html">Home</a>
<a class="resumeButton" href="resumeScreen.html" onclick="openResume()">Resume</a>
<a class="experienceButton" href="experienceScreen.html">Experience</a>
</div>
<div class="container">
<div class="postcard">
<div class="greetingsText">Greetings From</div>
<div class="homeDisplay">
<div class="contactText">CONTACT</div>
</div>
<div class="location">Internet, Earth</div>
</div>
</div>
<div class="iconsContainer">
<a href="mailto:ejz25@cornell.edu">
<img class="gmail" src="./pictures/gmail.png" alt="Email">
</a>
<a href="https://www.linkedin.com/in/ericzhong1/" target="_blank">
<img class="linkedin" src="./pictures/linkedin.png" alt="LinkedIn">
</a>
<a href="https://github.com/ezhong0211" target="_blank">
<img class="github" src="./pictures/github.png" alt="Github">
</a>
</div>
<script src="script.js"></script>
</body>
</html>