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
79 changes: 79 additions & 0 deletions Contact-Form.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,79 @@
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="style.css"/>

<title>Contact Form</title>

</head>

<body>
<form action="Contact-Form.html" method="post">
<h1 class="title">Contact Form</h1>
<fieldset>
<legend>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><br><br>

<fieldset>
<legend>Contact</legend><br>

<label for="marketing">How Did You Hear About Us?</label>
<select name="marketing" id="marketing" required>
<option value="search-engine">Search Engine</option>
<option value="social media">Social Media</option>
<option value="recruiter">Recruiter</option>
</select>

</fieldset><br><br>

<fieldset>
<legend>Interest for Contacting</legend><br>

<input type="checkbox" name="interest1" id="skills1" required>
<label for="interest1">Marketing</label><br><br>

<input type="checkbox" name="interest2" id="skills2" required>
<label for="interest2">Event Planning</label><br><br>

<input type="checkbox" name="interest3" id="skills3" required>
<label for="interest3">Web Development</label><br><br>

<input type="checkbox" name="interest4" id="skills4" required>
<label for="interest4">JavaScript</label><br><br>

<input type="checkbox" name="interest5" id="skills5" required>
<label for="interest5">Assistive Technology</label><br><br><br>

<label for="message">Additional Information</label><br><br>
<textarea name="message" id="message" maxlength="250" placeholder="Type message here.."></textarea>

</fieldset><br><br>

<button type="submit">Submit</button>
</form>
</body>
</html>




Binary file added images/IrmaO.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
74 changes: 74 additions & 0 deletions index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,74 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>RESUME</title>
<link rel="stylesheet" href="style.css"/>
</head>
<body>
<header>
<img class="fit-picture" src="images/IrmaO.jpg" width="220" height="300" alt=" Photo of Irma">
<h1 class="title">Irma Ortiz</h1>
<section id="Objective">
<h2 class="title">Objective</h2>
<div class="description">
<p class="description">Partner with an innovative team of developers who specialize in user-focused
Augmentative and Alternative Communication products to help people with communication difficulties
through technology and implementation support. Develop software technology to assist individuals
with special needs live independently in a home and work environment.</p>
</div>
</section>
<section id="Work Experience">
<h2 class="title">Work Experience</h2>
<div class="description">
<span class="field"><strong>Website Administrator, Homeowners Association</strong></span> <br> <span class="date">October 2018 - Present</span></br>
<p class="description">
<ul>Partnered with property manager and web host to develop a multi-level website design
strategy for the association’s first website, providing over 750 residents with a medium to access HOA
policy, procedures, guidelines, financials, social event activities, architectural request forms and
pay their assessments online.</ul>
</p>
<span class="field"><strong> VP, Philanthropic Specialist, Wells Fargo</strong></span> <br> <span class="date">January 2011 - January 2015</span></br>
<p class="description">
<ul>Advised Wells Fargo Philanthropic Services clients with investable assets of $5mm and above in
areas of planned giving, grant making, charitable investment, gift acceptance laws and fundraising,
and family foundation management.</ul>
<ul>Managed a book of charitable trusts and private foundations clients with over $500mm in investable
assets. Identified and addressed wealth management issues with clients, opened new charitable accounts,
analyzed, and interpreted complex legal trust documents, administered grant making and scholarship trusts.</ul>
</p>
<span class="field"><strong>AVP, Marketing Consultant, Wachovial Wealth Management</strong></span> <br> <span class="date">June 2008 - January 2010</span></br>
<p class="description">
<ul>Collaborated with senior management and business unit leaders on the development of corporate wide marketing initiatives
which included target market research and statistics, brand management, budgeting, business development strategies,
and corporate sponsorships to develop, test, produce and analyze marketing materials; such as promotional collateral,
sales presentations, whitepapers, online advertising and content, webinar presentations, podcasts, and videos
in partnership with the creative teams.</ul>
</p>
</div>
</section>

<section id="Education">
<h2 class="title">Education</h2>
<div class="description">
<span class="field"><strong>Bachelor of Science, Chestnut Hill College,</strong></span>
<span class="field">Marketing and Business Administration</span><br>
<span class="field"><strong>CCNA Certificate of Completion, Delaware Technical Community College,</strong></span>
<span class="field">CCNA Routing and Switching, 360 hours of instruction – 36.0 CEUs</span>
</div>
</section>

<section id="Skills">
<h2 class="title">Skills</h2>
<div class="description">
<ul>
<li>Marketing</li>
<li>Project Management</li>
<li>Technical</li>
</ul>
</div>

<a href="https://linkedin.com">linkedin.com/in/irma-o-3477331b</a>
</section>
</body>
</html>
Empty file added style.css
Empty file.