10 lines
819 B
HTML
10 lines
819 B
HTML
<!DOCTYPE html>
|
|
<html><head><meta charset="UTF-8"><title>Contact | BlackRoad</title>
|
|
<style>body{background:#000;color:#fff;font-family:system-ui;padding:2rem;max-width:800px;margin:0 auto}
|
|
h1{background:linear-gradient(135deg,#F5A623,#FF1D6C);-webkit-background-clip:text;-webkit-text-fill-color:transparent}
|
|
a{color:#F5A623}input,textarea{width:100%;padding:1rem;margin:0.5rem 0;background:#111;border:1px solid #333;color:#fff;border-radius:8px}
|
|
button{background:linear-gradient(135deg,#F5A623,#FF1D6C);color:#000;padding:1rem 2rem;border:none;border-radius:8px;cursor:pointer}</style></head>
|
|
<body><h1>Contact</h1>
|
|
<form><input placeholder="Name"><input placeholder="Email" type="email"><textarea placeholder="Message" rows="5"></textarea>
|
|
<button>Send</button></form><p><a href="/">← Back</a></p></body></html>
|