forked from kristinaay/kristinaay.github.io
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcontactme.html
77 lines (75 loc) · 2.02 KB
/
contactme.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta name="author" content="Kristina Yin" />
<meta
name="description"
content="The contact me page for the website."
/>
<link rel="icon" type="image/x-icon" href="Images/favicon.ico" />
<title>Contact Me</title>
<link rel="stylesheet" href="CSS/contact.css" />
<link
href="https://fonts.googleapis.com/css2?family=Raleway:wght@100&display=swap"
rel="stylesheet"
/>
<link
href="https://fonts.googleapis.com/css2?family=Source+Serif+Pro&display=swap"
rel="stylesheet"
/>
<link
href="https://fonts.googleapis.com/css2?family=Rajdhani:wght@300&display=swap"
rel="stylesheet"
/>
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/jquery.min.js"></script>
<script src="JS/script.js"></script>
</head>
<body>
<div class="navbar">
<ul>
<li><a href="index.html">Home</a></li>
<li><a href="aboutme.html">About Me</a></li>
<li><a href="projects.html">Projects</a></li>
<li><a href="contactme.html">Contact</a></li>
</ul>
</div>
<div class="container">
<header><h1>Contact Me</h1></header>
<form action="https://formspree.io/mdopkedz" method="POST">
<input
type="text"
name="name"
placeholder="Enter your name"
class="name"
/>
<br />
<input
type="email"
name="_replyto"
placeholder="Enter your email address"
class="email"
/>
<br />
<textarea
class="message"
name="message"
rows="20"
placeholder="Your message here"
></textarea>
<br />
<div class="status"></div>
<br />
<button type="submit" class="submit" value="send">
Send Message
</button>
</form>
</div>
<label class="switch">
<input type="checkbox" onchange="changeTheme()" />
<span class="slider"></span>
</label>
<script src="JS/theme.js"></script>
</body>
</html>