1
0
Owen Diffey 3 жил өмнө
commit
62d614164e
2 өөрчлөгдсөн 37 нэмэгдсэн , 0 устгасан
  1. 37 0
      index.html
  2. BIN
      logo.png

+ 37 - 0
index.html

@@ -0,0 +1,37 @@
+<!DOCTYPE html>
+<html lang="en">
+<head>
+    <meta charset="UTF-8">
+    <meta http-equiv="X-UA-Compatible" content="IE=edge">
+    <meta name="viewport" content="width=device-width, initial-scale=1.0">
+    <title>OJK</title>
+    <style>
+        body {
+            background: #fafafa;
+            color: #0a0a0a;
+            font-family: "Nunito", sans-serif;
+            display: flex;
+            justify-content: center;
+            text-align: center;
+            min-height: 100vh;
+            margin: 0;
+            font-size: 24px;
+        }
+
+        .content {
+            margin: auto 0;
+        }
+
+        .content img {
+            width: 100%;
+            max-width: 800px;
+            padding: 10px;
+        }
+    </style>
+</head>
+<body>
+    <div class="content">
+        <img src="logo.png">
+    </div>
+</body>
+</html>

BIN
logo.png