<!DOCTYPE html>

<html>

<head>

  <title>Careers at BradSmart Phils. Co.</title>

  <style>

    /* Style the section container */

    .career-section {

      max-width: 800px;

      margin: 0 auto;

      padding: 20px;

    }

    

    /* Style the job listing */

    .job-listing {

      margin-bottom: 20px;

    }

    

    .job-title {

      font-weight: bold;

      font-size: 18px;

    }

    

    .job-description {

      margin-bottom: 10px;

    }

    

    /* Style the resume submission form */

    .resume-form {

      max-width: 500px;

      margin-top: 20px;

    }

    

    .form-field {

      margin-bottom: 10px;

    }

    

    .form-button {

      background-color: #4CAF50;

      color: white;

      padding: 10px 20px;

      border: none;

      cursor: pointer;

    }

    

    .form-button:hover {

      background-color: #45a049;

    }

  </style>

</head>

<body>

  <div class="career-section">

    <h2>Careers at BradSmart Phils. Co.</h2>

    

    <div class="job-listing">

      <h3 class="job-title">Job Title 1</h3>

      <p class="job-description">Job description and requirements for Job Title 1.</p>

      <!-- Add more job listings as needed -->

    </div>

    

    <div class="job-listing">

      <h3 class="job-title">Job Title 2</h3>

      <p class="job-description">Job description and requirements for Job Title 2.</p>

      <!-- Add more job listings as needed -->

    </div>

    

    <h3>Internships</h3>

    <p>We offer internship opportunities for students seeking hands-on experience in the electrical industry. Contact us for more information on available internships.</p>

    

    <h3>Submit Your Resume</h3>

    <p>If you are interested in joining our team, please submit your resume using the form below:</p>

    <form action="submit_resume.php" method="POST" class="resume-form">

      <div class="form-field">

        <label for="name">Full Name:</label>

        <input type="text" id="name" name="name" required>

      </div>

      <div class="form-field">

        <label for="email">Email:</label>

        <input type="email" id="email" name="email" required>

      </div>

      <div class="form-field">

        <label for="phone">Phone Number:</label>

        <input type="tel" id="phone" name="phone" required>

      </div>

      <div class="form-field">

        <label for="resume">Upload Resume:</label>

        <input type="file" id="resume" name="resume" required>

      </div>

      <button type="submit" class="form-button">Submit</button>

    </form>

  </div>

</body>

</html>


In this code, the form is set to submit the resume data to submit_resume.php using the POST method. You'll need to create the submit_resume.php file on your server to handle the resume submission. Inside the PHP file, you can access the submitted resume using the appropriatefunctions and perform the necessary actions, such as saving the resume file, sending confirmation emails, or storing the resume information in a database.

Feel free to customize the job listings, internship information, and form fields according to your specific job opportunities and requirements. You can also enhance the styling to match your website's design.

Please note that when handling resume submissions, it's important to ensure the security and privacy of the submitted data. Implement appropriate security measures and comply with data protection regulations to safeguard the personal information provided by the candidates.