diff options
author | David Timber <dxdt@dev.snart.me> | 2024-08-19 02:17:29 +0200 |
---|---|---|
committer | David Timber <dxdt@dev.snart.me> | 2024-08-19 02:23:35 +0200 |
commit | f350500627967412318c788dc516cc6f99c37b58 (patch) | |
tree | 911f4965f611a268efeaacd2f767d3e0ef013728 /mx-aaaa/resolve-mx-aaaa.html | |
parent | ef5b99386d8c021d9cba38a7a615cdbfcbe80477 (diff) |
Add mx-aaaa
Diffstat (limited to 'mx-aaaa/resolve-mx-aaaa.html')
-rw-r--r-- | mx-aaaa/resolve-mx-aaaa.html | 39 |
1 files changed, 39 insertions, 0 deletions
diff --git a/mx-aaaa/resolve-mx-aaaa.html b/mx-aaaa/resolve-mx-aaaa.html new file mode 100644 index 0000000..d9d3082 --- /dev/null +++ b/mx-aaaa/resolve-mx-aaaa.html @@ -0,0 +1,39 @@ +<!DOCTYPE html> +<html lang="en"> +<head> + <title>Resolve AAAA MX of popular email providers</title> + <script type="module" src="resolve-mx-aaaa.js"></script> + <link rel="stylesheet" href="resolve-mx-aaaa.css"> +</head> +<body> + +<h1>Resolve AAAA MX of popular email providers</h1> +<div class="header"> + <small>by David Timber <dxdt@dev.snart.me> (c) 2024</small> +</div> +<table class="header"> +<tbody> +<tr> + <td class="listContainer"> + <h2 id="hlist">List</h2> + <pre id="txtlist" contenteditable></pre> + <div> + <button type="submit" id="btn-listapply">Apply</button> + <button type="reset" id="btn-listreset">Reset</button> + </div> + </td> + <td class="resultContainer"> + <h2>Result</h2> + <pre id="status" class="result">PRESTART</pre> + <div id="card-holder"></div> + </td> +</tr> +</tbody> +</table> +<div> + <h2>Output</h2> + <pre id="output"></pre> +</div> + +</body> +</html> |