Your E-Commerce Revolution Starts Here!
See Website
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width,initial-scale=1" />
<title>MyMarketplace Poster</title>
<style>
:root{
--accent:#f4c542;
--deep:#0f2740;
--muted:#a9c0d6;
--glass: rgba(255,255,255,0.06);
--blur: 8px;
--maxw:1100px;
}
html,body{height:100%;margin:0;font-family: "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;background:linear-gradient(180deg,#071329 0%, #0c2740 60%);color:#fff}
.wrap{min-height:100%;display:flex;align-items:center;justify-content:center;padding:40px 16px;}
.card{
width:100%;
max-width:var(--maxw);
position:relative;
border-radius:14px;
overflow:hidden;
box-shadow:0 10px 30px rgba(3,10,23,0.6);
background: radial-gradient(ellipse at top, rgba(255,255,255,0.02), transparent 40%), linear-gradient(180deg, rgba(3,12,23,0.4), rgba(3,8,16,0.6));
}
/* background image area */
.hero{
position:relative;
height:650px;
display:flex;
align-items:flex-start;
justify-content:center;
background-image: url("561584713_3767790770019417_1049682542227829048_n.jpg");
background-size:cover;
background-position:center;
filter: brightness(0.92);
}
/* dark overlay with subtle grid */
.hero::before{
content:"";
position:absolute;inset:0;
background: linear-gradient(180deg, rgba(5,20,35,0.5), rgba(4,11,22,0.6));
mix-blend-mode:multiply;
}
.content{
position:relative;
z-index:3;
width:100%;
padding:48px 40px;
text-align:center;
display:flex;
flex-direction:column;
align-items:center;
gap:14px;
}
.logo{
display:flex;align-items:center;gap:12px;margin-bottom:6px;
}
.logo .mark{
width:56px;height:56px;border-radius:8px;background:linear-gradient(180deg,#fff,#f1f1f1);display:flex;align-items:center;justify-content:center;color:var(--deep);font-weight:700;
}
h1{font-size:48px;line-height:1.02;margin:8px 0 0 0;letter-spacing:1px;font-weight:800}
.tag{
width:70%;
max-width:880px;
border-top:4px solid rgba(244,197,66,0.06);
padding-top:14px;margin-top:10px;
font-size:18px; color:#e9f2ff;
}
.cta{
margin-top:28px;display:flex;gap:12px;align-items:center;flex-wrap:wrap;justify-content:center;
}
.btn{
display:inline-flex;align-items:center;gap:10px;padding:12px 22px;border-radius:999px;font-weight:700;text-decoration:none;
box-shadow:0 6px 18px rgba(3,12,23,0.45);
}
.btn.primary{background:linear-gradient(90deg,var(--accent), #f1b93a);color:#0b2030}
.btn.ghost{background:rgba(255,255,255,0.06);color:#fff;border:1px solid rgba(255,255,255,0.06)}
.footer-note{font-size:14px;color:var(--muted);margin-top:16px}
/* responsive */
@media (max-width:880px){
.hero{height:820px}
h1{font-size:36px}
.tag{font-size:16px;width:86%}
}
@media (max-width:420px){
h1{font-size:28px}
.hero{height:900px}
.content{padding:28px 16px}
.tag{width:92%}
}
/* credit strip */
.credit{
background:linear-gradient(90deg, rgba(255,255,255,0.02), rgba(255,255,255,0.01));
padding:12px 18px;
text-align:center;
font-size:13px;color:var(--muted);
}
</style>
</head>
<body>
<div class="wrap">
<div class="card" role="main" aria-label="MyMarketplace Poster">
<section class="hero" aria-hidden="false">
<div class="content">
<div class="logo" aria-hidden="true">
<div class="mark">▶</div>
<div style="text-align:left">
<div style="font-weight:800;font-size:20px;letter-spacing:0.2px">MyMarketplace.<span style="color:var(--accent)">tv</span></div>
</div>
</div>
<h1>YOUR ECOMMERCE<br/>REVOLUTION STARTS NOW!</h1>
<div class="tag">LIFETIME COMMISSIONS. NO LIMITS. NO RE-SELLING.<br/>FREE TO JOIN!</div>
<div class="cta">
<a class="btn primary" href="#" onclick="alert('Replace with your signup link!');return false">LEARN MORE & JOIN FREE!</a>
<a class="btn ghost" href="#" onclick="alert('Replace with more info link');return false">WHY IT WORKS</a>
</div>
<div class="footer-note">Transparency. Integrity. People helping people prosper.</div>
</div>
</section>
<div class="credit">This HTML is a responsive recreation of the provided poster image. Replace the image file name if you move the image.</div>
</div>
</div>
</body>
</html>