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
1 change: 1 addition & 0 deletions page.1.txt/testing.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
testing pg 1
Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Only commit important files. This text file doesn't have any value

Binary file added pages.html/Me.JPG
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
92 changes: 92 additions & 0 deletions pages.html/pg1.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,92 @@
<!DOCTYPE html>
<html>

<head>
<title>MY RESUME</title>
<header>
<a href="pg2.html">Contact</a>
<h1>Denae Brown</h1>
<img src="C:\Users\denae\Portfolio-Lab\page.1.HTML\Me.JPG" alt="photo of me"/>
Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Image did not load correctly, you used an absolute file path. If you used a relative one like Me.JPG it would have loaded on mine as well as yours (-1)

<ul>
<li> Full Stack Front-End Javascript student looking for a career that has no ceilings. Coachable openminded individual who values being apart of a company that
allows me to freely express my creative ideas and inputs. Values being a part of a team.
</li>
</ul>
</header>
</head>
<body>
<hr>
<section>
<main>
<h2>Work Experience:</h2>
<h3>Bank of America</h3>
<p>December 2019 to Present</p>
<p>Role: Customer service Fraud Rep</p>
<p>Duties:</p>
<ul>
<li>Assit clients with general account questions</li>
<li>Review account transactions</li>
<li>Advise clients on how to protect themselves against fraud</li>
<li>File any applicable fraud claims</li>
</ul>
<h3>Patterson-Schwartz</h3>
<p>September 2017 to November 2019</p>
<p>Role: Accounting Clerk</p>
<p>Duties:</p>
<ul>
<li>Deposit checks from tenants</li>
<li>Create and send invoices to tenants</li>
</li> Payable</li>
<li>Receivable</li>
<li>Scan and upload invoices</li>
<li> Key vendor invoices</li>
<li>Pay vendor invoices</li>
<li> Create and analyze financial reports</li>
<li>Bank reconciliation</li>
<li>Create and send tenant late notices/delinquent charges</li>
</ul>
<h3>Nucar Connection</h3>
<p>May 2016 to September 2017</p>
<ul>
<li>Accounts Receivable</li>
<li>Accounts Payable</li>
<li>Cashier</li>
<li>Check in drivers who deliver parts</li>
<li>Deposits checks/ cash daily</li>
<li>Cut refund checks to customers</li>
<li>Accounts Receivable</li>
<li>Post purchase orders</li>
<li>Communicates with customers daily</li>
</ul>
<hr>
<h2>Education:</h2>
<p><strong>Smyrna Highschool</strong><br><br>
May 2014<br>
Diploma with specailized courses in marketing management</p>
<hr>
<h2>Skills</h2>
<ul>
<li>In Microsoft Word, Excel, Publisher, Powerpoint
-6 years</li>
<li>Interpersonal Skills</li>
<li>Customer Service</li>
</ul>
<hr>
<h2>Awards</h2>
<ul>
<li>Academic Excellence
2014
Smyrna High School Academic Award for having a 3.0 or above GPA</li>
<li>Presidents Education Award
2014
Presidential recognition of outstanding academic excellence</li>
</ul>



</main>
</section>
</body>
</html>


41 changes: 41 additions & 0 deletions pages.html/pg2.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,41 @@
<!DOCTYPE html>
<html>
<head>
<title>Contact Me</title>
<a href="pg1.html">Resume</a>
<h1>Contact Me</h1>
<hr>
<label for="firstname">First Name</label><br>
<input required type="text" id="firstname" name="firstName"> <br><br>
Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Missing 30 character limit (-2)


<label for="lastname">Last Name </label><br>
<input required type="text" id="lastname" name="lastName"> <br><br>
Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Missing 30 character limit (-2)


<label for="phonenumber">Phone Number</label><br>
<input type="text" id="phonenumber" name="phoneNumber"><br>

<label for="phonetype">Mobile</label>
<input type="radio" id="phonetype" name="phoneType">
<label for="phonetype">Landline</label>
<input type="radio" id="phonetype" name="phoneType"> <br><br>

<label for="email">Email</label><br>
<input required type="text" id="email" name="email" maxlength="50"><br><br>


<label for="interest">Skills of Interest</label>
<select>
Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Should be checkboxes instead of dropdown (-3)

<option value="miscrosoft">Microsoft</option>
<option value="interpersonal">Interpersonal</option>
<option value="customerservice">Customer Service</option>
</select>
<br><br>


<label for="comments">Comments</label><br>
<textarea name="comments" cols="50" row="10" maxlength="300"></textarea> <br>
Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Should be a max length of 250, not 300 (-1)


<button>Submit</button>

</body>
</html>
Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Missing How did you hear about us dropdown (-5)

80/100
Great work! My only recommendation is to make sure you do everything the lab asks for. You missed some points on silly mistakes.