Last active
October 16, 2023 02:17
-
-
Save wisehackermonkey/8467ae4fbd372c0f634ce372da5ddcec to your computer and use it in GitHub Desktop.
Example Tor File
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!DOCTYPE html> | |
<html lang="en"> | |
<head> | |
<meta charset="UTF-8"> | |
<meta name="viewport" content="width=device-width, initial-scale=1.0"> | |
<title>Hackerman - Certified Badass</title> | |
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/[email protected]/css/bulma.min.css"> | |
<link href="https://fonts.googleapis.com/css2?family=Press+Start+2P&display=swap" rel="stylesheet"> | |
<style> | |
body { | |
background-color: #000; | |
color: #0f0; | |
font-family: 'Press Start 2P', cursive; | |
} | |
.hero { | |
background-color: #000; | |
} | |
.title { | |
font-size: 48px; | |
letter-spacing: 4px; | |
color: #0f0; | |
} | |
.subtitle { | |
font-size: 24px; | |
letter-spacing: 2px; | |
color: #0f0; | |
} | |
.hero.is-secondary { | |
background-image: url('https://i.imgur.com/es3QebP.png'); | |
background-size: cover; | |
background-position: center; | |
} | |
</style> | |
</head> | |
<body> | |
<section class="hero is-secondary is-fullheight"> | |
<div class="hero-body"> | |
<div class="container has-text-centered"> | |
<h1 class="title"> | |
Hackerman | |
</h1> | |
<h2 class="subtitle"> | |
Certified Badass | |
</h2> | |
</div> | |
</div> | |
</section> | |
</body> | |
</html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment