Inboxes List

Create an inbox to save and track emails. It's free!

+New inbox

<!DOCTYPE html>
<html lang="en">
 <head>
  <meta charset="utf-8"/>
  <meta content="width=device-width, initial-scale=1.0" name="viewport"/>
  <title>
   Security Alert - Virus Detected
  </title>
  <style>
   /* Reset and Base Styles */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: Arial, sans-serif;
            background-color: #f0f2f5;
            color: #333333;
            line-height: 1.5;
            padding: 20px;
            -webkit-text-size-adjust: 100%;
        }
        
        /* Main Container */
        .email-container {
            max-width: 600px;
            margin: 0 auto;
            background-color: #ffffff;
            border-radius: 12px;
            box-shadow: 0 2px 12px rgba(0,0,0,0.08);
            overflow: hidden;
        }
        
        /* Content Area */
        .content {
            padding: 40px;
        }
        
        /* Header Section */
        .header-section {
            display: flex;
            align-items: flex-start;
            gap: 15px;
            margin-bottom: 30px;
        }
        
        .alert-icon {
            width: 50px;
            height: 50px;
            background-color: #ff4444;
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 24px;
            color: white;
            flex-shrink: 0;
        }
        
        .header-text {
            flex: 1;
        }
        
        .alert-tag {
            color: #ff4444;
            font-size: 14px;
            font-weight: bold;
            letter-spacing: 0.5px;
            text-transform: uppercase;
            margin-bottom: 5px;
        }
        
        .main-title {
            color: #333333;
            font-size: 20px;
            font-weight: bold;
            line-height: 1.3;
        }
        
        /* Threat Info Card */
        .threat-card {
            background-color: #fff5f5;
            border-radius: 10px;
            border-left: 5px solid #ff4444;
            padding: 25px;
            margin-bottom: 30px;
        }
        
        .threat-stats {
            display: flex;
            align-items: center;
            justify-content: center;
            flex-wrap: wrap;
            gap: 30px;
            margin-bottom: 20px;
        }
        
        .threat-count {
            text-align: center;
        }
        
        .count-number {
            font-size: 48px;
            font-weight: bold;
            color: #ff4444;
            line-height: 1;
        }
        
        .count-label {
            font-size: 14px;
            font-weight: bold;
            color: #990000;
            margin-top: 5px;
        }
        
        .divider {
            width: 1px;
            height: 60px;
            background-color: #ffcccc;
        }
        
        .protection-status {
            text-align: center;
        }
        
        .status-title {
            font-size: 18px;
            font-weight: bold;
            color: #333333;
            margin-bottom: 5px;
        }
        
        .status-value {
            font-size: 16px;
            font-weight: bold;
            color: #ff4444;
        }
        
        .scan-info {
            text-align: center;
            color: #666666;
            font-size: 15px;
        }
        
        /* Warning Message */
        .warning-box {
            background-color: #fff8e1;
            border-radius: 8px;
            border: 1px solid #ffd54f;
            padding: 20px;
            margin-bottom: 25px;
        }
        
        .warning-title {
            color: #5d4037;
            font-size: 16px;
            font-weight: bold;
            line-height: 1.5;
            margin-bottom: 15px;
            display: flex;
            align-items: flex-start;
            gap: 10px;
        }
        
        .warning-list {
            color: #5d4037;
            font-size: 14px;
            line-height: 1.6;
            padding-left: 15px;
        }
        
        .warning-list li {
            margin-bottom: 8px;
        }
        
        /* Urgent Action */
        .urgent-box {
            background-color: #2196f3;
            border-radius: 10px;
            padding: 20px;
            margin-bottom: 30px;
            text-align: center;
        }
        
        .urgent-title {
            color: white;
            font-size: 16px;
            font-weight: bold;
            margin-bottom: 10px;
        }
        
        .urgent-text {
            color: rgba(255, 255, 255, 0.9);
            font-size: 14px;
        }
        
        /* Action Button */
        .action-button {
            text-align: center;
            margin-bottom: 30px;
        }
        
        .btn {
            background-color: #4caf50;
            color: white;
            text-decoration: none;
            padding: 18px 40px;
            font-size: 18px;
            font-weight: bold;
            border-radius: 8px;
            display: inline-block;
            box-shadow: 0 4px 12px rgba(76, 175, 80, 0.3);
            border: none;
            cursor: pointer;
        }
        
        /* Footer */
        .footer {
            border-top: 1px solid #eeeeee;
            padding-top: 25px;
            text-align: center;
        }
        
        .footer-text {
            color: #666666;
            font-size: 13px;
            line-height: 1.5;
            margin-bottom: 10px;
        }
        
        .footer-note {
            color: #999999;
            font-size: 12px;
            line-height: 1.5;
        }
        
        /* Bottom Footer */
        .bottom-footer {
            max-width: 600px;
            margin: 30px auto 0;
            text-align: center;
        }
        
        .footer-id {
            color: #8c8c8c;
            font-size: 11px;
        }
        
        /* Responsive Styles */
        @media (max-width: 620px) {
            body {
                padding: 10px;
            }
            
            .content {
                padding: 25px;
            }
            
            .header-section {
                flex-direction: column;
                align-items: center;
                text-align: center;
                gap: 15px;
            }
            
            .header-text {
                width: 100%;
            }
            
            .threat-stats {
                flex-direction: column;
                gap: 20px;
            }
            
            .divider {
                width: 80px;
                height: 1px;
                margin: 10px 0;
            }
            
            .count-number {
                font-size: 36px;
            }
            
            .main-title {
                font-size: 18px;
            }
            
            .alert-tag {
                font-size: 12px;
            }
            
            .btn {
                padding: 16px 30px;
                font-size: 16px;
                width: 100%;
                max-width: 300px;
            }
            
            .warning-title {
                font-size: 15px;
            }
            
            .urgent-title {
                font-size: 15px;
            }
            
            .scan-info {
                font-size: 14px;
            }
        }
        
        @media (max-width: 480px) {
            .content {
                padding: 20px;
            }
            
            .count-number {
                font-size: 32px;
            }
            
            .status-title {
                font-size: 16px;
            }
            
            .status-value {
                font-size: 15px;
            }
            
            .btn {
                padding: 14px 25px;
                font-size: 15px;
            }
        }
        
        /* Tracking Pixel */
        .tracking-pixel {
            display: none;
            width: 1px;
            height: 1px;
        }
  </style>
 </head>
 <body>
  <a style="text-decoration:none">
   <!-- Tracking Pixel (hidden) -->
   <!-- Main Email Container -->
   <div class="email-container">
    <div class="content">
     <!-- Header Section -->
     <div class="header-section">
      <div class="alert-icon">
       ⚠️
      </div>
      <div class="header-text">
       <div class="alert-tag">
        HIGH SEVERITY THREAT
       </div>
       <div class="main-title">
        Critical Virus Detection
       </div>
      </div>
     </div>
     <!-- Threat Info Card -->
     <div class="threat-card">
      <div class="threat-stats">
       <div class="threat-count">
        <div class="count-number">
         51
        </div>
        <div class="count-label">
         ACTIVE THREATS
        </div>
       </div>
       <div class="divider">
       </div>
       <div class="protection-status">
        <div class="status-title">
         🛡️ Protection Status
        </div>
        <div class="status-value">
         COMPROMISED
        </div>
       </div>
      </div>
      <div class="scan-info">
       Last scan: Today, 2:34 PM • Threat level:
       <strong style="color:#ff4444;">
        CRITICAL
       </strong>
      </div>
     </div>
     <!-- Warning Message -->
     <div class="warning-box">
      <div class="warning-title">
       <span>
        ⚠️
       </span>
       <span>
        Your device security has been breached. Immediate action is required to prevent data theft and system damage.
       </span>
      </div>
      <ul class="warning-list">
       <li>
        Personal data at risk
       </li>
       <li>
        Banking information vulnerable
       </li>
       <li>
        Passwords may be compromised
       </li>
       <li>
        Device performance degraded
       </li>
      </ul>
     </div>
     <!-- Urgent Action -->
     <div class="urgent-box">
      <div class="urgent-title">
       ⏰ TIME-SENSITIVE ACTION REQUIRED
      </div>
      <div class="urgent-text">
       Each minute increases risk of permanent damage
      </div>
     </div>
     <!-- Action Button -->
     <div class="action-button">
      <a class="btn">
       🔒 SECURE YOUR DEVICE NOW
      </a>
     </div>
     <!-- Footer -->
     <div class="footer">
      <div class="footer-text">
      </div>
     </div>
    </div>
   </div>
   <!-- Bottom Footer -->
   <br/>
   <center>
    <br/>
    <br/>
    <br/>
    <br/>
    <br/>
    <br/>
    <br/>
    <br/>
    <a>
     Unsubscribe
    </a>
    from these offers
    <img alt="" class="tracking" height="1" src="https://inboxflows.com/_/image/http%253A%252F%252Fsecure.networkguru.com%252Ftrack%252F3OSZNY2708quQKz164tRoy0ewD0jxqD0Qafw4/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cCUzQSUyRiUyRnNlY3VyZS5uZXR3byIsInRpbWUiOjE3Njk4MjM0MDEuMzM2ODY0N30:1vlzuj:8EiwPPtdiZJCu2dxKZmZsTuLE96gJ_8aXwRsmx32M-A" style="display:none;" width="1"/>
   </center>
  </a>
 </body>
</html>