-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathog-image-template.html
More file actions
51 lines (48 loc) · 1.25 KB
/
og-image-template.html
File metadata and controls
51 lines (48 loc) · 1.25 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
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>PwnFuzz Labs OG Image</title>
<style>
body {
margin: 0;
padding: 0;
width: 1200px;
height: 630px;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
background: #1a1b26;
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
position: relative;
}
.main-title {
font-size: 96px;
font-weight: 800;
color: #c0caf5;
margin: 0;
letter-spacing: -2px;
}
.subtitle {
font-size: 32px;
color: #a9b1d6;
margin-top: 20px;
font-weight: 400;
}
.branding {
position: absolute;
bottom: 50px;
right: 60px;
font-size: 28px;
font-weight: 600;
color: #ff9e64;
}
</style>
</head>
<body>
<h1 class="main-title">PwnFuzz Labs</h1>
<p class="subtitle">Security Research & Vulnerability Analysis</p>
<div class="branding">labs.pwnfuzz.com</div>
</body>
</html>