<!DOCTYPE html>
<html lang=”en”>
<head>
<meta charset=”UTF-8″>
<meta name=”viewport” content=”width=device-width, initial-scale=1.0″>
<title>Professional One Sheet Template</title>
<style>
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
font-family: ‘Segoe UI’, Tahoma, Geneva, Verdana, sans-serif;
background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
min-height: 100vh;
display: flex;
justify-content: center;
align-items: center;
padding: 20px;
}
.one-sheet {
background: white;
width: 8.5in;
min-height: 11in;
box-shadow: 0 20px 40px rgba(0,0,0,0.15);
border-radius: 12px;
overflow: hidden;
position: relative;
}
.header {
background: linear-gradient(135deg, #2c3e50 0%, #3498db 100%);
color: white;
padding: 40px 50px 30px;
position: relative;
}
.header::before {
content: ”;
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
background: url(‘data:image/svg+xml,<svg xmlns=”http://www.w3.org/2000/svg” viewBox=”0 0 100 100″><defs><pattern id=”grain” patternUnits=”userSpaceOnUse” width=”100″ height=”100″><circle cx=”25″ cy=”25″ r=”1″ fill=”rgba(255,255,255,0.1)”/><circle cx=”75″ cy=”75″ r=”1″ fill=”rgba(255,255,255,0.05)”/><circle cx=”50″ cy=”10″ r=”0.5″ fill=”rgba(255,255,255,0.08)”/></pattern></defs><rect width=”100″ height=”100″ fill=”url(%23grain)”/></svg>’);
}
.logo-section {
display: flex;
justify-content: space-between;
align-items: flex-start;
margin-bottom: 30px;
position: relative;
z-index: 2;
}
.logo-placeholder {
width: 80px;
height: 80px;
background: rgba(255,255,255,0.2);
border-radius: 12px;
display: flex;
align-items: center;
justify-content: center;
font-size: 24px;
font-weight: bold;
border: 2px solid rgba(255,255,255,0.3);
}
.contact-info {
text-align: right;
font-size: 14px;
line-height: 1.6;
opacity: 0.9;
}
.main-title {
font-size: 48px;
font-weight: 300;
margin-bottom: 10px;
position: relative;
z-index: 2;
}
.subtitle {
font-size: 18px;
opacity: 0.8;
font-weight: 300;
position: relative;
z-index: 2;
}
.content {
padding: 50px;
}
.section {
margin-bottom: 40px;
}
.section-title {
font-size: 24px;
color: #2c3e50;
margin-bottom: 20px;
font-weight: 600;
position: relative;
padding-left: 20px;
}
.section-title::before {
content: ”;
position: absolute;
left: 0;
top: 50%;
transform: translateY(-50%);
width: 4px;
height: 30px;
background: linear-gradient(135deg, #3498db, #2c3e50);
border-radius: 2px;
}
.two-column {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 40px;
}
.feature-list {
list-style: none;
}
.feature-list li {
margin-bottom: 15px;
display: flex;
align-items: flex-start;
}
.feature-list li::before {
content: ‘✓’;
color: #27ae60;
font-weight: bold;
margin-right: 12px;
font-size: 16px;
margin-top: 2px;
}
.stats-grid {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 30px;
margin-top: 30px;
}
.stat-item {
text-align: center;
padding: 25px 15px;
background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
border-radius: 12px;
border: 1px solid #dee2e6;
}
.stat-number {
font-size: 32px;
font-weight: bold;
color: #2c3e50;
margin-bottom: 8px;
}
.stat-label {
font-size: 14px;
color: #6c757d;
font-weight: 500;
}
.description {
line-height: 1.7;
color: #4a5568;
font-size: 16px;
}
.cta-section {
background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
padding: 30px;
border-radius: 12px;
text-align: center;
border: 2px solid #dee2e6;
}
.cta-title {
font-size: 24px;
color: #2c3e50;
margin-bottom: 15px;
font-weight: 600;
}
.cta-button {
background: linear-gradient(135deg, #3498db 0%, #2c3e50 100%);
color: white;
padding: 15px 40px;
border: none;
border-radius: 8px;
font-size: 16px;
font-weight: 600;
cursor: pointer;
transition: transform 0.2s, box-shadow 0.2s;
margin-top: 15px;
}
.cta-button:hover {
transform: translateY(-2px);
box-shadow: 0 8px 25px rgba(52, 152, 219, 0.3);
}
.footer {
background: #2c3e50;
color: white;
padding: 25px 50px;
text-align: center;
font-size: 14px;
}
@media print {
body {
background: white;
padding: 0;
}
.one-sheet {
box-shadow: none;
border-radius: 0;
width: 100%;
min-height: auto;
}
}
</style>
</head>
<body>
<div class=”one-sheet”>
<div class=”header”>
<div class=”logo-section”>
<div class=”logo-placeholder”>LOGO</div>
<div class=”contact-info”>
<div>📧 contact@company.com</div>
<div>📞 (555) 123-4567</div>
<div>🌐 www.company.com</div>
<div>📍 New York, NY</div>
</div>
</div>
<h1 class=”main-title”>Your Company Name</h1>
<p class=”subtitle”>Transforming businesses through innovative solutions</p>
</div>
<div class=”content”>
<div class=”section”>
<h2 class=”section-title”>About Us</h2>
<p class=”description”>
We are a leading company dedicated to providing exceptional services and products that drive success for our clients. With years of experience and a passion for innovation, we deliver results that exceed expectations and create lasting value for businesses of all sizes.
</p>
</div>
<div class=”two-column”>
<div class=”section”>
<h2 class=”section-title”>Key Features</h2>
<ul class=”feature-list”>
<li>Professional expertise with proven track record</li>
<li>Custom solutions tailored to your needs</li>
<li>24/7 customer support and assistance</li>
<li>Cutting-edge technology and tools</li>
<li>Competitive pricing and flexible packages</li>
<li>Fast delivery and implementation</li>
</ul>
</div>
<div class=”section”>
<h2 class=”section-title”>Our Services</h2>
<p class=”description”>
• Strategic Consulting<br>
• Digital Transformation<br>
• Project Management<br>
• Technical Support<br>
• Training & Development<br>
• Quality Assurance
</p>
</div>
</div>
<div class=”section”>
<h2 class=”section-title”>Key Statistics</h2>
<div class=”stats-grid”>
<div class=”stat-item”>
<div class=”stat-number”>500+</div>
<div class=”stat-label”>Happy Clients</div>
</div>
<div class=”stat-item”>
<div class=”stat-number”>98%</div>
<div class=”stat-label”>Success Rate</div>
</div>
<div class=”stat-item”>
<div class=”stat-number”>5+</div>
<div class=”stat-label”>Years Experience</div>
</div>
</div>
</div>
<div class=”section”>
<div class=”cta-section”>
<h3 class=”cta-title”>Ready to Get Started?</h3>
<p>Contact us today to discuss how we can help transform your business</p>
<button class=”cta-button”>Get Free Consultation</button>
</div>
</div>
</div>
<div class=”footer”>
© 2025 Your Company Name. All rights reserved. | Follow us on social media @yourcompany
</div>
</div>
</body>
</html>