-
Notifications
You must be signed in to change notification settings - Fork 0
/
contact.html
145 lines (142 loc) · 4.76 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
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta
name="description"
content="Contact Gabriella Corales, a Front-End Developer, based in the U.S. She is a Stanford Grad who is passionate about technology, education, and making the world a better place. Contact her today with your web development needs."
/>
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="preconnect" href="https://fonts.googleapis.com" />
<script
src="https://kit.fontawesome.com/8dacd31b6d.js"
crossorigin="anonymous"
></script>
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
<link
href="https://fonts.googleapis.com/css2?family=Playfair+Display:wght@700&family=Poppins:wght@400;500;700&display=swap"
rel="stylesheet"
/>
<link
href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css"
rel="stylesheet"
integrity="sha384-gH2yIJqKdNHPEq0n4Mqa/HGKIhSkIHeL5AyhkYV8i59U5AR6csBvApHHNl/vI1Bx"
crossorigin="anonymous"
/>
<link rel="stylesheet" href="/styles/portfolio.css" />
<title>Contact | Gabriella Corales, Front-End Developer</title>
</head>
<body>
<div class="container-fluid bg-light">
<nav class="d-flex justify-content-between">
<div>
<a href="/" title="Home | Gabriella Corales, Front-End Developer"
><img
src="/images/coder-emoji.png"
alt="female coder emoji"
/>EllaCodes</a
>
</div>
<ul>
<li>
<a href="/" title="Home | Gabriella Corales, Front-End Developer"
>Home</a
>
</li>
<li>
<a href="/about.html" title="About | Gabriella Corales">About</a>
</li>
<li>
<a href="/my-projects.html" title="Projects | Gabriella Corales"
>Work</a
>
</li>
<li>
<a
href="/contact.html"
class="active"
title="Contact | Gabriella Corales"
>Contact</a
>
</li>
</ul>
</nav>
</div>
<div class="container content">
<h1>Let's get in touch!</h1>
<div class="contact">
<h3 class="mt-5 text-brand">LinkedIn</h3>
<p>
<i class="fa-brands fa-linkedin"></i>
<a
href="https://www.linkedin.com/in/gabriella-corales"
target="_blank"
class="text-decoration-none text-dark"
title="Contact Gabriella Corales"
>linkedin.com/in/gabriella-corales</a
>
</p>
<h3 class="mt-5 text-brand">Email</h3>
<p>
<i class="fa-solid fa-envelope"></i>
<a
href="mailto:[email protected]"
target="_blank"
class="text-decoration-none text-dark"
title="Contact Gabriella Corales"
>
</p>
<h3 class="mt-5 text-brand">Phone</h3>
<p><i class="fa-solid fa-phone"></i> 210.724.3150</p>
<h3 class="mt-5 text-brand">GitHub</h3>
<p>
<a
href="https://github.com/EllaCodes4"
target="_blank"
class="text-decoration-none text-dark"
title="Contact Gabriella Corales"
><i class="fa-brands fa-github"></i
></a>
</p>
</div>
</div>
<div class="container">
<footer>
<div
class="contact-box d-flex justify-content-between d-none d-md-flex"
>
<div>
<h4>Work Inquiry</h4>
<p class="mt-3 text-muted">Let's work together</p>
</div>
<div class="mt-3">
<a href="/contact.html" class="btn btn-hero">Contact Me</a>
</div>
</div>
<div class="social-media-icons mt-3">
<a href="mailto:[email protected]">[email protected]</a>
<br />
<br />
<a href="https://github.com/EllaCodes4" target="_blank"
><i class="fa-brands fa-github"></i
></a>
<a href="https://twitter.com/EllaCodes" target="_blank"
><i class="fa-brands fa-twitter"></i
></a>
<a
href="https://www.linkedin.com/in/gabriella-corales"
target="_blank"
><i class="fa-brands fa-linkedin"></i
></a>
</div>
</footer>
</div>
<script
src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.bundle.min.js"
integrity="sha384-A3rJD856KowSb7dwlZdYEkO39Gagi7vIsF0jrRAoQmDKKtQBHUuLZ9AsSv4jD4Xa"
crossorigin="anonymous"
></script>
</body>
</html>