Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions .gitpod.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
image: gitpod/workspace-full

tasks:
- init: yml install
command: 'echo "TODO: Replace with command to start project"'
70 changes: 70 additions & 0 deletions contact.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,70 @@
<div id="after_submit"></div>
<form id="contact_form" action="#" method="POST" enctype="multipart/form-data">
<section>
<div class="row">
<label class="required" for="name">First Name:</label><br />
<input id="name" class="input" name="name" type="text" value="" size="30" maxlength="30" /><br />
<label class="required" for="name">Last Name:</label><br />
<input id="name" class="input" name="name" type="text" value="" size="30" maxlength="30" /><br />
<label class="required" for="name">Contact Phone Number:</label><br />
<input id="name" class="input" name="name" type="text" value="" size="30" /><br />
<span id="name_validation" class="error_message"></span>
</div>
</section>
<section>
<p>Phone Number Type:</p>
<div>
<input type="radio" id="Landline" name="drone" value="Landline"
checked>
<label for="Landline">Landline</label>
</div>

<div>
<input type="radio" id="Mobile" name="drone" value="Mobile">
<label for="Mobile">Mobile</label>
</div>
</section>
&nbsp;

<section>
<div class="row">
<label class="required" for="email">Contact email:</label><br />
<input id="email" class="input" name="email" type="text" value="" size="30" maxlength="50" /><br />
<span id="email_validation" class="error_message"></span>
</div>
</section>
&nbsp;
<section>
<label for="hear">How did you hear about us? </label>
<select class="contact-drop-down" name="hear" id="hear">
<option>Click to choose</option>
<option value="1">Search Engine</option>
<option value="2">Social Media</option>
<option value="3">Recruiter</option>
<option value="5">Other</option>
</select>
</section>
&nbsp;
<section>
<p> Interest for contacting: </p>
<input type="checkbox" id="interest1" name="interest1" value="">
<label for="interest1"> Knowledge of HTML, CSS, JavaScript </label><br>
<input type="checkbox" id="interest2" name="interest2" value="">
<label for="interest2"> Analytical Thinker </label><br>
<input type="checkbox" id="interest3" name="interest3" value="">
<label for="interest3"> Typing 65wpm </label><br>
<input type="checkbox" id="interest4" name="interest4" value="">
<label for="interest4"> Professional and concise communication </label><br><br>
</section>

<section>
<div class="row">
<label class="required" for="message">Message:</label><br />
<textarea id="message" class="input" name="message" rows="7" cols="30" maxlength="250"></textarea><br />
<span id="message_validation" class="error_message"></span>
</div>
&nbsp;
</section>

<input type="submit" value="Submit">
</form>
44 changes: 44 additions & 0 deletions index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,44 @@
<!DOCTYPE html>
<html>
<head>
<title>Resume</title>
</head>
<body>
<header>
<h1>Lanay Harris</h1>
</header>
<main>
<h2>Objective</h2>
<p>Web developer with experience providing excellent customer service, as well as, leadership and support to a team. Aiming to use my technical knowledge and analytical skills to fill your web developer position. Possessing a BS in Mathematics.</p>
<h3>Work Experience</h3>
<p>
Enterprise 2018-2020<br>
Wells Fargo 2013-2017
</p>

<h3>Education</h3>

<p>Code Differently<br>
Current-2021</p>

<p>Delaware State University<br>
Bachelor of Science, Mathematics<br>
Completed 2017</p>

<p>Dover High School<br>
High School Diploma<br>
Completed 2009</p>

<h3>Skills</h3>
<ul>
<li>Knowledge of HTML, CSS, JavaScript</li>
<li>Analytical thinker</li>
<li>Typing 65wpm</li>
<li>Professional and concise communication</li>
</ul>

<a href="https://www.linkedin.com/in/lanay-harris-157652100/"> LINKEDIN</a>
</main>
</body>
</html>