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
40 changes: 40 additions & 0 deletions Contacts.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,40 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Contact Form</title>
</head>
<body>
<a href="resume.html">resume</a>
<form>
<h3>Contact Form</h3>
<label for="fname"> First Name</label>
<input type="text" id="fname" name="fname" maxlength="30"><br>
<label for="lname"> Last Name</label>
<input type="text" id="lname" name="lname" maxlength="30"><br>
<label for="phone">Telephone Number</label>
<input type="text" id="phone" name="phone"><br>
<label for="email"> Email Address</label>
<input type="text" id="email" name="email" maxlength="50"><br>
<label for="method">How did you find us?</label>
<select id="method" name="method">
<option value="search">search engine</option>
<option value="social">social media</option>
<option value="recruiter">recruiter</option>
</select><br>
Skills
<input type="checkbox" id="html" name="html">
<label for="html">HTML</label>
<input type="checkbox" id="css" name="css">
<label for="css">CSS</label>
<input type="checkbox" id="javascript" name= "javascript">
<label for="javascript">JavaScript</label><br>
<label for="message">Message</label>
<input type="message" id="message" maxlength="250"><br>
<input type="submit">

</form>

</body>
</html>
1 change: 0 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,6 @@ Create a web page that displays your resume. The web page should consist of the

Now is time create a 2nd page. This page will contain a contact form. The form should have the following fields:

* First Name (text field, limit of 30 characters)
* Last Name (text field, limit of 30 characters)
* Contact phone number (text field)
* Phone number type: Landline, Mobile (radio button)
Expand Down
42 changes: 42 additions & 0 deletions Resume.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,42 @@
<!DOCTYPE html>
<html>

<head>
<title>Raheemah Shamsid-Deen Hampton</title>
</head>
<h1> Raheemah Shamsid-Deen Hampton</h1>
<h2> Objective</h2>
<p>To obtain a position in Web Development that maximizes my skills and creativity in Coding in Child Welfare and Human Services Systems</p>

<body>
<h2> Work Experience</h2>
<p>4/2008-12/19 Southeast Regional Director, Commonwealth of Pennsylvania, Office of Children, Youth and Families</p>
<ul>
<li> Provide licensing and oversight to public and private child welfare agencies in Southeast Region Pennsylvania</li>
<li> Provide technical assistance and complete Quality Assurance Reviews</li>
<li>Investigate child abuse reports for children in placement</li>
</ul>
<h2>Education</h2>
<p> 2002, Master of Social Services, Bryn Mawr Graduate School of Social Work and Social Research</p>
<p> 1993, Villanova University, Bachelor of Communication Arts </p>
<h2> Skills</h2>
<ul>
<li> Trainer/Facilitator</li>
<li> Team Building</li>
<li> Organizational Development and Technical Assistance</li>
</ul>
<h2> Awards </h2>
<ul>
<li> Emerging Leader of the Year</li>
<li> Leadership Development Institute</li>
<li> Centennial Recognition</li>
</ul>

<a href="https://www.linkedin.com/in/raheemah-shamsid-deen-hampton-69006867/"> LinkedIn Profile</a><br>
<img src="https://media-exp1.licdn.com/dms/image/C5603AQFUVOdtW2jbQA/profile-displayphoto-shrink_200_200/0?e=1611792000&v=beta&t=gu-piZTq3nfmmlhRen6oX-5Mu3NzurdV80WfKyRuLQ4" alt="Photo of Raheemah">

<a href="Contacts.html">contact</a>
</body>

</html>