Skip to content

Commit 419521a

Browse files
committed
Updates
Added meta tags For Embed For https://is-a.dev Added favicon.ico And is-a.dev.png For The Site Icon And Embed Image Removed Scroll bar in 404.html
1 parent c8ea1de commit 419521a

File tree

4 files changed

+25
-7
lines changed

4 files changed

+25
-7
lines changed

404.html

Lines changed: 10 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -5,12 +5,10 @@
55
<meta charset="UTF-8">
66
<meta http-equiv="X-UA-Compatible" content="IE=edge">
77
<meta name="viewport" content="width=device-width, initial-scale=1.0">
8+
<link rel="icon" type="image/x-icon" href="/assets/favicon.ico">
89
<title>404 - Page Not Found</title>
9-
<!-- Your CSS styles -->
1010
<style>
11-
/* Your styles from the original code */
12-
html,
13-
body {
11+
html {
1412
--header-bg: #0f0c19;
1513
--accent: #4e3aA3;
1614
--body-fg: #9b7dff;
@@ -24,14 +22,19 @@
2422
padding: 20px;
2523
}
2624

25+
body {
26+
margin: 0;
27+
padding: 0;
28+
background-color: #0f0c19;
29+
color: var(--body-fg);
30+
overflow: hidden; /* Hides the scrollbar for the body */
31+
}
32+
2733
body * {
2834
box-sizing: border-box;
2935
line-height: 1.5em;
3036
}
3137

32-
/* ... (rest of your styles) ... */
33-
34-
/* Additional styles for 404 page */
3538
.error-container {
3639
display: flex;
3740
justify-content: center;

assets/favicon.ico

9.64 KB
Binary file not shown.

assets/is-a.dev.png

2.83 KB
Loading

index.html

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,21 @@
77
<meta http-equiv="x-ua-compatible" content="ie=edge" />
88
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no" />
99
<title>is-a.dev | Free sub-domains for developers</title>
10+
<meta name="description" content="A service to allow developers to get free `.is-a.dev` subdomains">
11+
<meta property="og:title" content="is-a.dev">
12+
<meta property="og:description" content="A service to allow developers to get free `.is-a.dev` subdomains">
13+
<meta property="og:image" content="/assets/is-a.dev.png">
14+
<meta property="og:url" content="https://is-a.dev">
15+
<meta property="og:type" content="website">
16+
<meta name="twitter:card" content="summary_large_image">
17+
<meta name="twitter:title" content="is-a.dev">
18+
<meta name="twitter:description" content="A service to allow developers to get free `.is-a.dev` subdomains">
19+
<meta name="twitter:image" content="/assets/is-a.dev.png">
20+
<meta name="apple-mobile-web-app-title" content="is-a.dev">
21+
<meta name="apple-mobile-web-app-capable" content="yes">
22+
<meta name="apple-mobile-web-app-status-bar-style" content="black-translucent">
23+
<meta name="theme-color" content="#4E3AA3">
24+
<link rel="icon" type="image/x-icon" href="/assets/favicon.ico">
1025
<link rel="stylesheet" href="./fonts/Roboto/font.css">
1126
<link rel="stylesheet" href="./fonts/UbuntuMono/font.css">
1227
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.2/css/all.min.css">

0 commit comments

Comments
 (0)