index.html (1498B)
1 <!DOCTYPE html> 2 <html lang="pt-BR"> 3 <head> 4 <meta charset="utf-8"> 5 <meta name="viewport" content="width=device-width, initial-scale=1"> 6 <title>Sua página no runv.club</title> 7 <style> 8 :root { color-scheme: dark light; } 9 body { 10 font-family: system-ui, "Segoe UI", Roboto, Ubuntu, sans-serif; 11 line-height: 1.55; 12 max-width: 40rem; 13 margin: 2rem auto; 14 padding: 0 1.25rem; 15 color: #1a1a1a; 16 background: #f4f2ee; 17 } 18 @media (prefers-color-scheme: dark) { 19 body { color: #e8e4dc; background: #121018; } 20 a { color: #7fd4a0; } 21 } 22 h1 { font-size: 1.45rem; margin-bottom: 0.5rem; } 23 .path, .url { font-family: ui-monospace, monospace; font-size: 0.92rem; } 24 a { color: #0d6b3a; } 25 </style> 26 </head> 27 <body> 28 <h1>Bem-vindo(a) ao runv.club</h1> 29 <p> 30 Esta é a sua página pessoal estática. Você pode editá-la direto no servidor. 31 </p> 32 <p> 33 <strong>Arquivo para editar:</strong> <span class="path">~/public_html/index.html</span> 34 </p> 35 <p> 36 Depois que sua conta estiver publicada na web, a URL seguirá o padrão 37 <span class="url">https://runv.club/~seu_usuario/</span> 38 (troque <em>seu_usuario</em> pelo seu nome de login). 39 </p> 40 <p> 41 Use HTML estático; evite colocar segredos aqui — tudo em <span class="path">public_html</span> 42 pode ser acessível publicamente. 43 </p> 44 <p> 45 No shell, digite <span class="path">runv-help</span> para dicas e comandos úteis. 46 </p> 47 </body> 48 </html>