Wireframe Generator
Create low-fidelity wireframe layouts for planning
Style
Options
Theme
Colors
Add Elements
Elements (9)
header
nav
image
text
button
card
card
card
footer
Preview
Export
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Wireframe</title>
<style>
.wireframe-container {
position: relative;
background-color: #ffffff;
width: 800px;
height: 500px;
border-radius: 8px;
overflow: hidden;
background-image: linear-gradient(#94a3b820 1px, transparent 1px),
linear-gradient(90deg, #94a3b820 1px, transparent 1px);
background-size: 20px 20px;
}
.wireframe-element {
position: absolute;
background-color: #e2e8f0;
border: 1px solid #94a3b8;
border-radius: 4px;
display: flex;
align-items: center;
justify-content: center;
font-family: system-ui, sans-serif;
font-size: 12px;
color: #475569;
}
.wireframe-element.header,
.wireframe-element.footer {
background-color: #94a3b840;
}
.wireframe-element.button {
background-color: #3b82f6;
color: white;
cursor: pointer;
}
.wireframe-element.input {
background-color: white;
}
.wireframe-element.image {
background: repeating-linear-gradient(
45deg,
#e2e8f0,
#e2e8f0 10px,
#94a3b820 10px,
#94a3b820 20px
);
}
.element-label {
position: absolute;
bottom: -18px;
left: 50%;
transform: translateX(-50%);
font-size: 10px;
color: #475569;
white-space: nowrap;
}
</style>
</head>
<body>
<div class="wireframe-container">
<div class="wireframe-element header" style="left: 0px; top: 0px; width: 800px; height: 300px;">
<span class="element-label">Header</span>
</div>
<div class="wireframe-element nav" style="left: 160px; top: 350px; width: 480px; height: 200px;">
<span class="element-label">Navigation</span>
</div>
<div class="wireframe-element image" style="left: 40px; top: 600px; width: 320px; height: 750px;">
<span class="element-label">Hero Image</span>
</div>
<div class="wireframe-element text" style="left: 400px; top: 600px; width: 360px; height: 400px;">
<span class="element-label">Main Content</span>
</div>
<div class="wireframe-element button" style="left: 400px; top: 1050px; width: 160px; height: 175px;">
<span class="element-label">CTA Button</span>
</div>
<div class="wireframe-element card" style="left: 40px; top: 1450px; width: 224.00000000000003px; height: 500px;">
<span class="element-label">Card 1</span>
</div>
<div class="wireframe-element card" style="left: 288px; top: 1450px; width: 224.00000000000003px; height: 500px;">
<span class="element-label">Card 2</span>
</div>
<div class="wireframe-element card" style="left: 536px; top: 1450px; width: 224.00000000000003px; height: 500px;">
<span class="element-label">Card 3</span>
</div>
<div class="wireframe-element footer" style="left: 0px; top: 2000px; width: 800px; height: 250px;">
<span class="element-label">Footer</span>
</div>
</div>
</body>
</html>