forked from code-differently/RR-JS-HTML-Resume
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
134 lines (86 loc) · 4.51 KB
/
index.html
File metadata and controls
134 lines (86 loc) · 4.51 KB
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
<!DOCTYPE html>
<html>
<head>
<title> MALCOLM'S RESUME and FORM</title>
</head>
<body>
<h1>Malcolm's Resume</h1>
<h2>Objective</h2>
<p> The objective of this resume is to obtain a great career utilizing the amazing
code that has been taught by code differently. I would like to obtain a career with software development
and increase the value of a company. I will do this by executing development at an high level each day.
</p>
<h2>Work Experience</h2>
<h3> Influencers Lab Media</h3>
<h4> January 2017-present</h4>
<ul>
<li>oversees a company’s digital media efforts, including websites and all social Media Platforms </li>
<li>creating and curating shareable content; determining which platform is best suited for each piece of content
</li>
<li>works directly with the Director of Business Development and Marketing for creative strategy and implementation
directing paid search and social campaigns and analyzing the performance of those campaigns </li>
<li>maintaining brand consistency across platforms; assessing SEO configurations; monitoring analytics; managing the digital budget</li>
<li>Developing and foster new vendor and business relationships</li>
</ul>
<h2>Education</h2>
<ul>
<li>Seton Hall University, South Orange, New Jersey</li>
<li>American Chemistry Society Certified</li>
<li>Bachelor of Science in Chemical Engineering, graduation May 2008, 3.5 GPA</li>
</ul>
<h2>Skills</h2>
<ul>
<li>Hard Working</li>
<li>Pays great attention to Detail</li>
<li>Understands the dynamics of fostering relationships</li>
<li>Deep Understanding of Social Media Strategy and Marketing</li>
</ul>
<h2>Linkedin Profile</h2>
<a href="https://www.linkedin.com/in/malcolmcoley/">Malcolm's LinkedIn Profile</a><br><br>
<img src="/Users/student07/Desktop/New Coding Projects/Images/IMG_9899.jpg">
<form action="index.html" method="post">
<h1> Contact Form</h1>
<fieldset>
<legend><span class="number"> 1 </span> Contact Information</legend>
<label for="name">First Name:</label>
<input type="text" id="name" name="user_name">
<label for="name">Last Name:</label>
<input type="text" id="name" name="user_name">
<label for="Contact">Contact:</label>
<input type="Contact" id="Contact" name="user_Contact">
<label>Phone Number:</label>
<input type="radio" id="Landline" value="Landline" name="Landline">
<label for="Landline" class="light">Landline</label><br>
<input type="radio" id="Mobile" value="Mobile" name="mobile">
<label for="Mobile" class="light">Mobile</label>
<label for="mail">Email:</label>
<input type="mail" id="mail" name="user_email">
</fieldset>
<fieldset>
<legend><span class="number"> 2 </span> Basic Profile </legend>
<label for="job">How did you hear about us</label><br>
<select id="job" name="user_job">
<optgroup label="search engine">
<option value="Google"> Google</option>
<option value="Yahoo"> Yahoo</option>
</optgroup>
<optgroup label="social media">
<option value="Facebook"> Facebook</option>
<option value="instagram"> instagram</option>
<option value="linkedin"> linkedin</option>
</optgroup>
</select>
<label> Interest for contacting </label><br>
<input type="checkbox" id="social media" value="social media" name="user_socialmedia">
<label class="light" for="social media">social media</label><br>
<input type="checkbox" id="SEO" value="SEO" name="user_SEO">
<label class="light" for="SEO">SEO</label><br>
<input type="checkbox" id="Recruiter" value="Recruiter" name="user_Recruiter">
<label class="light" for="Recruiter">Recruiter</label><br>
<label for="message"> Message: </label>
<textarea id="message" name="message"></textarea>
</fieldset>
<button type="submit">submit</button>
</form>
</body>
</html>