-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathwallpaper.html
More file actions
60 lines (55 loc) · 1.47 KB
/
wallpaper.html
File metadata and controls
60 lines (55 loc) · 1.47 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>IntimaLabs Wallpaper</title>
<link href="https://fonts.googleapis.com/css2?family=Inter:wght@600&display=swap" rel="stylesheet">
<style>
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
@page {
size: 3840px 2160px;
margin: 0;
}
body {
width: 3840px;
height: 2160px;
font-family: 'Inter', -apple-system, sans-serif;
display: flex;
align-items: center;
justify-content: center;
background: #f2f2f2;
overflow: hidden;
}
.header {
display: flex;
align-items: center;
justify-content: center;
gap: 60px;
}
.logo {
width: 300px;
height: auto;
image-rendering: -webkit-optimize-contrast;
image-rendering: crisp-edges;
}
h1 {
font-size: 240px;
font-weight: 600;
color: #2d3748;
margin: 0;
letter-spacing: -2px;
}
</style>
</head>
<body>
<div class="header">
<img src="Assets/symbol-black.PNG" alt="IntimaLabs" class="logo">
<h1>IntimaLabs</h1>
</div>
</body>
</html>