Untitled

 avatar
unknown
plain_text
a year ago
2.6 kB
6
Indexable
<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Mock-up CV Writing Website: Products Page</title>
    <link rel="stylesheet" href="styles.css">
</head>
<body>
    <header>
        <h1>Products Page</h1>
    </header>
    <main>
        <section class="product" id="cv-review">
            <h2>CV Review</h2>
            <p class="price">$99.99</p>
            <p>The NoDegree team will give a professional customized review where we point out:</p>
            <ul>
                <li>ATS Issues (Applicant Tracking System)</li>
                <li>How to improve lines</li>
                <li>How to structure the resume</li>
                <li>Content and sections that should be removed</li>
                <li>General resume advice</li>
            </ul>
            <p><strong>BONUS:</strong></p>
            <ul>
                <li>ATS friendly sample resumes from various industries</li>
                <li>Career guide with 5 resume, 5 interview, and 5 networking tips</li>
            </ul>
            <button onclick="addToCart('CV Review', 99.99)">Add to Cart</button>
        </section>

        <section class="product" id="cv-templates">
            <h2>CV Templates</h2>
            <p class="price">$29.99</p>
            <p>Choose from a variety of professional CV templates designed to make your resume stand out. Our templates are:</p>
            <ul>
                <li>ATS-friendly</li>
                <li>Easy to customize</li>
                <li>Professionally designed</li>
            </ul>
            <button onclick="addToCart('CV Templates', 29.99)">Add to Cart</button>
        </section>

        <section class="product" id="interview-guide">
            <h2>Interview Guide</h2>
            <p class="price">$19.99</p>
            <p>Prepare for your interviews with our comprehensive guide, which includes:</p>
            <ul>
                <li>Common interview questions and answers</li>
                <li>Tips for different types of interviews (phone, video, in-person)</li>
                <li>Advice on how to dress, behave, and follow up after the interview</li>
            </ul>
            <button onclick="addToCart('Interview Guide', 19.99)">Add to Cart</button>
        </section>
    </main>
    <footer>
        <div id="cart">
            <h2>Shopping Cart</h2>
            <ul id="cart-items"></ul>
            <p id="total-price">Total: $0.00</p>
        </div>
    </footer>
    <script src="script.js"></script>
</body>
</html>

Editor is loading...
Leave a Comment