forked from code-differently/RR-JS-HTML-Resume
-
Notifications
You must be signed in to change notification settings - Fork 11
Lab #1 #4
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Open
MackeyH
wants to merge
5
commits into
Return-Ready-2021-JavaScript-Evening:main
Choose a base branch
from
MackeyH:main
base: main
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Lab #1 #4
Changes from all commits
Commits
Show all changes
5 commits
Select commit
Hold shift + click to select a range
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,60 @@ | ||
| <!DOCTYPE html> | ||
| <html> | ||
| <head> | ||
| <title>Contact Form</title> | ||
| </head> | ||
| <body> | ||
| <form> | ||
| <!-- Name Input --> | ||
| <label>First Name:</label> | ||
| <input required type="text" name="firstName" id="firstName" maxlength="30"> | ||
| <br> | ||
| <label>Last Name:</label> | ||
| <input required type="text" id="lastname" name="user_name" maxlength="30"> | ||
| <br><br> | ||
|
|
||
| <!-- Phone number button --> | ||
| <label>Phone Number:</label> | ||
| <input required type="text" id="phone_number" name="user_phone_number" pattern="[0-9]{10}" title="10 digit Phone Number" maxlength="10"><br><br> | ||
| <input type="radio" name="phone_number" value="Landline">Landline</label></input> | ||
| <input type="radio" name="phone_number" value="Mobile">Mobile</label></input><br> | ||
| <br><br> | ||
|
|
||
| <!-- Email Input --> | ||
| <label>Email:</label> | ||
| <input required type="text" id="email" name="user_email" maxlength="50"><br><br> | ||
| <br> | ||
|
|
||
| <!-- Dropdown --> | ||
| <label>How did you hear about us?</label> | ||
| <select required id="origin" Name="user_origin"> | ||
| <option value="">please select</option> | ||
| <option value="search_engine">Search Engine</option> | ||
| <option value="social_media">Social Media</option> | ||
| <option value="Recruiter">Recruiter</option> | ||
| </select> | ||
| <br><br> | ||
|
|
||
| <!-- Checkbox for skillset --> | ||
| <label>Which option best describes your skillset?</label><br><br> | ||
| <input type="checkbox" name="skillset" value="frontend_developer">Front-End Developer</input><br> | ||
| <input type="checkbox" name="skillset" value="php_developer">PHP Developer</input><br> | ||
| <input type="checkbox" name="skillset" value="python_developer">Python Developer</input><br> | ||
| <input type="checkbox" name="skillset" value="rails_developer">Rails Developer</input><br> | ||
| <input type="checkbox" name="skillset" value="web_designer">Web Designer</input><br> | ||
| <input type="checkbox" name="skillset" value="wordpress_developer">Wordpress Developer</input><br> | ||
| <input type="checkbox" name="skillset" value="android_developer">Android Developer</input><br> | ||
| <input type="checkbox" name="skillset" value="ios_developer">IOS Developer</input><br> | ||
| <input type="checkbox" name="skillset" value="mobile_designer">Mobile Designer</input><br> | ||
| <br><br> | ||
|
|
||
| <!-- Message text area --> | ||
| <label>Comments (250 words)</label><br> | ||
| <textarea id="comment" name="user_comments" cols="40" rows="4" maxlength="250"></textarea> | ||
| <br><br> | ||
|
|
||
| <!-- Submit Button --> | ||
| <button type="submit">Submit</button> | ||
| </form> | ||
| </body> | ||
| </html> | ||
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,86 @@ | ||
| <!DOCTYPE html> | ||
| <html> | ||
| <head> | ||
| <title>Hakim's Resume</title> | ||
| </head> | ||
| <body> | ||
| <div> | ||
| <header> | ||
| <h1>Name:Hakim Mackey</h1> | ||
| </header> | ||
|
|
||
| <br> | ||
| <section> | ||
| <h2>OBJECTIVE</h2> | ||
| <p>Seeking an opportunity in an entry level position in the IT industry where I can cultivate my training, communication and leadership abilities to enhance the success of your organization and become a viable asset.</p> | ||
| </section> | ||
|
|
||
| <br> | ||
| <section> | ||
| <h2>WORK EXPERIENCE</h2> | ||
| <ul> | ||
| <h3>Philadelphia Revenue Department</h3> | ||
| <ul> | ||
| <li><p>Tax Assessor - (2014 - Present)</p></li> | ||
| <li><p>Revenue Investigator - (2010 - 2014)</p></li> | ||
| </ul> | ||
| </ul> | ||
| </section> | ||
|
|
||
| <section> | ||
| <h2>EDUCATION</h2> | ||
| <ul> | ||
| <h3><strong>Community College of Philadelphia</strong></h3> | ||
| <ul> | ||
| <li><p>Associates in Liberal Arts (2011)</p></li> | ||
| </ul> | ||
| </ul> | ||
| </section> | ||
|
|
||
| <section> | ||
| <h2>SKILLS</h2> | ||
| <ul> | ||
| <h3>Intermediate/Advanced Computer Skills</h3> | ||
| <ul> | ||
| <li><p>Microsoft Office (Word, Excel, PowerPoint, Publisher)</p></li> | ||
| <li><p>Adobe Photoshop</p></li> | ||
| <li><p>Adobe Premier</p></li> | ||
| </ul> | ||
| </ul> | ||
| </section> | ||
|
|
||
| <section> | ||
| <h2>LINKS</h2> | ||
| <ul> | ||
| <a href="https://www.linkedin.com/in/mikail-mackey-8215034/">LinkedIn Profile</a> | ||
| </ul> | ||
| </section> | ||
|
|
||
| <div> | ||
| <section> | ||
| <figure> | ||
| <img src="FB profile pic.jpg" alt="Profile Pic" style="width:200px;height:200px;"> | ||
| </figure> | ||
| </section> | ||
| </div> | ||
|
|
||
| <section> | ||
| <h2>TRAINING/CERTIFICATIONS</h2> | ||
| <ul> | ||
| <ul> | ||
| <li><p>AWS Technical Essentials Training</p></li> | ||
| </ul> | ||
| </ul> | ||
| </section> | ||
|
|
||
| <footer> | ||
| <h2>Contact</h2> | ||
| <ul> | ||
| <ul> | ||
| <li><p><strong>Email:</strong> mhakimmackey1@gmail.com</p></li> | ||
| </ul> | ||
| </ul> | ||
| </footer> | ||
| </div> | ||
| </body> | ||
| </html> | ||
|
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Minor formatting issues (-1)97/100 Great work! Keep it up |
||
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Small formatting issues