forked from le-christine/le-christine.github.io
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
96 lines (81 loc) · 3.71 KB
/
index.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
<!DOCTYPE html>
<html lang="en" dir="ltr">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Christine Le</title>
<link rel="shortcut icon" type="image/png" href="noun_developer_favicon.png" />
<link rel="stylesheet" href="css/reset.css">
<link rel="stylesheet" href="css/contact.css">
<link rel="stylesheet" href="css/style.css">
<link href="https://fonts.googleapis.com/css?family=Glegoo:400,700|Raleway|Satisfy&display=swap" rel="stylesheet">
<script src="https://kit.fontawesome.com/24e1f3bbee.js" crossorigin="anonymous"></script>
</head>
<body>
<header>
<h1><a href="/index.html">Christine Le</a></h1>
<nav>
<a href="./about.html">about</a>
<a href="#projects">projects</a>
<a href="static/Christine-Le-Resume.pdf">resume</a>
<a href="#contact">contact</a>
</nav>
</header>
<div class="brand-statement-bg">
<div class="brand-statement">
<h2>Software Engineer based in NYC<br/> passionate about making
tech<br/> accessible to all.</h2>
<div class = "social-links">
<a href="https://www.linkedin.com/in/christinele3/" target="_blank"><i class="fab fa-linkedin"></i></a>
<a href ="https://github.com/le-christine" target="_blank"><i class="fab fa-github"></i></a>
<a href ="https://medium.com/@christine_le" target="_blank"><i class="fab fa-medium"></i></a>
</div>
</div>
</div>
<h2 id ="projects">[<span class="section">projects</span>]</h2>
<div class="device-wrapper">
<div class="device-row">
<a class="wip">
<div class="project-mock your-city-cares">
<p>Work in Progress</p>
</div>
</a>
<a href = "https://github.com/le-christine/rock-paper-scissors" target="_blank"><div class="project-mock rock-paper-scissors"></div></a>
<a href="https://github.com/le-christine/tea-room" target="_blank"><div class="project-mock tearoom"></div></a>
</div>
<div class="device-row">
<a href="https://le-christine.github.io/my-dentist-website/" target="_blank"><div class="project-mock dentist"></div></a>
<a href ="http://christinele.nyc/pixelart/" target="_blank"><div class="project-mock pixelart"></div></a>
<a href="https://le-christine.github.io/weather-app/" target="_blank"><div class="project-mock weather"></div></a>
</div>
</div>
<h2 id = "contact">[<span class="section">contact me</span>]</h2>
<div class="maincontainer">
<div class="card">
<div id="postcard-front">
<button onClick="flip()" class="send"><i class="fa fa-paper-plane"></i></button>
</div>
<div id="postcard-back">
<div id="leftbox">
<textarea class="userMsg" name="message" COLS="35" ROWS="25" placeholder="Your message" required></textarea>
</div>
<div id="rightbox">
<input type="submit" value="Send" onClick="flipBack();postAnEmail()" class="send back-send"/>
</input>
<div id="input">
<input class="userName" type="text" name="name" placeholder="Name">
<input class="userEmail" type="email" name="email" placeholder="E-mail" required>
</div>
</div>
<div>
</div>
</div>
</div>
<button class="contact-btn"><a href = "mailto:[email protected]">Get in touch</a></button>
</div>
<script src="https://www.gstatic.com/firebasejs/7.2.2/firebase-app.js"></script>
<script src="https://www.gstatic.com/firebasejs/7.2.1/firebase-firestore.js"></script>
<script src="js/firebase-sdk.js"></script>
<script src="js/post-card-flip.js"></script>
</body>
</html>