| <!-- |
| Copyright 2025 The Chromium Authors |
| Use of this source code is governed by a BSD-style license that can be |
| found in the LICENSE file. |
| --> |
| <!doctype html> |
| <meta charset="utf-8" /> |
| |
| <style> |
| main { |
| margin: 50px 0px; |
| text-align: center; |
| } |
| |
| a { |
| text-decoration:none; |
| color: #000; |
| font: bold 24pt sans-serif; |
| border-radius: 10px; |
| padding: 0.5em; |
| margin: 20px; |
| } |
| |
| a#continue { |
| background: #ccc; |
| } |
| |
| a#noThanks { |
| background: #eee; |
| } |
| |
| a#close { |
| position: absolute; |
| top: 10px; |
| right: 10px; |
| font-size: 16pt; |
| padding: 0.2em 0.5em; |
| background: #fdd; |
| } |
| |
| </style> |
| |
| |
| <main> |
| <a href="#continue" id="continue">Continue</a> |
| <a href="#noThanks" id="noThanks">No Thanks</a> |
| <a href="?source=x_button#noThanks" id="close">X</a> |
| </main> |