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
Binary file added IMG-3619.JPG
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
1 change: 1 addition & 0 deletions RR-JS-HTML-Resume
Submodule RR-JS-HTML-Resume added at a2dfa1
72 changes: 72 additions & 0 deletions contact-form.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,72 @@
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Contact Me</title>
<link rel="stylesheet" href="css/normalize.css">
<link href='http://fonts.googleapis.com/css?family=Nunito:400,300' rel='stylesheet' type='text/css'>
<link rel="stylesheet" href="css/main.css">
</head>

<body>
<form action="contact form.html" method="post">
<h1>Contact Me!</h1>

<fieldset>
<legend>Your Information</legend><br>

<label for="f_name">First Name:</label>
<input type="text" id="f_name" name="first_name" maxlength="30" placeholder="First Name" required><br><br>

<label for="l_name">Last Name:</label>
<input type="text" id="l_name" name="last_name" maxlength="30" placeholder="Last Name" required><br><br>

<label for="tel">Phone Number:</label>
<input type="text" id="tel" name="telephone" placeholder="###-###-####" pattern="[0-9]{3}-[0-9]{3}-[0-9]{3}" required><br><br>
<label for="land_line">Landline?</label>
<input type="radio" id="land_line" name="number_type" value="Landline" required><br>
<label for="mobile">Mobile?</label>
<input type="radio" id="mobile" name="number_type" value="Mobile" required><br><br>

<label for="mail">Email Address:</label>
<input type="email" id="mail" name="user_email" maxlength="50" placeholder="Email@address.com">
</fieldset><br>

<fieldset>
<legend>How did you hear about me?</legend>
<select>

<option value="recruiter">Recruiter</option>
<optgroup label="Search Engine">
<option value="google">Google</option>
<option value="bing">Bing</option>
<option value="yahoo">Yahoo</option>
</optgroup>
<optgroup label="Social Media">
<option value="instagram">Instagram</option>
<option value="twitter">Twitter</option>
<option value="linkedin">LinkedIn</option>
</optgroup>
<option value="other">Other</option>

</select>
</fieldset><br>

<fieldset>
<legend>Interest for Contacting:</legend>
<input type="checkbox" id="teacher" value="interest_teacher" name="user_interest"><label for="teacher">Teacher</label><br>
<input type="checkbox" id="tutor" value="interest_tutor" name="user_interest"><label for="tutor">Tutor</label><br>
<input type="checkbox" id="child_care" value="interest_child_care" name="user_interest"><label for="child_care">Child Care</label><br>
<input type="checkbox" id="html" value="interest_html" name="user_interest"><label for="html">HTML</label><br>
<input type="checkbox" id="css" value="interest_css" name="user_interest"><label for="css">CSS</label><br>
<input type="checkbox" id="java_script" value="interest_java_script" name="user_interest"><label for="java_script">Java Script</label><br>
</fieldset><br>

<fieldset>
<label for="message">Message:</label><br>
<textarea id="message" name="user_message" maxlength="250"></textarea>
</fieldset>
</form>
</body>
</html>
58 changes: 58 additions & 0 deletions resume.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,58 @@
<!DOCTYPE html>
<html lang="en">
<head>
<title>Hasina Sunzar's Resume></title>
</head>

<header>
<h1><p align="center">Hasina Sunzar</p></h1>

<center>
<img src="IMG-3619.jpg" alt="profile picture" height="200"/>
</center>
page
<h2><p align="center">Seeking a position with a company to utilize my education in web design/development.</p></h2>
</header>

<body>
<h3><u>Education</u></h3>
<p><strong>High School:</strong></p>
<p><a href="https://www.google.com/maps/place/Glasgow+High+School/@39.630089,-75.7416917,17z/data=!3m1!4b1!4m5!3m4!1s0x89c7a9b4cd7d3cff:0x61cffb4959b2ac2b!8m2!3d39.630089!4d-75.7416917">Glasgow High School</a></p>
<p>June 2018</p>
<p>Focus: Mathematics</p>

<h3><u>Work Experience</u></h3>
<p><strong>Present:</strong></p>
<p>Self-employed, Private Tutor</p>
<p>August 2016 - Current</p>
<ul>
<li>Communicating clearly to express comments and concerns on student progress</li>
<li>Creating practice/examples quickly and properly</li>
<li>Explaining processes and formulas effeciently</li>
</ul>
<p><strong>Past:</strong></p>
<p><a href="https://www.google.com/maps/place/Islamic+Academy+of+Delaware/@39.6759083,-75.6962184,17z/data=!3m1!4b1!4m5!3m4!1s0x89c700b98b05e87b:0x9a632721dcb6e33c!8m2!3d39.6759083!4d-75.6962184">Islamic Academy of Delaware,</a> After Care Teacher</p>
<p>October 2019 - March 2020</p>
<ul>
<li>Responsible for 25 kids at once</li>
<li>Organize files to never loose any important paperwork</li>
<li>Mediating problems/arguements and resolving issues objectively</li>
</ul>

<h3><u>Skills</u></h3>
<p>
<ul>
<li>HTML</li>
<li>CSS</li>
<li>Word Press</li>
<li>Java Script</li>
</ul>
</p>

<h3><u>LinkedIn</u></h3>
<p><a href="https://www.linkedin.com/in/hasina-sunzar-3b27971ba">Hasina Sunzar on LinkedIn</a></p>

</body>


</html>