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
3 changes: 3 additions & 0 deletions .gitpod.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
tasks:
- init: 'echo "TODO: Replace with init/build command"'
command: 'echo "TODO: Replace with command to start project"'
2 changes: 2 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
[![Gitpod ready-to-code](https://img.shields.io/badge/Gitpod-ready--to--code-blue?logo=gitpod)](https://gitpod.io/#https://github.com/code-differently/RR-JS-HTML-Resume)

# Work Assignment - HTML Resume

## Description
Expand Down
72 changes: 72 additions & 0 deletions contact.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,72 @@
<!DOCTYPE html>
<html>
<head>
<title> Contact Form</title>
</head>
<body>
<h1>Contact Form</h1>
<form action="contact.html" method="post">
<label for="fname">First name:</label><br>
<input type="text" id="fname" name="fname" maxlength="30"><br>

<label for="lname">Last name:</label><br>
<input type="text" id="lname" name="lname" maxlength="30">


<br>

<label for="Phone">Contact Phone number:</label><br>
<input type="text" id="Phone" name="Phone">

<br>
<br>

<label for="phone_number">Phone number type:</label><br>
<input type="radio" id="phone_number" name="phone_type" value="phone_number">
<label for="male">Landline</label><br>
<input type="radio" id="phone_number" name="phone_type" value="phone_number">
<label for="male">Mobile</label><br>


<br>


<label for="email">Contact email:</label><br>
<input type="email" id="mail" name="user_email" maxlength="50">

<br>
<br>

<label for="inquiry">How did you hear about us:</label><br>
<label for="source">Choose your source from the list:</label><br>
<input list="sources" name="source" id="source">

<datalist id="sources">
<option value="Search engine">
<option value="Social Media">
<option value="Recruiter">

</datalist>

<br>
<br>

<label for="interest">Interest for contacting:</label><br>
<input type="checkbox" id="skill1" name="skill1" value="html">
<label for="skill1"> HTML</label><br>
<input type="checkbox" id="skill2" name="skill2" value="CSS">
<label for="skill2"> CSS</label><br>
<input type="checkbox" id="skill3" name="skill3" value="Javascript">
<label for="skill3"> Javascript</label>

<br>
<br>

<label for="message">Message:</label><br>
<input type="text" id="message" name="message" maxlength="250" >
<br>
<br>
<input type="submit" value="Submit Form">
</form>
</body>
</html>
Binary file added images/landscape.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/moonlight.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
45 changes: 45 additions & 0 deletions resume.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,45 @@
<!DOCTYPE html>
<html>
<head>
<title>My Resume </title>
</head>
<body>
<h1>
Resume
</h1>
<h2>
Name: Nkenna Ugoanusi
</h2>
<h3>
Objective
</h3>
<p>A software engineer with a curious mind to produce creative and interactive webpages.</p>
<p>I am a quick learner that is able to use technology resources to provide solutions.</p>
<p>Some solutions are javascript or html/css based.</p>
<h3>Work Experience</h3>
<p>PHD technology Solutions: Information Analyst</p>
<p>BNY Mellon: Accountant</p>
<h3>Education</h3>
<p>Wilmington University</p>
<li>MBA Management Information Systems</li>
<li>BS Computer Network Security</li>
<!-- <img src="images/landscape.jpg" alt="Landscape"> -->
<h3>Skills</h3>

<li>CSS</li>
<li>HTML</li>
<li>JavaScript</li>

<h4 >Linkedin Profile Address: <a href="https://www.linkedin.com/in/nkenna-u-3660b917b/" target="_blank">Click Me</a></h4>

<h3>Profile Image</h3>
<img src="images/landscape.jpg" alt="Landscape">

<h3>Awards</h3>
<li>Outstanding Employee</li>
<li>Creative contribution</li>

</body>


</html>