<!doctype html> <html> <head> <meta charset="utf-8"> <title>Soffit Color Swatches</title> </head> <body> <div id="swatches" style="display:flex;width:1000px;height:200px;font-family:Arial, sans-serif;border:1px solid #ccc;"> <div style="flex:1;background:#FFFFFF;display:flex;align-items:center;justify-content:center;border-right:1px solid #bbb;">#FFFFFF<br>Classic White</div> <div style="flex:1;background:#000000;color:#fff;display:flex;align-items:center;justify-content:center;border-right:1px solid #bbb;">#000000<br>Black</div> <div style="flex:1;background:#D3D3D3;display:flex;align-items:center;justify-content:center;border-right:1px solid #bbb;">#D3D3D3<br>Light Gray</div> <div style="flex:1;background:#A9A9A9;display:flex;align-items:center;justify-content:center;border-right:1px solid #bbb;">#A9A9A9<br>Medium Gray</div> <div style="flex:1;background:#696969;color:#fff;display:flex;align-items:center;justify-content:center;">#696969<br>Dark Gray</div> </div> </body> </html> Mehr sehen