pt/index.html
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 |
<!-- SPDX-FileCopyrightText: 2023 Gil Poiares-Oliveira <gil@poiares-oliveira.com> SPDX-License-Identifier: MIT --> <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title>Gil Oliveira</title> <link rel="stylesheet" href="../style.css"> </head> <body> <img class="bgimg" src="https://static.gil.is/svg/scientist_nobg.svg" alt="Gil"> <main> <div class="greeting"> <p class="mainText-pt">Olá!</p> <p class="mainText-pt">Sou o <span class="name">Gil</span></p> </div> <p class="ipa">/ʒiɫ/</p> <div> <ul> <li><a href="https://orcid.org/0000-0003-4638-2879">Cientista.</a></li> <li><a href="https://git.sr.ht/~gpo">Techie.</a></li> <li><a href="https://gil.omg.lol">Ser humano.</a></li> </ul> </div> </main> <footer> <a href="legal">Cenas jurídicas aborrecidas.</a> </footer> </body> </html> |