Want to add a button of my site to your site? Why thank you! Hotlink it or not, I don't care with the little bandwidth I currently get.

Grab button for crota-gurdy.neocities.org
<a href="https://crota-gurdy.neocities.org/" rel="external" title="Crotaro's Gaming and Gurdy Site">
<img src="https://crota-gurdy.neocities.org/POVCrank.jpg" alt="Grab button for crota-gurdy.neocities.org" width="100px" height="75" />
</a>
Small grab button for crota-gurdy.neocities.org
<a href="https://crota-gurdy.neocities.org/" rel="external" title="Crotaro's Gaming and Gurdy Site">
<img src="https://crota-gurdy.neocities.org/hurdygames_button_smol.png" alt="Small grab button for crota-gurdy.neocities.org" width="88px" height="31px" />
</a>

Funfact

The notes on my small button are the initial "dum dum dum duuum" of the Helldivers 2 Soundtrack "A Cup of Libertea"

There's this cute counter that visitors can click to show that they visited. It's supposed to save server-side, I think (frankly, anything else would be silly), but either I'm too stupid to make that work or Neocities' free tier restrictions make it impossible (I read something about not being able to execute server-side scripts with the free tier?). But maybe it'll be useful to one of you, so I'll throw it in here.

COPY ALL THIS INTO YOUR .CSS FILE
button {
border: none;
padding-top: 10px;
padding-bottom: 10px;
color: white;
font-weight: bold;
width: 200px;
margin-bottom: 5px;
border-radius: 5px;
}

#increment-btn {
background: darkred;
}

#save-btn {
background: darkgreen;
}

button:hover {
opacity: 0.8;
cursor: pointer;
}
COPY ALL THIS INTO YOUR .JS FILE
let countEl = document.getElementById('count-el')

let count = 0

function increment() {
count += 1
countEl.textContent = count
console.log("click")
}
COPY ALL THIS INTO YOUR .HTML FILE AND MAKE SURE TO USE THE defer IN YOUR SCRIP TAG OR PUT THE SCRIPT TAG JUST BEFORE CLOSING body AND html
<h1>People entered:</h1>
<h2 id="count-el">0</h2>
<button id="increment-btn" onclick="increment()">INCREMENT</button>