-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcontact.html
129 lines (117 loc) · 5.53 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
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Caiyi Chen</title>
<link rel="stylesheet" href="./styles/style.css">
<link rel="stylesheet" href="./fontawesome/css/all.css">
</head>
<body>
<div class="contactMainPage">
<header>
<nav class="topMenu">
<ul class="topMenuContainer">
<li><a href="./index.html" class="first">Home</a></li>
<li><a href="./index.html#about" class="second">About</a></li>
<li><a href="./index.html#projects" class="third">Projects</a></li>
<li><a href="#" class="forth">Contact</a></li>
</ul>
</nav> <!-- nav end -->
</header><!-- header end -->
<div class="mobileHeader">
<button class="hamburger" id="hamburger">
<i class="fa-solid fa-bars"></i>
</button> <!-- hamburger end -->
<nav class="mobileTopMenu">
<ul class="mobileTopMenuContainer">
</ul>
</nav><!-- nav end -->
</div><!-- mobileHeader end -->
<div class="title">
<h1 data-text="Contact">Contact</h1>
<div class="contactPageSubtitle">
<span class="contactWord"></span>
<span class="sr-only">
Thanks For Stopping By! I'd Love To Hear From You!
</span>
<span class="line">|</span>
</div>
</div><!-- title end -->
<div class="arrow">
<a href="#contactContent" class="anchor">
<div class="arrowContainer">
<span class="sr-only">Go to Contact Information</span>
<img src="./assets/arrow.png" alt="a downward arrow">
</div>
</a>
</div><!-- arrow end -->
</div>
<div id="contactContent" class="wrapper">
<div id="contactInfoTitle">
<h2>Get In Touch!</h2>
</div> <!-- contactInfoTitle end -->
<div class="contactIntro">
<p>
If you want to have a quick chat over a virtual/in-person coffee chat (or bubble tea if you're in the
mood) - you can send a message to me on here or book a meeting with me on
<a href="https://calendly.com/plutoccy" class="calendly">Calendly</a>. Click here to book a
timeslot. </br>
Alternatively, you can get in contact with me via the following options below!
</p>
</div> <!-- contactIntro end -->
<div class="contactInfo">
<div class="contactIconContainer">
<div class="icon linkedIn">
<a href="https://www.linkedin.com/in/caiyi-chen-b21898244/">
<i class="fa-brands fa-linkedin"></i>
</a>
<span class="sr-only">
<a href="https://www.linkedin.com/in/caiyi-chen-b21898244/">LinkedIn Page</a>
</span>
</div>
<div class="icon gitHub">
<a href="https://github.com/Sputnikccy">
<i class="fa-brands fa-github"></i>
</a>
<span class="sr-only">
<a href="https://github.com/Sputnikccy">GitHub Page</a>
</span>
</div>
<div class="icon medium">
<a href="https://www.canva.com/design/DAFRNuww2GA/r24adktz1Tz2uDj_6faqmg/view?utm_content=DAFRNuww2GA&utm_campaign=designshare&utm_medium=link2&utm_source=sharebutton">
<i class="fa-solid fa-file"></i>
</a>
<span class="sr-only">
<a href="https://www.canva.com/design/DAFRNuww2GA/r24adktz1Tz2uDj_6faqmg/view?utm_content=DAFRNuww2GA&utm_campaign=designshare&utm_medium=link2&utm_source=sharebutton">Resume</a>
</span>
</div>
</div>
<div class="contactForm">
<div class="formContainer">
<form action="https://formsubmit.co/aeee86ef33924e734348b1135651ef94" method="POST">
<label for="name" class="sr-only">Name</label>
<input type="text" id="name" placeholder="Name">
<label for="emailAddress" class="sr-only">Email Address</label>
<input type="email" id="emailAddress" placeholder="Email address">
<label for="message"></label>
<textarea name="message" id="message" rows="10" cols="30" placeholder="Message"></textarea>
<button type="submit" class="button" id="userSubmit">submit</button>
</form>
</div><!-- formContainer end -->
</div><!-- contactForm end -->
</div> <!-- contactInfo end -->
</div><!-- contactContent end -->
<div class="lineContainer">
<div class="line top"></div>
<div class="line bottom"></div>
<div class="line left"></div>
<div class="line right"></div>
</div><!-- lineContainer end -->
<script src="./scripts/homeHeader.js"></script>
<script src="./scripts/contactHeader.js"></script>
<script src="./scripts/contactForm.js"></script>
<script src="./scripts/hamburgerMenu.js"></script>
</body>
</html>