Logo CEWEB.br Logo NIC.br Logo CGI.br
Home Sobre o projeto

Sites Pertecentes a (o) BA

Endereço Nota Erros Avisos

www.andarai.ba.gov.br/gabinete

86.98 27 89
Recomendações Avaliadas
1.1 Respeitar os Padrões Web.

Recomendações

Número Descrição Quantidade Linhas Código Fonte
1.1.3 Presença de CSS(s) in-line 6 347 384 407 446 452 461
1.1.4 Presença de CSS(s) interno 1 505
1.1.5 Presença de javascript(s) in-line 1 544
1.1.6 Presença de javascript(s) interno 4 34 319 501 550
347 <![CDATA[<form action="/busca" method="get" style="margin-top: 15px;"> <input class="f1-s-1 cl6 plh9 s-full p-l-25 p-r-45" type="text" name="procura" placeholder="Buscar Notícias"> <button class="flex-c-c size-a-1 ab-t-r fs-20 cl2 hov-cl10 trans-03" type="submit"> <i class="zmdi zmdi-search"></i> </button> </form>]]>
384 <![CDATA[<div class="p-t-16" style=" text-align: center"> <h5 class="p-b-5"> <a href="gabinete/4/prefeito" class="f1-m-3 cl2 hov-cl10 trans-03"> Wilson Paes Cardoso </a> </h5> <span class="cl8"> Prefeito </span> </div>]]>
407 <![CDATA[<div class="p-t-16" style=" text-align: center"> <h5 class="p-b-5"> <a href="gabinete/6/vice-prefeita" class="f1-m-3 cl2 hov-cl10 trans-03"> Milena Santos Helfenstein </a> </h5> <span class="cl8"> Vice-prefeita </span> </div>]]>
446 <![CDATA[<div class="col-12" style="text-align: center"> <img src="imagens/brasao-footer.png" alt="PMA" width="250"> </div>]]>
452 <![CDATA[<p class="f1-s-1 cl11 p-b-16" style="text-align: center"> <strong>Prefeitura Municipal de Andaraí</strong></br> Rua Marimbus, S/N Alto Da Bela Vista </br> Andaraí - Bahia<br> Tel: (75) 3335-2119 </p>]]>
461 <![CDATA[<div class="p-t-15" style="text-align: center"> <a href="https://www.facebook.com/prefeituraandarai" class="fs-18 cl11 hov-cl10 trans-03 m-r-8" target="_blank"> <span class="fab fa-facebook-f"></span> </a> <a href="https://www.instagram.com/prefeituraandarai/" class="fs-18 cl11 hov-cl10 trans-03 m-r-8" target="_blank"> <span class="fab fa-instagram"></span> </a> <a href="https://www.youtube.com/channel/UClGM6K-nPV6kl5i68bbNIlw" class="fs-18 cl11 hov-cl10 trans-03 m-r-8" target="_blank"> <span class="fab fa-youtube"></span> </a> </div>]]>
505 <![CDATA[<style> .cookies-container { color: white; font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif; position: fixed; width: 100%; bottom: 40px; right: 20px; z-index: 1000;} .cookies-content { box-shadow: 0 1px 3px rgba(0, 0, 0, 0.15); background: #222; max-width: 850px; border-radius: 5px; padding: 1rem; display: grid; grid-template-columns: 1fr 150px 150px; gap: 0.5rem; opacity: 0; transform: translateY(1rem); animation: slideUp 2.5s forwards; float: right;} .cookies-text { grid-column-start: 1; grid-column-end: 4; grid-row-start: 1; grid-row-end: 2;} .cookies-text h3, p { margin-bottom: 0px; } .cookies-pref { grid-column-start: 1; grid-column-end: 4; display: none;} .cookies-pref label, input { display: inline;} .cookies-pref input { margin-right: 0.5rem;} .cookies-pref label { margin-right: 1rem;} .cookies-btn { grid-row: 3; font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif; background: #007cf8; color: white; cursor: pointer; border: none; border-radius: 10px; float: right; padding: 10px;} .cookies-select { grid-column: 2;} .cookies-save { grid-column: 3;} @keyframes slideUp { to { transform: initial; opacity: initial; }} </style>]]>
544 <![CDATA[<button class="cookies-select cookies-btn" onclick="mostrarPreferencias()">selecionar</button>]]>
34 <![CDATA[<script> (function(d) { var s = d.createElement("script"); s.setAttribute("data-account", "xK9GVFqwku"); s.setAttribute("src", "https://cdn.userway.org/widget.js"); (d.body || d.head).appendChild(s); })(document) </script>]]>
319 <![CDATA[<script> (function(d, s, id) { var js, fjs = d.getElementsByTagName(s)[0]; if (d.getElementById(id)) return; js = d.createElement(s); js.id = id; js.src = "//connect.facebook.net/pt_BR/sdk.js#xfbml=1&version=v2.8"; fjs.parentNode.insertBefore(js, fjs); }(document, 'script', 'facebook-jssdk')); </script>]]>
501 <![CDATA[<script> new window.VLibras.Widget('https://vlibras.gov.br/app'); </script>]]>
550 <![CDATA[<script> function mostrarPreferencias() { const att = ".cookies-pref"; const pref = document.querySelector(att).style.display; if (!pref) { document.querySelector(att).style.display = "block"; } else { if (pref == "none") { document.querySelector(att).style.display = "block"; } else { document.querySelector(att).style.display = "none"; } } } function cookies(functions) { const container = document.querySelector('.cookies-container'); const save = document.querySelector('.cookies-save'); if (!container || !save) return null; const localPref = JSON.parse(window.localStorage.getItem('cookies-pref')); if (localPref) activateFunctions(localPref); function getFormPref() { return [...document.querySelectorAll('[data-function]')] .filter((el) => el.checked) .map((el) => el.getAttribute('data-function')); } function activateFunctions(pref) { pref.forEach((f) => functions[f]()); container.style.display = 'none'; window.localStorage.setItem('cookies-pref', JSON.stringify(pref)); } function handleSave() { const pref = getFormPref(); activateFunctions(pref); } save.addEventListener('click', handleSave); } function Marketing() { } function analytics() { window.dataLayer = window.dataLayer || [];function gtag(){dataLayer.push(arguments);}gtag('js', new Date());gtag('config', 'G-VCHQ7BPXNM'); } cookies({Marketing,analytics,}); </script>]]>