my personal site
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

Create resume.html

+91
+91
resume.html
··· 1 + <!DOCTYPE html> 2 + <html lang="en"> 3 + <head> 4 + <meta charset="UTF-8" /> 5 + <meta name="viewport" content="width=device-width, initial-scale=1.0" /> 6 + <title>Jack Hannon | Resume</title> 7 + <script> 8 + if (localStorage.getItem('theme') === 'dark' || 9 + (!localStorage.getItem('theme') && window.matchMedia('(prefers-color-scheme: dark)').matches)) { 10 + document.documentElement.classList.add('dark-theme'); 11 + } 12 + </script> 13 + <link rel="stylesheet" href="style.css" /> 14 + </head> 15 + <body> 16 + <header> 17 + <nav class="container"> 18 + <a href="index.html" class="brand">Jack Hannon</a> 19 + <ul class="menu"> 20 + <li><a href="index.html">About</a></li> 21 + <li><a href="projects.html">Projects</a></li> 22 + <li><a href="resume.html" class="active">Resume</a></li> 23 + <li><a href="contact.html">Contact</a></li> 24 + </ul> 25 + <button id="theme-toggle">Dark Mode</button> 26 + </nav> 27 + </header> 28 + <main class="container"> 29 + <h1>Resume</h1> 30 + <p> 31 + <!-- Download link for PDF resume --> 32 + <a href="Jack_Hannon_Marketing_Resume.pdf" class="btn" download>Download PDF Version</a> 33 + </p> 34 + 35 + <h2>Education</h2> 36 + <ul> 37 + <li><strong>Virginia Tech, Blacksburg, VA</strong> – Bachelor of Arts in Advertising (Minor in Organizational Leadership), May 2025</li> 38 + </ul> 39 + 40 + <h2>Skills</h2> 41 + <ul> 42 + <li><strong>Communication &amp; Customer Service:</strong> Excellent written and verbal communication; adept at crafting engaging correspondence with a customer-first mindset.</li> 43 + <li><strong>Technical Proficiency:</strong> Proficient in Google Workspace, Adobe Creative Suite, and Meta Business Suite; familiar with Mailchimp, HubSpot, WordPress, and Google Analytics.</li> 44 + <li><strong>Community Engagement:</strong> Experience in community outreach, event coordination, and audience engagement strategies.</li> 45 + </ul> 46 + 47 + <h2>Experience</h2> 48 + <h3>Campus Ambassador, Yik Yak <small>(Feb 2022 – Feb 2024)</small></h3> 49 + <ul> 50 + <li>Managed Yik Yak’s online presence at Virginia Tech.</li> 51 + <li>Launched campus-specific marketing campaigns.</li> 52 + <li>Designed content and facilitated on-campus promotional events.</li> 53 + <li>Collected and analyzed user feedback to optimize campaigns.</li> 54 + <li>Collaborated with Yik Yak’s team on strategies for audience growth.</li> 55 + </ul> 56 + 57 + <h3>Recreation Assistant, Christiansburg Parks &amp; Recreation <small>(Oct 2023 – Present)</small></h3> 58 + <ul> 59 + <li>Provided customer service to park patrons and local sports leagues.</li> 60 + <li>Enforced department policies and maintained public safety.</li> 61 + <li>Assisted with event coordination and facility management.</li> 62 + <li>Addressed inquiries and resolved issues to enhance visitor satisfaction.</li> 63 + </ul> 64 + 65 + <h3>Student Employee, VT Dining Services <small>(Mar 2023 – May 2023)</small></h3> 66 + <ul> 67 + <li>Interacted with customers to ensure a positive dining experience.</li> 68 + <li>Resolved customer disputes and issues promptly.</li> 69 + </ul> 70 + 71 + <h2>Projects</h2> 72 + <h3>Project Lead – The Allentown Village Initiative <small>(Aug 2019 – Jul 2021)</small></h3> 73 + <ul> 74 + <li>Led the restoration of a historic cemetery in Allentown, NJ.</li> 75 + <li>Coordinated volunteers and managed all project logistics.</li> 76 + </ul> 77 + 78 + <h3>Independent Developer – VT Gym Tracker <small>(Aug 2024 – Feb 2025)</small></h3> 79 + <ul> 80 + <li>Developed and launched a mobile app for Virginia Tech gyms (iOS).</li> 81 + <li>Created a marketing campaign to coincide with the App Store launch.</li> 82 + </ul> 83 + 84 + <h2>Awards</h2> 85 + <ul> 86 + <li>Eagle Scout (Boy Scouts of America), July 2021</li> 87 + </ul> 88 + </main> 89 + <script src="script.js"></script> 90 + </body> 91 + </html>