140 lines
4.0 KiB
HTML
140 lines
4.0 KiB
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<title>Interview Invitation</title>
|
|
<style>
|
|
/* Basic reset and typography */
|
|
body {
|
|
font-family: Arial, sans-serif;
|
|
line-height: 1.6;
|
|
color: #333333;
|
|
margin: 0;
|
|
padding: 0;
|
|
background-color: #f4f4f4;
|
|
}
|
|
/* Container for the main content */
|
|
.container {
|
|
max-width: 600px;
|
|
margin: 20px auto;
|
|
background-color: #ffffff;
|
|
padding: 30px;
|
|
border-radius: 8px;
|
|
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
|
|
}
|
|
/* Header styling */
|
|
.header {
|
|
text-align: center;
|
|
border-bottom: 2px solid #007bff;
|
|
padding-bottom: 10px;
|
|
margin-bottom: 20px;
|
|
}
|
|
.header h1 {
|
|
color: #007bff;
|
|
font-size: 24px;
|
|
margin: 0;
|
|
}
|
|
/* Section headings */
|
|
.section-header {
|
|
color: #007bff;
|
|
font-size: 18px;
|
|
margin-top: 25px;
|
|
margin-bottom: 10px;
|
|
border-left: 4px solid #007bff;
|
|
padding-left: 10px;
|
|
}
|
|
/* Key detail rows */
|
|
.detail-row {
|
|
margin-bottom: 10px;
|
|
}
|
|
.detail-row strong {
|
|
display: inline-block;
|
|
width: 120px;
|
|
color: #555555;
|
|
}
|
|
/* Button style for the Join URL */
|
|
.button {
|
|
display: block;
|
|
width: 80%;
|
|
margin: 25px auto;
|
|
padding: 12px 0;
|
|
background-color: #28a745; /* Success/Go color */
|
|
color: #ffffff;
|
|
text-align: center;
|
|
text-decoration: none;
|
|
border-radius: 5px;
|
|
font-weight: bold;
|
|
font-size: 16px;
|
|
}
|
|
/* Footer/closing section */
|
|
.footer {
|
|
margin-top: 30px;
|
|
padding-top: 15px;
|
|
border-top: 1px dashed #cccccc;
|
|
text-align: center;
|
|
font-size: 14px;
|
|
color: #777777;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<div class="container">
|
|
<div class="header">
|
|
<h1>Interview Confirmation</h1>
|
|
</div>
|
|
|
|
<p>Dear <strong>John Doe</strong>,</p>
|
|
<p>Thank you for your interest in the position. We are pleased to invite you to a virtual interview. Please find the details below.</p>
|
|
|
|
<h2 class="section-header">Interview Details</h2>
|
|
<div class="detail-row">
|
|
<strong>Topic:</strong> Interview for Senior Software Developer
|
|
</div>
|
|
<div class="detail-row">
|
|
<strong>Date & Time:</strong> <strong>November 15, 2025 at 2:00 PM</strong>
|
|
</div>
|
|
<div class="detail-row">
|
|
<strong>Duration:</strong> 60 minutes
|
|
</div>
|
|
|
|
|
|
<a href="https://zoom.us/j/123456789" class="button" target="_blank">
|
|
Join Interview Now
|
|
</a>
|
|
<p style="text-align: center; font-size: 14px; color: #777;">Please click the button above to join the meeting at the scheduled time.</p>
|
|
|
|
|
|
<h2 class="section-header">Your Information</h2>
|
|
<div class="detail-row">
|
|
<strong>Name:</strong> John Doe
|
|
</div>
|
|
<div class="detail-row">
|
|
<strong>Email:</strong> john.doe@example.com
|
|
</div>
|
|
|
|
<div class="detail-row">
|
|
<strong>Phone:</strong> +966 50 123 4567
|
|
</div>
|
|
|
|
|
|
|
|
<h2 class="section-header">Position Details</h2>
|
|
<div class="detail-row">
|
|
<strong>Position:</strong> Senior Software Developer
|
|
</div>
|
|
|
|
<div class="detail-row">
|
|
<strong>Department:</strong> Information Technology
|
|
</div>
|
|
|
|
|
|
|
|
<div class="footer">
|
|
<p>We look forward to speaking with you.</p>
|
|
<p>If you have any questions, please reply to this email.</p>
|
|
<p>Best regards,<br>The Norah University Team</p>
|
|
</div>
|
|
</div>
|
|
</body>
|
|
</html>
|