Selaa lähdekoodia

initial commit

Aneurin Barker Snook 1 kuukausi sitten
commit
6eba30c7fe
3 muutettua tiedostoa jossa 51 lisäystä ja 0 poistoa
  1. 1 0
      README.md
  2. 50 0
      index.html
  3. BIN
      internet.png

+ 1 - 0
README.md

@@ -0,0 +1 @@
+https://deletesocialmedia.org

+ 50 - 0
index.html

@@ -0,0 +1,50 @@
+<!DOCTYPE html>
+<html>
+  <head>
+    <title>Delete Social Media</title>
+    <meta name="description" content="On the Internet, nobody knows you're a dog.">
+
+    <!-- Open Graph (Facebook, LinkedIn, Slack, etc.) -->
+    <meta property="og:title" content="Delete Social Media">
+    <meta property="og:description" content="On the Internet, nobody knows you're a dog.">
+    <meta property="og:image" content="https://deletesocialmedia.org/internet.png">
+    <meta property="og:url" content="https://deletesocialmedia.org">
+    <meta property="og:type" content="website">
+
+    <!-- Twitter Card -->
+    <meta name="twitter:card" content="summary_large_image">
+    <meta name="twitter:title" content="Delete Social Media">
+    <meta name="twitter:description" content="On the Internet, nobody knows you're a dog.">
+    <meta name="twitter:image" content="https://deletesocialmedia.org/internet.png">
+
+    <style>
+    html, body {
+      background-color: #ebe7de;
+      margin: 0;
+      padding: 0;
+    }
+
+    .root {
+      align-items: center;
+      display: flex;
+      height: 100vh;
+      justify-content: center;
+    }
+
+    img {
+      height: auto;
+      max-height: 100%;
+      max-width: 100%;
+      width: auto;
+    }
+    </style>
+  </head>
+  <body>
+    <div class="root">
+      <img
+        src="./internet.png"
+        alt="There are two robots in an office. One robot is seated at a computer, speaking to the other robot standing beside it. The seated robot says, 'On the Internet, nobody knows you're a dog.'"
+      />
+    </div>
+  </body>
+</html>

BIN
internet.png