Skip to content

Instantly share code, notes, and snippets.

View gabizinha12's full-sized avatar
🖥️
creating bugs

Gabrielle Lima gabizinha12

🖥️
creating bugs
  • São Paulo
  • 11:32 (UTC -03:00)
View GitHub Profile
<!DOCTYPE html>
<html lang="pt-BR">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="style.css">
<title>Contador de passos</title>
</head>
<body>
<header>
let num = document.querySelector('input#fnum')
let lista = document.querySelector('select#flista')
let res = document.querySelector('div#res')
let valores = []
function isNumero(n) {
if (Number(n) >= 1 && Number(n) <= 100) {
return true
} else {
return false
<!-- <div class="buttons has-addons is-centered">
<button class="button is-danger">Pedir agora</button>
<button class="button is-warning">Ver cardápio</button>
</div> -->
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bulma@0.9.0/css/bulma.min.css">
<title>Cálculo Do IMC</title>
</head>
<body>
<div class="container">
let peso = parseFloat(document.getElementById("inputPeso").value);
let altura = parseFloat(document.getElementById("inputAltura").value);
const res = document.getElementById("res");
function analisar() {
const imc = (peso / altura * altura);
if (imc < 18.5) {
res.innerHTML += `Abaixo do peso`;
} else if (imc == 18.5 && 24.9) {
@gabizinha12
gabizinha12 / bulma-form.html
Created July 31, 2020 14:22 — forked from hrmsk66/bulma-form.html
Bulma Simple Form
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Hello Bulma!</title>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/bulma/0.7.1/css/bulma.min.css">
<script defer src="https://use.fontawesome.com/releases/v5.0.7/js/all.js"></script>
</head>
<body>
#002055
#002c74
#001536
#0070d1
FileZilla – Ferramenta cliente FTP para transferir arquivos para o seu servidor.
Putty – Ferramenta de SSH para acesso remoto ao seu servidor.
ColorZilla – Ferramenta para capturar cores em sites. Muito útil para manter a identidade de um site.
Fontface Ninja – Ferramenta para identificar fontes usadas em sites.
Notepad ++ – Editor de código bem leve e eficiente, incluindo um cliente FTP.
#6D6D04
#EBE4C4
#F1B42F
#F2F2F2
#C6D2CD
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="./css/bulma.css">
<link href="https://fonts.googleapis.com/icon?family=Material+Icons" rel="stylesheet">
<title>Flash Apps</title>
</head>