https://jacksallay.com/

URL inviato:
https://jacksallay.com/
Report terminato:

I link in uscita identificati dalla pagina

LinkTesto
https://linkedin.com/in/Jacksalesmanagerlinkedin.com/in/Jacksalesmanager

Variabili JavaScript · 3 trovate

Le variabili JavaScript globali caricate sull'oggetto finestra di una pagina sono variabili dichiarate all'esterno delle funzioni e accessibili da qualsiasi punto del codice nell'ambito corrente

NomeTipo
onbeforetoggleobject
documentPictureInPictureobject
onscrollendobject

Messaggi di log della console · 0 trovati

Messaggi registrati nella console Web

HTML

Il corpo HTML non elaborato della pagina

<!DOCTYPE html><html lang="en"><head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Resume - Jack Sallay.</title>
    <style>
        body {
            font-family: 'Helvetica', Arial, sans-serif;
            background-color: #f4f4f4;
            margin: 0;
            padding: 0;
            color: #333;
        }
        .container {
            display: flex;
            width: 100%;
            margin: 0 auto;
        }
        /* Sidebar Styling */
        .sidebar {
            width: 250px;
            background-color: #2c3e50;
            color: white;
            padding: 20px;
            height: 100vh;
            position: fixed;
        }
        .sidebar h1 {
            font-size: 28px;
            margin-bottom: 10px;
        }
        .sidebar p, .sidebar a {
            font-size: 14px;
            line-height: 1.6;
            color: #ecf0f1;
        }
        .sidebar a {
            text-decoration: none;
            color: #1abc9c;
        }
        .sidebar a:hover {
            text-decoration: underline;
        }
        .sidebar hr {
            border: 0.5px solid #7f8c8d;
            margin: 15px 0;
        }

        /* Main Content Styling */
        .main-content {
            margin-left: 270px;
            padding: 40px;
            background-color: #ffffff;
            flex: 1;
            box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
        }
        .main-content h2 {
            font-size: 24px;
            color: #2980b9;
            margin-bottom: 20px;
        }
        .main-content h3 {
            font-size: 18px;
            margin-bottom: 10px;
            color: #34495e;
        }
        .main-content p {
            font-size: 16px;
            line-height: 1.8;
            color: #555;
        }
        .main-content ul {
            list-style-type: square;
            margin: 0;
            padding-left: 20px;
        }
        .main-content ul li {
            margin-bottom: 10px;
        }
        .main-content hr {
            border: none;
            border-top: 1px solid #ccc;
            margin: 30px 0;
        }

        /* Footer */
        .footer {
            text-align: center;
            font-size: 12px;
            color: #7f8c8d;
            padding: 20px;
            margin-top: 30px;
        }
    </style>
</head>
<body>

<div class="container">

    <!-- Sidebar -->
    <div class="sidebar">
        <h1>Jack Sallay</h1>
        <p><strong>Sales Manager</strong></p>
        <hr>
        <p><strong>Contact</strong></p>
        <p>Phone: (972) 956-4767</p>
        <p>Email: <a href="mailto:[email protected]">[email protected]</a></p>
        <p>LinkedIn: <a href="https://linkedin.com/in/Jacksalesmanager">linkedin.com/in/Jacksalesmanager</a></p>
        
        <hr>
        <p><strong>Skills</strong></p>
        <ul>
            <li>Sales Strategy Development</li>
            <li>Team Leadership</li>
            <li>Account Management</li>
            <li>Negotiation &amp; Closing</li>
            <li>Customer Relationship Management (CRM)</li>
            <li>Market Analysis</li>
        </ul>
        <hr>
        <p><strong>Languages</strong></p>
        <ul>
            <li>English (Native)</li>
            <li>Spanish (Fluent)</li>
        </ul>
    </div>

    <!-- Main Content -->
    <div class="main-content">
        <h2>Professional Summary</h2>
        <p>Dynamic Sales Manager with over 10 years of experience driving revenue growth and leading sales teams in competitive markets. Proven ability to develop sales strategies that exceed targets, build long-lasting client relationships, and increase market share. Strong leader with expertise in coaching and mentoring sales teams to improve performance and achieve operational excellence.</p>

        <hr>

        <h2>Professional Experience</h2>

        <h3>Sales Manager – GlobalTech Solutions</h3>
        <p><em>Phoenix, PA | January 2016 – Present</em></p>
        <ul>
            <li>Develop and execute strategic sales plans that increased revenue by 35% over three years in a highly competitive market.</li>
            <li>Lead a team of 25 sales representatives, providing coaching, mentoring, and performance evaluations to drive productivity.</li>
            <li>Implemented a customer relationship management (CRM) system that improved client retention rates by 20%.</li>
            <li>Consistently exceeded sales targets by 15% year-over-year through market penetration and expansion initiatives.</li>
        </ul>

        <h3>Senior Sales Executive – PrimeRetail Inc.</h3>
        <p><em>Los Angeles, CA | June 2011 – December 2015</em></p>
        <ul>
            <li>Managed key accounts for the company, achieving a 25% increase in sales for top-tier clients over a four-year period.</li>
            <li>Collaborated with marketing and product teams to create targeted sales campaigns that resulted in a 30% rise in customer acquisitions.</li>
            <li>Developed relationships with prospective clients, closing major deals worth over $5M in total revenue.</li>
        </ul>

        <h3>Sales Representative – FastSolutions Corp.</h3>
        <p><em>Dallas, TX | August 2008 – May 2011</em></p>
        <ul>
            <li>Exceeded sales quotas by 20% through innovative lead-generation techniques and effective communication with clients.</li>
            <li>Built a solid client base, which increased company revenue by 18% within two years.</li>
            <li>Participated in sales training programs that enhanced product knowledge and sales skills, leading to quicker deal closures.</li>
        </ul>

        <hr>

        <h2>Education</h2>
        <p><strong>Master of Business Administration (MBA)</strong> – Sales Leadership University, CA | June 2010</p>
        <p><strong>Bachelor of Business Administration (BBA)</strong> – Marketing and Sales Management, State University | May 2007</p>

        <hr>

        <h2>Certifications</h2>
        <ul>
            <li>Certified Sales Leadership Professional (CSLP), 2018</li>
            <li>Sales Management Certification, 2016</li>
        </ul>
    </div>

</div>

<!-- Footer -->
<div class="footer">
    <p>References available upon request.</p>
</div>



</body></html>