/ tests / capture / fixtures / sticky-nav-empty.html
sticky-nav-empty.html
 1  <!doctype html>
 2  <html>
 3    <head>
 4      <style>
 5        body {
 6          margin: 0;
 7          font-family: sans-serif;
 8        }
 9        nav {
10          position: fixed;
11          top: 0;
12          left: 0;
13          right: 0;
14          height: 80px;
15          background: #fff;
16          z-index: 1000;
17        }
18        main {
19          margin-top: 80px;
20          padding: 40px;
21        }
22      </style>
23    </head>
24    <body>
25      <nav>
26        <!-- Empty nav with no CTA or trust signals -->
27      </nav>
28      <main>
29        <h1>Welcome</h1>
30        <p>This page has an empty sticky navigation bar.</p>
31      </main>
32    </body>
33  </html>