A Pen by Florin Pop on CodePen.
๐ฏ
This file contains 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="pt-BR"> | |
<head> | |
<meta charset="UTF-8"> | |
<meta http-equiv="X-UA-Compatible" content="IE=edge"> | |
<meta name="viewport" content="width=device-width, initial-scale=1.0"> | |
<link rel="stylesheet" href="assets/css/estilo.css"> | |
<title>Pรกgina Inicial</title> | |
</head> | |
<body> |
This file contains 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
@import url("https://cdn.jsdelivr.net/npm/[email protected]/font/bootstrap-icons.min.css"); | |
*{ | |
margin:0; | |
padding:0; | |
box-sizing: border-box; | |
} | |
body{ | |
background-image: linear-gradient(rgb(7, 11, 91), rgb(102, 207, 100)); | |
} |
This file contains 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
const colecaoUf = [ | |
{ | |
id: 1, | |
uf: "AC", | |
nome: "Acre" | |
}, | |
{ | |
id: 2, | |
uf: "AL", | |
nome: "Alagoas" |
This file contains 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
0โฃ 0, keycap, zero | |
1โฃ 1, number, one | |
๐ 1, 30, clock, time, one, thirty, 1:30, one-thirty | |
๐ 1, clock, time, one, 00, oโclock, 1:00, one oโclock | |
2โฃ 2, number, two | |
๐ 2, 30, clock, time, two, thirty, 2:30, two-thirty | |
๐ 2, clock, time, two, 00, oโclock, 2:00, two oโclock | |
3โฃ 3, keycap, three | |
๐ 3, 30, three, clock, time, thirty, 3:30, three-thirty | |
๐ 3, three, clock, time, 00, oโclock, 3:00, three oโclock |
This file contains 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
<select name="estados-brasil"> | |
<option value="AC">Acre</option> | |
<option value="AL">Alagoas</option> | |
<option value="AP">Amapรก</option> | |
<option value="AM">Amazonas</option> | |
<option value="BA">Bahia</option> | |
<option value="CE">Cearรก</option> | |
<option value="DF">Distrito Federal</option> | |
<option value="ES">Espรญrito Santo</option> | |
<option value="GO">Goiรกs</option> |
People
![]() :bowtie: |
๐ :smile: |
๐ :laughing: |
---|---|---|
๐ :blush: |
๐ :smiley: |
:relaxed: |
๐ :smirk: |
๐ :heart_eyes: |
๐ :kissing_heart: |
๐ :kissing_closed_eyes: |
๐ณ :flushed: |
๐ :relieved: |
๐ :satisfied: |
๐ :grin: |
๐ :wink: |
๐ :stuck_out_tongue_winking_eye: |
๐ :stuck_out_tongue_closed_eyes: |
๐ :grinning: |
๐ :kissing: |
๐ :kissing_smiling_eyes: |
๐ :stuck_out_tongue: |
People
![]() :bowtie: |
๐ :smile: |
๐ :laughing: |
---|---|---|
๐ :blush: |
๐ :smiley: |
:relaxed: |
๐ :smirk: |
๐ :heart_eyes: |
๐ :kissing_heart: |
๐ :kissing_closed_eyes: |
๐ณ :flushed: |
๐ :relieved: |
๐ :satisfied: |
๐ :grin: |
๐ :wink: |
๐ :stuck_out_tongue_winking_eye: |
๐ :stuck_out_tongue_closed_eyes: |
๐ :grinning: |
๐ :kissing: |
๐ :kissing_smiling_eyes: |
๐ :stuck_out_tongue: |
Dicas e ferramentas para facilitar sua vida. Banco de imagens https://visualhunt.com/ https://www.pexels.com/ http://epicantus.tumblr.com/ http://kaboompics.com/ https://www.shutterstock.com/ https://stock.tookapic.com/ http://jaymantri.com/ http://snapwiresnaps.tumblr.com/
This file contains 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
<?php | |
include('configuracao.php'); | |
include('db.php'); | |
include('usuarios.php'); | |
include('produtos.php'); | |
function getPagina(){ | |
$url = $_SERVER['REQUEST_URI']; |