Official Documentation
Welcome to the complete documentation of Aurum Template Pack. This guide was designed to take you from zero to a published site, covering everything from basic editing to advanced integrations.
Key Features
- Responsive Design: Fully adaptable to any device (Mobile, Tablet, Desktop).
- Clean Code: W3C Validated HTML5 & CSS3.
- Easy Customization: Commented code and intuitive structure.
- Fast Loading: Optimized assets and minimal scripts.
- SEO Friendly: Semantic tags and meta descriptions ready.
- Font Awesome Icons: Thousands of vector icons included.
- Google Fonts: Modern typography.
- Cross-Browser Compatibility: Works on Chrome, Firefox, Safari, Edge, and Opera.
- No Dependencies: Pure HTML/CSS/JS (no heavy framework installation required).
Folder Structure
The package is organized into strategic categories for different client profiles:
/Templates/Classic-Designs: Light, direct, and functional models. Ideal for quick sales and low-budget clients./Templates/Modern-Designs: Sophisticated design, smooth animations, and complete sections. High perceived value./Templates/Premium-Designs: Our most exclusive releases (e.g., Sky Tower). High-end design./Templates/Landing-Pages: Conversion-focused One Page templates. Perfect for paid traffic./Templates/Bio-Links: Bio pages for Instagram (professional Linktree alternative).
Installation
Since these are static HTML templates, there is no complex "installation" (like WordPress). They work directly in the browser.
Requirements
- A code editor (We recommend VS Code).
- A modern browser (Chrome, Edge, Firefox).
How to Start a Project
- Unzip the pack ZIP file.
- Open VS Code.
- Go to File > Open Folder and select the specific template folder you want to use.
- Open the
index.htmlfile to start editing. - To view, right-click the HTML file and choose "Open with Live Server" (if you have the extension) or just double-click the file in the folder.
Editing Text
All text content is within the index.html file. Search for the text you want to change.
<!-- Example: Changing the Main Title -->
<h1>Specialized Law Firm</h1>
<!-- Change to: -->
<h1>Dr. James Smith - Civil Law</h1>
<...> and closing </...> tags. edit only the white text between them.
Changing Images
Images are located in the images/ folder within each project.
Method 1: File Replacement (Easiest)
- Check the original image name in the folder (e.g.,
hero-bg.jpg). - Take your client's photo and rename it to the same name (
hero-bg.jpg). - Replace the file in the folder. The site will update automatically.
Method 2: Code Change
If you prefer to use different names, change the src attribute in the img tag:
<img src="images/new-client-photo.jpg" alt="Client Photo">
Colors and Fonts
Most styles are in the css/style.css file. We use CSS variables (:root) at the top of the file to make global color swapping easy.
:root {
--primary-color: #d4af37; /* Main Color (Gold) */
--secondary-color: #111111; /* Secondary Color (Black) */
--text-color: #333333;
}
Simply change the Hex code (e.g., #d4af37) to your client's brand color. You can use the VS Code color picker by hovering over the color.
Icons (FontAwesome)
We use the FontAwesome 6 library for icons. To change an icon:
- Go to FontAwesome Icons.
- Search for the desired icon (e.g., "whatsapp", "instagram", "check").
- Copy the HTML code of the icon (e.g.,
<i class="fa-brands fa-whatsapp"></i>). - Paste it into your code replacing the old icon.
Contact Forms
By default, forms in the templates are visual only (HTML). To make them work without needing a backend (PHP/Node), we recommend services like Formspree.
Setting up with Formspree (Free)
- Create an account at formspree.io.
- Create a new form and copy the provided URL (Endpoint).
- In your HTML, edit the
<form>tag:
<form action="https://formspree.io/f/YOUR_CODE_HERE" method="POST">
<input type="text" name="name" placeholder="Your Name" required>
<input type="email" name="email" placeholder="Your Email" required>
<button type="submit">Send</button>
</form>
Now, when someone fills out the form, you will receive the data in your email.
Integrations (Analytics & Pixel)
To track visits and conversions, you must add tracking scripts inside the <head> tag.
Google Analytics 4 (GA4)
<!-- Paste right after the opening <head> tag -->
<script async src="https://www.googletagmanager.com/gtag/js?id=G-XXXXXXXXXX"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'G-XXXXXXXXXX');
</script>
Meta Pixel (Facebook Ads)
<!-- Meta Pixel Code -->
<script>
!function(f,b,e,v,n,t,s)
{if(f.fbq)return;n=f.fbq=function(){n.callMethod?
n.callMethod.apply(n,arguments):n.queue.push(arguments)};
if(!f._fbq)f._fbq=n;n.push=n;n.loaded=!0;n.version='2.0';
n.queue=[];t=b.createElement(e);t.async=!0;
t.src=v;s=b.getElementsByTagName(e)[0];
s.parentNode.insertBefore(t,s)}(window, document,'script',
'https://connect.facebook.net/en_US/fbevents.js');
fbq('init', 'YOUR_PIXEL_ID');
fbq('track', 'PageView');
</script>
<!-- End Meta Pixel Code -->
Performance
Fast sites sell more. Follow this checklist before publishing:
- ✅ Compress Images: Use TinyPNG or Squoosh.app. Large images are the main cause of slowness.
- ✅ Lazy Loading: Add
loading="lazy"to images below the fold (outside the initial screen). - ✅ Minify CSS/JS (Optional): Tools like CSSMinifier can reduce file size.
Hosting & Domain
To get your site online, you need:
- Domain: The site address (e.g.,
www.client.com). Buy from Namecheap or GoDaddy. - Hosting: Where files are stored.
Recommended Options
- Hostgator / Hostinger: Traditional hosting (cPanel). Easy to use, corporate email support.
- Vercel / Netlify: Modern and free hosting for static sites (like these). Great performance, but requires slightly more technical knowledge (Git or Drag-and-Drop).
Upload via cPanel
Access the File Manager and upload all files from the template folder (index.html, css/, js/, images/) to the public_html folder.
SEO Checklist
Ensure the site is found on Google:
- ✅ Page Title: Edit the
<title>tag with the client's name and main keyword (e.g., "Dr. Smith - Labor Lawyer in NY"). - ✅ Meta Description: Edit the
<meta name="description">tag with an attractive summary. - ✅ H1, H2, H3 Tags: Use correct hierarchy. Only one H1 per page.
- ✅ Alt Text: Add descriptions to images (
alt="Law Firm Office"). - ✅ Favicon: Don't forget to change the browser tab icon (
favicon.jpgor.ico).
License
Please ensure you understand the terms before using the item for commercial projects.
Key Points (Summary)
- ✅ You can use this item in an end product for yourself or a client.
- ✅ You can modify the item as needed.
- ❌ You cannot resell or redistribute the item (e.g., as stock, in a tool, or template).
- ❌ You cannot claim intellectual property rights to the item.
Sources & Credits
We used the following open-source resources in this pack:
Fonts (Google Fonts)
- Typography: Google Fonts (Manrope, Poppins, Inter, Syncopate).
Icons
- FontAwesome 6: fontawesome.com (Free License).
Images (Demo Only)
Images shown in the demo are for display purposes only and are not included in the download package (placeholders are provided), or are from free stock sources:
Publishing Your Site (Deployment)
The easiest way to publish these HTML templates for free is using Netlify or Vercel.
Option 1: Netlify (Drag & Drop) - Recommended
- Go to Netlify Drop.
- Drag your project folder (the one containing the
index.html) directly onto the upload area. - Wait a few seconds, and your site will be online!
- You can then change the domain name in the "Site Settings".
Option 2: GitHub Pages
- Create a repository on GitHub.
- Upload your files.
- Go to Settings > Pages and select the
mainbranch.
Advanced Customization
Change Video Background
Some templates (like Sky Tower) use a video background. To change it:
- Look for the
<video>tag in the HTML. - Replace the
srcattribute with your new video file path. - Important: Keep videos short (10-15s) and small (under 5MB) for performance.
Google Maps
- Go to Google Maps and find your location.
- Click "Share" > "Embed a map".
- Copy the
<iframe>code. - Paste it into the contact section, replacing the existing
<iframe>.
Favicon
The icon that appears in the browser tab is linked in the <head>:
<link rel="shortcut icon" href="favicon.png" type="image/x-icon">
Simply replace the favicon.png (or .ico) file in your folder with your own logo.
Frequently Asked Questions (FAQ)
1. Can I use this on WordPress?
Not directly. These are HTML templates. To use on WordPress, you would need to convert the code into a WordPress theme (which requires advanced PHP knowledge). We recommend using HTML for institutional sites and Landing Pages for speed and security.
2. How do I configure the domain?
You must point your domain's DNS (at Namecheap or where you bought it) to your hosting nameservers. Check your hosting support for DNS addresses.
3. Do images have copyrights?
We use images from free stock banks (Unsplash, Pexels). However, we strongly recommend using your client's real photos to avoid any future issues and increase site credibility.
4. Is the site responsive (works on mobile)?
Yes! All templates in the Template Pack are 100% responsive and tested on various screen sizes.
Support
If you encounter any bugs or issues with the files, please contact us via our profile page on Envato Elements.
Note: According to Envato Elements policy, item support is not mandatory for authors, but we are happy to help fix critical bugs related to the template code.
Documentação Oficial
Bem-vindo à documentação completa do Aurum Template Pack. Este guia foi projetado para te levar do zero ao site publicado, cobrindo deste edições básicas até integrações avançadas.
Principais Recursos
- Design Responsivo: Totalmente adaptável a qualquer dispositivo (Celular, Tablet, Desktop).
- Código Limpo: HTML5 & CSS3 Validados pela W3C.
- Fácil Personalização: Código comentado e estrutura intuitiva.
- Carregamento Rápido: Assets otimizados e scripts mínimos.
- Amigável para SEO: Tags semânticas e meta descrições prontas.
- Ícones Font Awesome: Milhares de ícones vetoriais incluídos.
- Google Fonts: Tipografia moderna.
- Compatibilidade Cross-Browser: Funciona no Chrome, Firefox, Safari, Edge e Opera.
- Sem Dependências: HTML/CSS/JS Puro (sem instalação de frameworks pesados).
Estrutura de Pastas
O pacote está organizado em categorias estratégicas para diferentes perfis:
/Templates/Classic-Designs: Modelos leves, diretos e funcionais. Ideal para vendas rápidas e clientes com orçamento baixo./Templates/Modern-Designs: Design sofisticado, animações suaves e seções completas. Alto valor percebido./Templates/Premium-Designs: Nossos lançamentos mais exclusivos (ex: Sky Tower). Design de ponta./Templates/Landing-Pages: Templates One Page focados em conversão. Perfeitos para tráfego pago./Templates/Bio-Links: Páginas de Bio para Instagram (alternativa profissional ao Linktree).
Instalação
Como estes são templates HTML estáticos, não há "instalação" complexa (como no WordPress). Eles funcionam diretamente no navegador.
Requisitos
- Um editor de código (Recomendamos VS Code).
- Um navegador moderno (Chrome, Edge, Firefox).
Como Iniciar um Projeto
- Descompacte o arquivo ZIP do pack.
- Abra o VS Code.
- Vá em File > Open Folder e selecione a pasta do template específico que deseja usar.
- Abra o arquivo
index.htmlpara começar a editar. - Para visualizar, clique com o botão direito no arquivo HTML e escolha "Open with Live Server" (se tiver a extensão) ou dê um duplo clique no arquivo.
Editando Textos
Todo o conteúdo de texto está dentro do arquivo index.html. Pesquise pelo texto que deseja mudar.
Exemplo:
<!-- Exemplo: Alterando o Título Principal -->
<h1>Escritório de Advocacia</h1>
<!-- Mude para: -->
<h1>Dr. James Smith - Direito Civil</h1>
<...> e fechamento </...>. Edite apenas o texto branco entre elas.
Trocando Imagens
As imagens estão localizadas na pasta images/ dentro de cada projeto.
Método 1: Substituição de Arquivo (Mais Fácil)
- Verifique o nome original da imagem na pasta (ex:
hero-bg.jpg). - Pegue a foto do seu cliente e renomeie para o mesmo nome (
hero-bg.jpg). - Substitua o arquivo na pasta. O site atualizará automaticamente.
Método 2: Alteração no Código
Se preferir usar nomes diferentes, altere o atributo src na tag img:
<img src="images/nova-foto-cliente.jpg" alt="Foto do Cliente">
Cores e Fontes
A maioria dos estilos está no arquivo css/style.css. Usamos variáveis CSS (:root) no topo do arquivo para facilitar a troca global de cores.
:root {
--primary-color: #d4af37; /* Cor Principal (Dourado) */
--secondary-color: #111111; /* Cor Secundária (Preto) */
--text-color: #333333;
}
Basta alterar o código Hex (ex: #d4af37) para a cor da marca do seu cliente.
Ícones (FontAwesome)
Usamos a biblioteca FontAwesome 6 para ícones. Para mudar um ícone:
- Vá para FontAwesome Icons.
- Pesquise o ícone desejado (ex: "whatsapp", "instagram", "check").
- Copie o código HTML do ícone (ex:
<i class="fa-brands fa-whatsapp"></i>). - Cole no seu código substituindo o ícone antigo.
Formulários de Contato
Por padrão, os formulários são apenas visuais (HTML). Para fazê-los funcionar sem backend (PHP/Node), recomendamos o Formspree.
Configurando com Formspree (Grátis)
- Crie uma conta em formspree.io.
- Crie um novo formulário e copie a URL fornecida (Endpoint).
- No seu HTML, edite a tag
<form>:
<form action="https://formspree.io/f/SEU_CODIGO_AQUI" method="POST">
<input type="text" name="name" placeholder="Seu Nome" required>
<input type="email" name="email" placeholder="Seu Email" required>
<button type="submit">Enviar</button>
</form>
Integrações (Analytics & Pixel)
Para rastrear visitas e conversões, adicione os scripts dentro da tag <head>.
Google Analytics 4 (GA4)
<!-- Cole logo após a abertura da tag <head> -->
<script async src="https://www.googletagmanager.com/gtag/js?id=G-XXXXXXXXXX"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'G-XXXXXXXXXX');
</script>
Meta Pixel (Facebook Ads)
<!-- Meta Pixel Code -->
<script>
!function(f,b,e,v,n,t,s)
{if(f.fbq)return;n=f.fbq=function(){n.callMethod?
n.callMethod.apply(n,arguments):n.queue.push(arguments)};
if(!f._fbq)f._fbq=n;n.push=n;n.loaded=!0;n.version='2.0';
n.queue=[];t=b.createElement(e);t.async=!0;
t.src=v;s=b.getElementsByTagName(e)[0];
s.parentNode.insertBefore(t,s)}(window, document,'script',
'https://connect.facebook.net/en_US/fbevents.js');
fbq('init', 'SEU_PIXEL_ID');
fbq('track', 'PageView');
</script>
<!-- End Meta Pixel Code -->
Performance
Sites rápidos vendem mais. Siga este checklist antes de publicar:
- ✅ Comprimir Imagens: Use TinyPNG ou Squoosh.app. Imagens grandes causam lentidão.
- ✅ Lazy Loading: Adicione
loading="lazy"em imagens abaixo da dobra. - ✅ Minificar CSS/JS (Opcional): Ferramentas como CSSMinifier reduzem o tamanho dos arquivos.
Hospedagem e Domínio
Para colocar o site online, você precisa de:
- Domínio: O endereço do site (ex:
www.cliente.com.br). - Hospedagem: Onde os arquivos ficam guardados.
Opções Recomendadas
- Hostgator / Hostinger: Hospedagem tradicional (cPanel). Fácil uso e e-mail corporativo.
- Vercel / Netlify: Moderna e gratuita para sites estáticos. Ótima performance, requer um pouco mais de conhecimento técnico.
Checklist SEO
Garanta que o site seja encontrado no Google:
- ✅ Título da Página: Edite a tag
<title>com o nome do cliente e palavra-chave. - ✅ Meta Description: Edite a tag
<meta name="description">. - ✅ Tags H1, H2, H3: Hierarquia correta. Apenas um H1 por página.
- ✅ Alt Text: Adicione descrições nas imagens (
alt="Escritório"). - ✅ Favicon: Não esqueça de trocar o ícone da aba do navegador.
Publicando o Site (Deploy)
A maneira mais fácil e gratuita de colocar seu site no ar é usando o Netlify ou Vercel.
Opção 1: Netlify (Arrastar e Soltar) - Recomendado
- Acesse Netlify Drop.
- Arraste a pasta do seu projeto (aquela que contém o
index.html) para a área de upload. - Aguarde alguns segundos e seu site estará online!
- Você pode alterar o nome do site em "Site Settings".
Opção 2: GitHub Pages
- Crie um repositório no GitHub.
- Suba seus arquivos.
- Vá em Settings > Pages e selecione a branch
main.
Personalizações Avançadas
Vídeo de Fundo
Alguns templates (como o Sky Tower) usam vídeo na capa. Para trocar:
- Localize a tag
<video>no HTML. - Troque o link no atributo
srcpelo caminho do seu novo vídeo. - Atenção: Use vídeos curtos (10s) e leves (max 5MB) para não travar o site do cliente.
Google Maps
- Vá no Google Maps e busque o endereço do cliente.
- Clique em "Compartilhar" > "Incorporar um mapa".
- Copie o código
<iframe>. - Cole na seção de contato do HTML, substituindo o iframe existente.
Favicon (Ícone da Aba)
O ícone que aparece na aba é linkado no <head>:
<link rel="shortcut icon" href="favicon.png" type="image/x-icon">
Basta substituir o arquivo favicon.png (ou .ico) na pasta.
Licença
Por favor, certifique-se de entender os termos antes de usar o item em projetos comerciais.
Pontos Chave (Resumo)
- ✅ Você pode usar este item em um produto final para você ou um cliente.
- ✅ Você pode modificar o item conforme necessário.
- ❌ Você não pode revender ou redistribuir o item (ex: como stock, em uma ferramenta ou template).
- ❌ Você não pode reivindicar direitos de propriedade intelectual sobre o item.
Fontes e Créditos
Utilizamos os seguintes recursos open-source neste pacote:
Fontes (Google Fonts)
- Tipografia: Google Fonts (Manrope, Poppins, Inter, Syncopate).
Ícones
- FontAwesome 6: fontawesome.com (Licença Gratuita).
Imagens (Apenas Demo)
As imagens mostradas na demonstração são apenas para fins de exibição e não estão incluídas no pacote de download (são fornecidos placeholders) ou são de bancos gratuitos:
Perguntas Frequentes (FAQ)
1. Posso usar no WordPress?
Não diretamente. Estes são templates HTML. Para usar no WordPress, você precisaria converter o código para um tema.
2. Como configuro o domínio?
Você deve apontar o DNS do seu domínio para os servidores da sua hospedagem. Consulte o suporte da sua hospedagem.
3. As imagens têm direitos autorais?
Usamos imagens de bancos gratuitos. Porém, recomendamos fortemente usar fotos reais do cliente.
4. O site é responsivo?
Sim! Todos os templates são 100% responsivos e testados.
Suporte
Se você encontrar bugs ou problemas com os arquivos, entre em contato conosco através da nossa página de perfil no Envato Elements.
Nota: De acordo com a política do Envato Elements, o suporte ao item não é obrigatório para autores, mas ficamos felizes em ajudar a corrigir bugs críticos relacionados ao código do template.