File size: 1,560 Bytes
f467200 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 |
<svg viewBox="0 0 800 600" preserveAspectRatio="xMidYMid meet" xmlns="http://www.w3.org/2000/svg">
<!-- Background -->
<rect width="100%" height="100%" fill="white" />
<!-- Header -->
<rect x="0" y="0" width="100%" height="70" fill="black" />
<text x="20" y="45" fill="white" font-size="24" font-family="Arial">Hackerone Proof of Concept</text>
<!-- Navigation Menu -->
<rect x="0" y="70" width="100%" height="30" fill="gray" />
<text x="20" y="90" fill="white" font-size="16" font-family="Arial">Home</text>
<text x="100" y="90" fill="white" font-size="16" font-family="Arial">About</text>
<text x="180" y="90" fill="white" font-size="16" font-family="Arial">Services</text>
<text x="280" y="90" fill="white" font-size="16" font-family="Arial">Contact</text>
<!-- Main Content Area -->
<rect x="0" y="100" width="100%" height="400" fill="#f0f0f0" />
<text x="20" y="130" fill="black" font-size="20" font-family="Arial">Welcome to Hackerone Proof of Concept</text>
<text x="20" y="160" fill="black" font-size="14" font-family="Arial">Explore our services and see how we can help secure your digital assets.</text>
<!-- Footer -->
<rect x="0" y="500" width="100%" height="100" fill="black" />
<text x="20" y="530" fill="white" font-size="14" font-family="Arial">© 2023 Hackerone Proof of Concept</text>
<text x="20" y="550" fill="white" font-size="14" font-family="Arial">Privacy Policy</text>
<text x="20" y="570" fill="white" font-size="14" font-family="Arial">Terms of Use</text>
</svg>
|