diff options
author | Runxi Yu <me@runxiyu.org> | 2024-05-14 11:11:26 +0800 |
---|---|---|
committer | Runxi Yu <me@runxiyu.org> | 2024-05-14 11:11:26 +0800 |
commit | 182a48ca8d70b7292d311365f308866ecd7f5c0b (patch) | |
tree | 2763b0f9795926fcecdac4d9e3852f0840571ec6 /ask.html | |
parent | a1dcdcae637c50d22e4a803759ccc2504f9f38cb (diff) | |
download | www-182a48ca8d70b7292d311365f308866ecd7f5c0b.tar.gz |
Update all HTML templates
Diffstat (limited to 'ask.html')
-rw-r--r-- | ask.html | 49 |
1 files changed, 31 insertions, 18 deletions
diff --git a/ask.html b/ask.html index a9bd0be..0ab870a 100644 --- a/ask.html +++ b/ask.html @@ -1,19 +1,32 @@ -<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> -<html xmlns="http://www.w3.org/1999/xhtml" lang="en"> - <head> - <title>Don't ask to ask, just ask!</title> - <link rel="stylesheet" href="/oldstyle.css" /> - <meta name="viewport" content="width=device-width, initial-scale=1.0" /> - <link rel="shortcut icon" href="/favicon.ico" type="image/x-icon" /> - </head> - <body> - <h1>Don't ask to ask, just ask!</h1> - <p>Please don't send random emails and IRC messages saying "Are you there? I have a thing to ask you about...". Just ask the question. If I'm online I might answer right away, if I'm not I'll answer you when I have time. An "Are you there?" or "Can I ask a question?" question is just a waste of time and effort.</p> - <p>See also: <a href="https://dontasktoask.com/">An entire website dedicated to "Don't ask to ask, just ask''</a></p> - <div id="footer"> - <hr /> - <p><a href="/">Runxi Yu's Website</a></p> - - </div> - </body> +<!DOCTYPE html> +<html lang="en"> +<head> + <meta charset="UTF-8" /> + <title>Don't ask to ask, just ask!</title> + <link rel="stylesheet" href="./style.css" /> + <link rel="icon" href="./favicon.ico" sizes="any" /> + <!--link rel="icon" href="./icon.svg" type="image/svg+xml" / --> + <meta name="viewport" content="width=device-width, initial-scale=1.0" /> + <meta name="theme-color" content="#241504" /> + <meta name="color-scheme" content="light dark"> + +</head> +<body> +<header> + <h1>Don't ask to ask, just ask!</h1> +</header> + +<article> + <p>Please don't send random emails and IRC messages saying "Are you there? I have a thing to ask you about...". Just ask the question. If I'm online I might answer right away, if I'm not I'll answer you when I have time. An "Are you there?" or "Can I ask a question?" question is just a waste of time and effort.</p> + <p>See also: <a href="https://dontasktoask.com/">An entire website dedicated to "Don't ask to ask, just ask''</a></p> +</article> + +<footer> + <ul role="list"> + <li><a href="./">Home</a></li> + <li>Runxi Yu</li> + <li><a rel="license" href="./pubdom.html">Public Domain</a></li> + </ul> +</footer> +</body> </html> |