Skip to content

Instantly share code, notes, and snippets.

View Avelar's full-sized avatar

avelar fortunato Avelar

View GitHub Profile
@Avelar
Avelar / Github-pages-registro-br.md
Last active February 24, 2022 01:33
Setup Registro.br Domain for GitHub Pages

Setup Registro.br Domain for GitHub Pages

  1. On your repository create a new file CNAME and put the domain.com in the file.
  2. Login Registro.br > Domínios > Select domain > Edição de zona.
  3. Add Nova entrada, selec A (Host) in "Endereço Ip" point to 192.30.252.153.
  4. Add Nova entrada, select CNAME (Alias) add www, and in "Nome do Servidor" point to website.github.io.
@Avelar
Avelar / mailto-link-spam-control.html
Created September 1, 2015 13:21
Mail link spam control function
@Avelar
Avelar / reverse-captcha-basic.html
Last active September 1, 2015 13:30
Reverse Captcha Basic
<!--A basic Reverse Captcha contact form-->
<form id="formAntiSpam" action="" method="">
<input type="text" name="nome" value="" tabindex="1">
<input type="text" name="email" value="" tabindex="2">
<!--The spambot test field is hidden and no has a tabindex-->
<input type="button" class="spam-test-field" style="display:none" value="">
<button type="button" onclick="spamVerify()" tabindex="3"> Send Form </button>
</form>