Created
January 16, 2024 20:50
-
-
Save willsantos/698fa14f850b6195959a738f31f4ee9b to your computer and use it in GitHub Desktop.
Formulario de briefing
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> | |
<head> | |
<title>Briefing para Desenvolvimento de Site</title> | |
</head> | |
<body> | |
<h1>Briefing para Desenvolvimento de Site</h1> | |
<form> | |
<h2>1. Informações da Empresa</h2> | |
<label for="companyName">Nome da empresa:</label><br> | |
<input type="text" id="companyName" name="companyName"><br> | |
<label for="companyDescription">Descrição da empresa:</label><br> | |
<textarea id="companyDescription" name="companyDescription"></textarea><br> | |
<label for="missionVisionValues">Missão, visão e valores:</label><br> | |
<textarea id="missionVisionValues" name="missionVisionValues"></textarea><br> | |
<label for="productsServices">Produtos/serviços oferecidos:</label><br> | |
<textarea id="productsServices" name="productsServices"></textarea><br> | |
<h2>2. Objetivos do Site</h2> | |
<label for="siteObjective">Qual é o principal objetivo do site?</label><br> | |
<input type="text" id="siteObjective" name="siteObjective"><br> | |
<label for="targetAudience">Quem é o público-alvo?</label><br> | |
<input type="text" id="targetAudience" name="targetAudience"><br> | |
<label for="visitorActions">Quais ações você deseja que os visitantes realizem no site?</label><br> | |
<input type="text" id="visitorActions" name="visitorActions"><br> | |
<h2>3. Design e Layout</h2> | |
<label for="colorStylePreferences">Há alguma preferência de cores ou estilo?</label><br> | |
<input type="text" id="colorStylePreferences" name="colorStylePreferences"><br> | |
<label for="referenceSites">Existem sites que você admira e gostaria de usar como referência?</label><br> | |
<input type="text" id="referenceSites" name="referenceSites"><br> | |
<h2>4. Conteúdo</h2> | |
<label for="contentType">Que tipo de conteúdo será incluído?</label><br> | |
<input type="text" id="contentType" name="contentType"><br> | |
<label for="contentResponsibility">Quem será responsável por fornecer e atualizar o conteúdo?</label><br> | |
<input type="text" id="contentResponsibility" name="contentResponsibility"><br> | |
<h2>5. Recursos Especiais</h2> | |
<label for="specialFeatures">Existem recursos especiais que você gostaria de incluir?</label><br> | |
<input type="text" id="specialFeatures" name="specialFeatures"><br> | |
<h2>6. Domínio e Hospedagem</h2> | |
<label for="domain">Você já possui um domínio para o site?</label><br> | |
<input type="text" id="domain" name="domain"><br> | |
<label for="hosting">Você já tem uma solução de hospedagem em mente ou precisa de recomendações?</label><br> | |
<input type="text" id="hosting" name="hosting"><br> | |
<h2>7. SEO e Marketing</h2> | |
<label for="keywords">Quais palavras-chave seu público-alvo pode usar para encontrar seus produtos/serviços?</label><br> | |
<input type="text" id="keywords" name="keywords"><br> | |
<label for="promotionPlan">Você tem um plano para promover o site após o lançamento?</label><br> | |
<input type="text" id="promotionPlan" name="promotionPlan"><br> | |
<h2>8. Manutenção</h2> | |
<label for="maintenance">Você tem alguém para ser o responsável pela atualização do site ou considera contratar os nossos serviços?</label><br> | |
<input type="text" id="maintenance" name="maintenance"><br> | |
<input type="submit" value="Enviar"> | |
</form> | |
</body> | |
</html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment