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
82 changes: 82 additions & 0 deletions contact.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,82 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
</head>
<body>

<form action="contact.html" method="post">

<h1>Contact Form</h1>

<fieldset>

<legend><span>1.</span> Your Basic Info</legend><br>

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

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

<label for="tele">Contact Phone Number:</label>
<input type="text" id="telephone" name="tele" placeholder="###-###-####" maxlength="10" pattern="[0-9]{3}-[0-9]{3}-[0-9]{4}" required><br><br>

<span>Phone Number Type:</span>
<input type="radio" id="land_line" name="num_type" value="Landline" required>
<label for="landline">Landline</label>

<input type="radio" id="cellphone" name="num_type" value="mobile">
<label for="mobile">Mobile</label><br><br>

<label for="email">Contact Email:</label>
<input type="text" id="email_add" name="email" maxlength="50" placeholder="your@email.com" required><br><br>

</fieldset>

<fieldset>

<legend><span>2.</span> Connecting</legend><br>

<label for="howDidYouHear">How Did You Hear About Us?</label>
<select name="howDidYouHear" id="howdid" required>
<option value="searchEngine">Search Engine</option>
<option value="socialMedia">Social Media</option>
<option value="recruiter">Recruiter</option>
</select><br><br>

<label for="interest">Interest for Contacting:</label><br><br>

<input type="checkbox" id="contact1" name="interest1" value="photog">
<label for="interest1">Photography</label><br><br>

<input type="checkbox" id="contact2" name="interest2" value="audio">
<label for="interest2">Audiowork</label><br><br>

<input type="checkbox" id="contact3" name="interest3" value="dev">
<label for="interest3">Developer Skills</label><br><br>

<input type="checkbox" id="contact4" name="interest4" value="other>
<label for="other">Other</label><br><br>

<span>Please Provide Details:</span><br><br>
<textarea name="details" id="details" maxlength="250"></textarea>

</fieldset>

<input type="submit" value="submit">
<input type="reset" value="reset">








</form>

</body>
</html>
Binary file added images/rsz_1prof.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added images/rsz_favi.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
87 changes: 87 additions & 0 deletions resume.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,87 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<link rel="shortcut icon" href="images/rsz_favi.png" type="image/png">
<meta name="viewport" content="width=device-width, initial-scale=1.0"/>
<title>Gregory Lowe's Resume</title>

</head>

<header>
<h1>Gregory Lowe</h1>
<h2>Objective</h2>
<p>A results oriented programmer seeking to build applications and websites that will demonstrate clients' and employers' objectives in a universal manner. An excellent communicator and positive team player. Currently honing skills in HTML/CSS/JavaScript/WordPress/Node.js.
</p>
</header>

<body>

<section>
<h2>Work Experience<h2>

<h3>Freelance Audio Engineer - October, 2019 - Present</h3>
<span>Self Employed - Wilmington, DE, 19808</span>

<ul>
<li>Mix, record, and edit sounds for podcasts and post production projects</li>
<li>Skilled boom operator to work with on set if required during production</li>
<li>Able to utilize background, creativity, and connections to generate an overall better client experience, network, and rapport</li>
</ul>

<h3>Mekelburg's Clinton Hill - October, 2019 - March, 2020</h3>
<span>293 Grand Ave, Brooklyn, NY 11238</span></br>
<span>Bartender</span>

<ul>

<li>Responsible for crafting house batch craft cocktails and house syrups</li>
<li>Organized bar inventory and storage procedures to keep stock within optimal levels and meet expected customer demands</li>
<li>Responsible for training all new hires on opening and closing shifts</li>

</ul>
</section>

<section>
<h2>Education</h2>

<span>Alexis i. duPont High School - Class of 2011</span>

</section>

<section>
<h2>Skills</h2>

<ul>
<li>Professional level photography capabilities</li>
<li>Foley engineer abilities</li>
<li>Ability to solve problems independently under pressure</li>
</ul>
</section>

<div>
<h3><a href="https://www.linkedin.com/in/gglowe/">LinkedIn</a></h3>
<img src="images/rsz_1prof.jpg" alt="profile picture" title="headshot">
</div>




















</body>
</html>