diff options
author | pdp8 <pdp8@pdp8.info> | 2022-08-24 16:54:43 +0200 |
---|---|---|
committer | pdp8 <pdp8@pdp8.info> | 2022-08-24 16:54:43 +0200 |
commit | 084bc97124f0bbab5de4f1e32ed30b148f39f4ae (patch) | |
tree | e8e89b961f65fb1c68f66fceb51bf297f17a95b4 /contact.html |
initial commit
Diffstat (limited to 'contact.html')
-rw-r--r-- | contact.html | 33 |
1 files changed, 33 insertions, 0 deletions
diff --git a/contact.html b/contact.html new file mode 100644 index 0000000..69de62f --- /dev/null +++ b/contact.html @@ -0,0 +1,33 @@ +<!DOCTYPE html> +<html lang="en"> +<head> + <meta name="generator" content="HTML Tidy for HTML5 for Linux version 5.8.0"> + <meta charset="UTF-8"> + <meta http-equiv="X-UA-Compatible" content="IE=edge"> + <meta name="viewport" content="width=device-width, height=device-height, initial-scale=1.0"> + <title>pdp8</title> + <link rel="stylesheet" type="text/css" href="/style.css"> + <link rel="icon" type="image/png" href="/pdp8.png"> +</head> +<body> + <nav> + <a id='logo' href='/about.html'><img src='/pdp8.png' alt='pdp8'></a><a class='item' href='/music.html'>music</a><a class='item' href='/pictures.html'>pictures</a><a class='item' href='/videos.html'>videos</a><a class='item' href='/code.html'>code</a><a class='item current' href='/contact.html'>contact</a><a id='menu' href='#' onclick='show_vertical_menu()'>≡</a> + </nav> + <div class='post'> + <h1>email</h1><a href='mailto:info@pdp8.info'>info@pdp8.info</a> + <h1>matrix</h1><a href='https://matrix.to/#/@pdp8:matrix.pdp8.info'>@pdp8:matrix.pdp8.info</a> + <h1>newsletter</h1> + <h2>subscribe</h2>send a mail to <a href='mailto:info@pdp8.info?subject=Subscribe'>info@pdp8.info</a> with <b>subscribe</b> in the subject (your address will be used only for the newsletter and won't be shared with anyone) + <h2>unsubscribe</h2>send a mail to <a href='mailto:info@pdp8.info?subject=Subscribe'>info@pdp8.info</a> with <b>unsubscribe</b> in the subject + </div> + <script> + function show_vertical_menu() { + document.getElementById("menu").style.display = "none" + items = document.getElementsByClassName("item") + for (i = 0; i < items.length; i++) { + items[i].style.display = "block" + } + } + </script> +</body> +</html> |