-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcontact-me.html
87 lines (81 loc) · 3.69 KB
/
contact-me.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
<!DOCTYPE html>
<html lang = "en">
<html>
<head>
<meta charset = "UTF-8">
<meta name = "viewport" content="width=device-width", initial-scale="1.0">
<title>Tina Liu Portfolio</title>
<link rel="stylesheet" href="contactme.css">
</head>
<body>
<!--Header Section -->
<section id = "header">
<div class="header container">
<div class="entire-bar">
<div class="upperleft">
<div class="logo">
<a href="index.html">
<img src = "Images/4058ED2F-0192-42D7-A5CC-447BEC75A315.PNG">
</a>
</div>
<div class = "bigname">
<a href = "index.html"><h1>Tina Liu</h1></a>
</div>
</div>
<div class="navlist">
<div class="hamburger"><div class="bar"></div></div>
<ul>
<li><a href = "index.html" data-after= "home">Home</a></li>
<li><a href = "projects.html" data-after="OverviewProjects">Projects</a></li>
<li><a href = "experience.html" data-after="Experiences">Resume</a></li>
<li><a href = "contact-me.html" data-after = "ContactMe">Contact Me</a></li>
</ul>
</div>
</div>
</div>
</section>
<section id="contact">
<div class="contact container">
<div class="contact-info">
<h1> Contact Me</h1>
<div class="links">
<a href="https://www.linkedin.com/in/tinaliu27/">
<img src="Images/linkedln.png">
</a>
<a href = "mailto:[email protected]?">
<img src="Images/gmail.png">
</a>
<a href = "https://github.com/tinaliu27" class="github">
<img src="Images/github.png">
</a>
</div>
<div class="text">
<h2>Feel free to ask me any questions </h2>
</div>
</div>
<div class="contact-fill">
<form action="#" name="contact-form">
<div class="name">
<div class="fname">
<label for="fname">First Name</label>
<input type="text" id="fname" name="firstname" placeholder="Ex: Tina">
</div>
<div class="lname">
<label for="lname">Last Name</label>
<input type="text" id="lname" name="lastname" placeholder="Ex: Liu">
</div>
</div>
<label for="email">Email</label>
<input type="text" id="email" name="email">
<div class = "subject">
<label for="subject">Comment</label>
<input type="text" id="subject" name="subjects">
</div>
<input type="submit" value="Submit">
</form>
</div>
</div>
</section>
<script src="circle.js"></script>
</body>
</html>