-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathcontact.html
173 lines (171 loc) · 4.56 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
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
<!DOCTYPE html>
<html lang="en">
<head>
<script
src="https://code.jquery.com/jquery-3.3.1.js"
integrity="sha256-2Kok7MbOyxpgUVvAk/HJ2jigOSYS2auK4Pfzbm7uH60="
crossorigin="anonymous"
></script>
<script>
$(function () {
$("#header").load("header.html");
$("#footer").load("footer.html");
});
</script>
<!--Title-->
<title>Contact</title>
<!--Encoding-->
<meta charset="UTF-8" />
<!--Metatext-->
<meta name="Contact" />
<!--SEO Keywords-->
<meta
name="keywords"
content="portfolio, coding-boot-camp, technical-writing, programming, engineering"
/>
<!--Author-->
<meta name="author" content="Melissa Kinsey" />
<!--Favicon-->
<link
rel="shortcut icon"
type="image/png"
img
src="images/favicon.png"
/>
<!--Viewport Dimensions-->
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<!-- Font Awesome Link -->
<script
src="https://kit.fontawesome.com/b401ccb608.js"
crossorigin="anonymous"
></script>
<!--Bootstrap Link-->
<link
rel="stylesheet"
href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.6/css/bootstrap.min.css"
/>
<link
href="https://fonts.googleapis.com/css2?family=Red+Rose:wght@300;400;500;600;700&display=swap"
rel="stylesheet"
/>
<!--CSS Link-->
<link rel="stylesheet" href="style.css" />
</head>
<!--BEGIN BODY-->
<body>
<!--NAV HEADER-->
<div id="header"></div>
<!--BEGIN CONTAINER-1-->
<div class="container-fluid bg-3 text-center">
<div id="logo">
<img src="assets/name-5.png" width="40%" />
</div>
<div>
<h1 class="special">Contact Me</h1>
</div>
<div class="row">
<div class="col-sm-4">
<i class="fab fa-github"></i>
<p>
<a href="https://melissakinsey.github.io/portfolio/">
Visit me on GitHub
</a>
</p>
</div>
<div class="col-sm-4">
<i class="fab fa-linkedin fa-3x"></i>
<p>
<a
href="http://www.linkedin.com/in/melissajaynekinsey/"
>
Connect with me on LinkedIn</a
>
</p>
</div>
<div class="col-sm-4">
<i class="fas fa-file-alt"></i>
<p><a href="assets/resume.pdf">Download my resume</a></p>
</div>
</div>
</div>
<div class="container-fluid bg-3 text-center">
<div class="row">
<div class="col-sm-6">
<img
src="assets/Melissa-8xr.png"
style="width: auto"
id="melissa"
alt="Melissa Kinsey"
/>
<div class="address">
<p>Melissa Kinsey</p>
<p>5719 Parc Ridge Way</p>
<p>St. Louis, MO 63139</p>
<p>kinsey.melissa@gmail.com</p>
<p>314-349-6309</p>
</div>
</div>
<div class="col-sm-6">
<form action="/action_page.php">
<span
><label for="fname">First Name</label>
<input type="text" id="fname" name="firstname"
/></span>
<span
><label for="lname">Last Name</label>
<input type="text" id="lname" name="lastname"
/></span>
<span
><label for="country">Country</label>
<select id="country" name="country">
<option value="USA">USA</option>
<option value="Austria">Austria</option>
<option value="Bangladesh">Bangladesh</option>
<option value="Canada">Canada</option>
<option value="China">China</option>
<option value="Dominican Republic">
Dominican Republic
</option>
<option value="Germany">Germany</option>
<option value="India">India</option>
<option value="Iran">Iran</option>
<option value="Iraq">Iraq</option>
<option value="Ireland">Ireland</option>
<option value="Israel">Israel</option>
<option value="Pakistan">Pakistan</option>
<option value="Puerto Rico">Puerto Rico</option>
<option value="Soviet Union">
Soviet Union
</option>
<option value="Turkey">Turkey</option>
<option value="UAE">UAE</option>
<option value="UK">UK</option>
<option value="Ukraine">Ukraine</option>
<option value="Other">Other</option>
</select></span
>
<span
><label for="subject">Subject</label>
<input
type="text"
id="subject"
name="subject"
placeholder="Topic"
/></span>
<span
><label for="comments">Comment or question</label>
<input
type="text"
id="comments"
name="comments"
placeholder="What can I do for you?"
/></span>
<span><input type="submit" value="Submit" /></span>
</form>
</div>
</div>
</div>
<!--FOOTER-->
<div id="footer"></div>
</body>
</html>