Skip to content

Herbertlim/seusitenoar

Repository files navigation

<title>Seu Site Cresce Junto Conocso</title>

Foto de Perfil

Herbert Lima

Programador Web | HTML | CSS | JavaScript

📄 Baixar Currículo Sobre Habilidades Projetos Serviços Certificados Comentarios Contato localização profissional

Suporte 24hs

Ligue: 11 92091-5218

Sobre mim

Sou desenvolvedor web apaixonado por criar interfaces modernas, responsivas e funcionais. Trabalho com HTML, CSS, JavaScript e frameworks como React e Node.js.

Minhas Habilidades

Logo HTML5

HTML5

Estruturação de páginas web.

Logo CSS3

CSS3

Estilização moderna e responsiva.

Logo JavaScript

JavaScript

Interatividade e funcionalidades dinâmicas.

Logo React

React

Desenvolvimento de interfaces modernas e reativas.

Logo Node.js

Node.js

Servidor e APIs em JavaScript.

Logo Git

Git

Controle de versão e colaboração.

Logo Bootstrap

Bootstrap

Framework para layouts responsivos.

Logo MySQL

MySQL

Banco de dados relacional.

Projetos Recentes

Projeto 1

Projeto advocacia

Descrição breve do projeto.

Projeto 2

Projeto petshoop

Descrição breve do projeto.

Projeto roupa

Projeto loja lingerie

Loja de Roupas e artigos lingerie.

Serviços

Criação de Sites

Landing pages modernas e responsivas.

E-commerce

Loja virtual completa para seu negócio.

Otimização

SEO e performance para seu site.

Certificações e Cursos

CSS: Position relative e absolute

CSS: Position fixed

CSS: Modificando elementos HTML

CSS: Background - Preenchendo o fundo de um elemento

CSS: Estilização através de seletores

HTML: Listas

CSS: Propriedades

Curso: CSS Introdução

HTML: span, iframe e comentários

HTML: MetaTags

HTML: Tags básicas

HTML: Fundamentos

Programador Front-end: Introdução

HTML: HTML5

HTML: CSS3

HTML: JAVA SCRIPT

Entre em Contato

<textarea id="mensagem" placeholder="Sua mensagem" rows="5" required></textarea> Contrate Pelo Whatsapp
<script> function enviarWhatsApp(event) { event.preventDefault(); const nome = document.getElementById('nome').value; const email = document.getElementById('email').value; const mensagem = document.getElementById('mensagem').value; const numero = "5511910453395"; // substitua pelo seu número const url = https://wa.me/${numero}?text=Nome:%20${encodeURIComponent(nome)}%0AEmail:%20${encodeURIComponent(email)}%0AMensagem:%20${encodeURIComponent(mensagem)}; window.open(url, '_blank'); } </script>

Comentários

<textarea id="comment" placeholder="Seu comentário" required></textarea> Enviar
<div id="comments-container"></div>
<script src="https://www.gstatic.com/firebasejs/9.23.0/firebase-app-compat.js"></script> <script src="https://www.gstatic.com/firebasejs/9.23.0/firebase-firestore-compat.js"></script> <script> // ==== CONFIGURAÇÃO FIREBASE ==== const firebaseConfig = { apiKey: "SUA_API_KEY", authDomain: "SEU_PROJETO.firebaseapp.com", projectId: "SEU_PROJETO", storageBucket: "SEU_PROJETO.appspot.com", messagingSenderId: "ID", appId: "ID" }; firebase.initializeApp(firebaseConfig); const db = firebase.firestore(); const form = document.getElementById('comment-form'); const commentsContainer = document.getElementById('comments-container'); function displayComment(doc) { const commentCard = document.createElement('div'); commentCard.classList.add('comment-card'); commentCard.innerHTML =

${doc.data().comment}

- ${doc.data().name}

; commentsContainer.prepend(commentCard); } form.addEventListener('submit', function(e) { e.preventDefault(); const name = document.getElementById('name').value; const comment = document.getElementById('comment').value; db.collection('comments').add({ name, comment, timestamp: firebase.firestore.FieldValue.serverTimestamp() }).then(() => form.reset()); }); db.collection('comments').orderBy('timestamp','desc') .onSnapshot(snapshot => { commentsContainer.innerHTML = ''; snapshot.forEach(doc => displayComment(doc)); }); </script>

📍 Nossa Localização

<iframe src="https://www.google.com/maps/embed?pb=!1m14!1m8!1m3!1d14647.046199554437!2d-46.429164!3d-23.396842000000003!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x94ce89775ac07325%3A0xc5be9d8c8fb26042!2sAv.%20Domenico%20Perella%2C%2062%20-%20Mato%20das%20Cobras%2C%20Guarulhos%20-%20SP%2C%2007161-401!5e0!3m2!1spt-BR!2sbr!4v1758382578760!5m2!1spt-BR!2sbr" width="100%" height="400" style="border:0; border-radius: 12px;" allowfullscreen loading="lazy"> </iframe>

Transforme sua ideia em um site profissional!

Olá! Sou Herbert Lima, desenvolvedor web especializado em front-end e back-end. Crio sites modernos, responsivos e landing pages que conectam sua marca ao seu público. Com HTML, CSS, JavaScript, React, Node.js, Git e MySQL, transformo suas ideias em experiências digitais incríveis.

HTML5 HTML5
CSS3 CSS3
JS JavaScript
React React
Node.js Node.js
HTML & CSS
JavaScript Moderno
React Avançado
Front-end
Fale comigo agora

© 2025 - Herbert Lima | Todos os direitos reservados

Logo
<script> window.addEventListener('load', () => { // Mantém a splash por 2,5 segundos antes de desaparecer setTimeout(() => { const splash = document.getElementById('splash'); splash.classList.add('splash-hide'); // adiciona a animação de saída // Remove do DOM após a animação setTimeout(() => splash.style.display = 'none', 7000); }, 7000); // tempo em ms que a splash permanece }); </script>
Suporte
<script> const dmBtn = document.getElementById('dmToggle');

// Carrega preferência salva if (localStorage.getItem('theme') === 'dark') { document.body.classList.add('dark'); }

dmBtn.addEventListener('click', () => { document.body.classList.toggle('dark'); const isDark = document.body.classList.contains('dark'); localStorage.setItem('theme', isDark ? 'dark' : 'light'); }); </script>

<style> header h3{ margin-top: 35px; font-size: xx-large; } /* Animação suave no botão */ #landing a:hover { background:#0056b3; color:#fff; transform: scale(1.05); } /* ====== COMENTÁRIOS ====== */ #comments { background: #eafa9b; padding: 50px 20px; margin-top: 10px; border-radius: 55px; } #comment-form { display: flex; flex-direction: column; gap: 10px; max-width: 600px; margin: 0 auto 30px; } #comment-form input, #comment-form textarea { padding: 10px; border-radius: 10px; border: 1px solid #ccc; width: 100%; } #comment-form button { padding: 10px; border: none; background-color: #007bff; color: white; border-radius: 10px; cursor: pointer; } #comments-container { display: flex; flex-direction: column; gap: 15px; max-width: 800px; margin: 0 auto; } .comment-card { background: #05f7fb; padding: 25px; border-radius: 10px; box-shadow: 0 4px 15px rgba(0,0,0,0.1); } .comment-card p { font-style: italic; color: #555; margin-bottom: 10px; } .comment-card h4 { color: #007bff; font-size: 0.9rem; margin: 0; } body { margin: 0; font-family: Arial, sans-serif; overflow-x: hidden; } /* Conteúdo do site */ #main-content { padding: 20px; } /* Splash screen sobre o site */ #splash { position: fixed; top: 0; left: 0; width: 100%; height: 100%; background-image: url("https://i.postimg.cc/7PsTSq2Q/vista-superior-do-hacker-irreconhecivel-realizando-ataque-cibernetico-a-noite-1098-18706.avif"); /* cor do fundo da splash */ display: flex; justify-content: center; align-items: center; z-index: 9999; transition: transform 6s ease, opacity 1s ease; } /* Logo do branding */ #splash img { max-width: 490px; width: 50%; animation: zoomFade 6s ease forwards; } /* Animação de zoom e fade */ @keyframes zoomFade { 0% { transform: scale(3); opacity: 0; } 100% { transform: scale(1); opacity: 1; } } /* Splash desaparecendo com slide */ .splash-hide { opacity: 8; transform: translateY(-100%); } #contato { background-image: url('https://i.postimg.cc/6Q0GMSwg/vista-superior-do-hacker-irreconhecivel-realizando-ataque-cibernetico-a-noite-1098-18706.avif'); /* substitua pelo caminho da sua imagem */ background-size: cover; /* faz a imagem cobrir toda a seção */ background-position: center; /* centraliza a imagem */ background-repeat: no-repeat; /* evita repetição da imagem */ padding: 60px 20px; /* dá espaço interno */ color: rgb(5, 9, 246); /* muda a cor do texto para branco se a imagem for escura */ border-radius: 55px; /* opcional: cantos arredondados */ margin-top: 25px; } #contato form input, #contato form textarea, #contato form button { background-color: rgba(255, 255, 255, 0.8); /* fundo semitransparente para destacar */ border: none; border-radius: 8px; padding: 12px; margin-bottom: 12px; width: 100%; } #contato form button { background-color: #25D366; color: white; font-weight: bold; cursor: pointer; transition: 0.3s; } #contato form button:hover { background-color: #1ebe57; } /* Contêiner fixo para botões flutuantes */ .floating-buttons { position: fixed; right: 3px; bottom: 10px; display: flex; flex-direction: column; gap: 15px; /* espaço entre os botões */ z-index: 9999; } /* Botão Dark Mode */ .dm-toggle { width: 56px; height: 56px; border-radius: 50%; border: none; background: rgba(255,255,255,0.15); backdrop-filter: blur(6px); display: flex; align-items: center; justify-content: center; cursor: pointer; box-shadow: 0 8px 20px rgba(0,0,0,0.25); transition: transform 0.2s, background 0.3s; } .dm-toggle:hover { transform: translateY(-5px) scale(1.05); } .dm-toggle .icon-moon { width: 28px; height: 28px; border-radius: 50%; background: linear-gradient(to right, #f5f5f5 50%, #121212 50%); border: 2px solid #333; transition: all 0.3s; } body.dark .dm-toggle .icon-moon { background: linear-gradient(to right, #121212 50%, #f5f5f5 50%); border-color: #f5f5f5; } /* Botão Suporte WhatsApp */ #suporte-btn { background-color: #25D366; /* verde WhatsApp */ color: white; border: none; border-radius: 50px; padding: 12px 18px; font-weight: bold; display: flex; align-items: center; gap: 8px; cursor: pointer; box-shadow: 0 8px 20px rgba(0,0,0,0.25); transition: transform 0.2s, box-shadow 0.2s; } #suporte-btn:hover { transform: translateY(-5px) scale(1.05); box-shadow: 0 12px 35px rgba(2, 48, 252, 0.35); } #suporte-btn svg { width: 24px; height: 24px; fill: white; } :root { --bg: #f5f5f5; --text: #333; --card: #fff; --header: linear-gradient(135deg, #111, #333); --footer: #111; } body.dark { --bg: #121212; --text: #fc0101; --card: #1e1e1e; --header: linear-gradient(135deg, #000, #222); --footer: #000; } * { margin: 0; padding: 0; box-sizing: border-box; font-family: Arial, sans-serif; transition: background 0.3s, color 0.3s; } /fundo tela/ body { background-color: #bbffea; color: var(--text); line-height: 1.6; } /* ====== HEADER ====== */ header { background-image: url("https://i.postimg.cc/76qH5WyP/imagem-de-close-up-de-programador-trabalhando-em-sua-mesa-no-escritorio-1098-18707.avif"); color: #fff; text-align: center; padding: 50px 20px; position: relative; } header img { width: 120px; height: 120px; border-radius: 50%; border: 3px solid #00bcd4; margin-bottom: 15px; } header h1 { font-size: 2.5rem; } .btn-cv, .btn-darkmode { display: inline-block; margin-top: 15px; padding: 10px 20px; background: #00bcd4; color: #fff; font-weight: bold; border-radius: 8px; text-decoration: none; transition: 0.3s; cursor: pointer; border: none; } .btn-cv:hover, .btn-darkmode:hover { background: #0097a7; } .btn-darkmode { position: absolute; top: 20px; right: 20px; } nav { margin-top: 20px; } nav a { color: #fff; margin: 0 12px; text-decoration: none; font-weight: bold; transition: 0.3s; } nav a:hover { color: #05f268; } /* ====== SEÇÕES ====== */ section { padding: 50px 20px; max-width: 1100px; margin: auto; opacity: 0; transform: translateY(30px); animation: fadeIn 1s forwards; } section:nth-of-type(1) { animation-delay: 0.2s; } section:nth-of-type(2) { animation-delay: 0.4s; } section:nth-of-type(3) { animation-delay: 0.6s; } section:nth-of-type(4) { animation-delay: 0.8s; } section:nth-of-type(5) { animation-delay: 1s; } section:nth-of-type(6) { animation-delay: 1.2s; } section:nth-of-type(7) { animation-delay: 1.4s; } @keyframes fadeIn { to { opacity: 1; transform: translateY(0); } } h2 { text-align: center; margin-bottom: 20px; font-size: 1.8rem; color: rgb(3, 20, 245); } .sobre { text-align: center; font-size: 1.1rem; } .skills, .projetos, .servicos { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 20px; } .card { background: var(--card); padding: 20px; border-radius: 55px; box-shadow: 0 2px 6px rgba(0,0,0,0.1); text-align: center; transition: transform 0.3s, background 0.3s; } .card:hover { transform: scale(1.05); } .card img { max-width: 60px; margin-bottom: 10px; } .projeto img { max-width: 100%; border-radius: 8px; } #certificados { padding: 50px 20px; margin-top: 8PX; background-color: #f0f9ac; text-align: center; border-radius: 35PX; } .certificados-container { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 20px; max-width: 1200px; margin: 0 auto; } .cert-card { background: #65e7f3; padding: 20px; border-radius: 15px; box-shadow: 0 8px 20px rgba(0,0,0,0.1); transition: transform 0.3s, box-shadow 0.3s; cursor: default; } .cert-card:hover { transform: translateY(-10px); box-shadow: 0 12px 25px rgba(0,0,0,0.15); } .cert-card h3 { color: #080808; font-size: 1rem; margin: 0; } form { display: flex; flex-direction: column; max-width: 500px; margin: auto; } form input, form textarea, form button { margin: 10px 0; padding: 12px; border: 1px solid #ccc; border-radius: 8px; background: var(--card); color: var(--text); } form button { background: #00bcd4; color: #fff; font-weight: bold; border: none; cursor: pointer; } form button:hover { background: #0097a7; } /* ====== RODAPÉ ====== */ footer { background: var(--footer); color: #fff; text-align: center; padding: 20px; margin-top: 40px; border-radius: 350px; } .social { margin: 15px 0; } .social a { display: inline-block; margin: 0 10px; } .social img { width: 30px; transition: 0.3s; } .social img:hover { transform: scale(1.2); } #mapa { text-align: center; margin: 40px auto; max-width: 900px; /* largura máxima */ padding: 20px; border-radius: 55px; } #mapa h2 { margin-bottom: 15px; font-size: 24px; color: #28a745; } #skills { padding: 50px 20px; background-image: url("https://i.postimg.cc/76qH5WyP/imagem-de-close-up-de-programador-trabalhando-em-sua-mesa-no-escritorio-1098-18707.avif"); text-align: center; } #skills h2 { font-size: 2rem; margin-bottom: 40px; color: #fcfffa; } .skills-container { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 20px; } .skill-card { padding: 20px; border-radius: 150px; box-shadow: 0 8px 20px rgba(255, 254, 254, 0.945); transition: transform 0.3s, box-shadow 0.3s; } .skill-card:hover { transform: translateY(-10px); box-shadow: 0 12px 25px rgba(249, 247, 247, 0.863); } .skill-card img { width: 60px; height: 60px; margin-bottom: 15px; } .skill-card h3 { margin-bottom: 10px; color: #fcfcfc; } .skill-card p { font-size: 0.95rem; color: #fafefb; } </style>

Releases

No releases published

Packages

No packages published

Languages