-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
81 lines (77 loc) · 1.89 KB
/
index.html
File metadata and controls
81 lines (77 loc) · 1.89 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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
---
layout: none
title: "Home"
---
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>nr0ps_</title>
<link href="https://fonts.googleapis.com/css2?family=Orbitron:wght@500;700&display=swap" rel="stylesheet">
<!-- <link href="https://fonts.googleapis.com/css2?family=Fira+Mono&display=swap" rel="stylesheet">
-->
<style>
body {
margin: 0;
background: #0f0f11;
font-family: 'Orbitron', sans-serif;
color: #fff;
display: flex;
align-items: center;
justify-content: center;
height: 100vh;
background-image: url('/assets/images/bg2.jpeg'); /* Optional */
background-size: cover;
background-position: center;
}
.center {
text-align: center;
}
.avatar {
width: 200px;
height: 200px;
border-radius: 10%;
object-fit: cover;
border: 1px solid #888;
margin-bottom: 2rem;
}
.btn {
display: inline-block;
margin: 1rem;
padding: 12px 24px;
background: linear-gradient(90deg, #ff8a00, #e52e71);
border: none;
border-radius: 30px;
color: white;
text-decoration: none;
font-weight: bold;
transition: all 0.3s;
}
.btn:hover {
transform: scale(1.05);
background: linear-gradient(90deg, #e52e71, #ff8a00);
}
.social {
margin-top: 2rem;
}
.social a {
color: white;
margin: 0 0.5rem;
font-size: 1.8rem;
}
</style>
</head>
<body>
<div class="center">
<img class="avatar" src="assets/images/logo.jpeg" alt="nrOps_" />
<h1>nr0ps_</h1>
<nav class="nav-links">
<a href="/writeups/writeups">Writeups</a> |
<!-- <a href="/tradecraft">Tradecraft</a> | -->
<!-- <a href="/dissected/">Dissected</a>| -->
<a href="/about">About</a>
</nav>
</div>
</body>
</html>