codigo faq

Código HTML para Schema FAQ

Dejo por aquí algo bastante útil: el código en HTML para crear contenido con el Schema de FAQ. Siempre recomiendo implementarlo con cuidado, porque es posible que te baje el CTR de tu URL si el usuario directamente encuentra la respuesta en las SERPs. Lo mejor es implementarlo y probar durante una semana que resultados está dando.

<div itemscope="" itemtype="https://schema.org/FAQPage" id="faqschema">
	<div itemscope="" itemprop="mainEntity" itemtype="https://schema.org/Question" style="margin-bottom: 10px;border-style: dotted;border-width: 2px;border-color: #c6c6c6;" id="preguntauno">
	    <div style="color:#333;background-color: #f1f1f1;padding:20px;font-size:1rem;font-weight: 600;">
	        <div>
	            <div itemprop="name">
	                ✅ Pregunta 1
	            </div>
	        </div>
	    </div>
	    <div itemscope="" itemprop="acceptedAnswer" itemtype="https://schema.org/Answer" style="padding:15px;line-height: 1.7;font-size:1rem;" id="respuestauno">
	        <div itemprop="text">
	        	Respuesta 1
	        </div>
	    </div>
	</div>

	<div itemscope="" itemprop="mainEntity" itemtype="https://schema.org/Question" style="margin-bottom: 10px;border-style: dotted;border-width: 2px;border-color: #c6c6c6;" id="preguntados">
	    <div style="color:#333;background-color: #f1f1f1;padding:20px;font-size:1rem;font-weight: 600;">
	        <div>
	            <div itemprop="name">
	                ☝ Pregunta 2
	            </div>
	        </div>
	    </div>
	    <div itemscope="" itemprop="acceptedAnswer" itemtype="https://schema.org/Answer" style="padding:15px;line-height: 1.7;font-size:1rem;" id="respuestados">
	        <div itemprop="text">
	            Respuesta 2
	        </div>
	    </div>
	</div>

	<div itemscope="" itemprop="mainEntity" itemtype="https://schema.org/Question" style="margin-bottom: 10px;border-style: dotted;border-width: 2px;border-color: #c6c6c6;" id="preguntatres">
	    <div style="color:#333;background-color: #f1f1f1;padding:20px;font-size:1rem;font-weight: 600;">
	        <div>
	            <div itemprop="name">
	                ⭐ Pregunta 3
	            </div>
	        </div>
	    </div>
	    <div itemscope="" itemprop="acceptedAnswer" itemtype="https://schema.org/Answer" style="padding:15px;line-height: 1.7;font-size:1rem;" id="respuestatres">
	        <div itemprop="text">
	        	Respuesta 3
	        </div>
	    </div>
	</div>

	<div itemscope="" itemprop="mainEntity" itemtype="https://schema.org/Question" style="margin-bottom: 10px;border-style: dotted;border-width: 2px;border-color: #c6c6c6;" id="preguntacuatro">
	    <div style="color:#333;background-color: #f1f1f1;padding:20px;font-size:1rem;font-weight: 600;">
	        <div>
	            <div itemprop="name">
	                ⏫ Pregunta 4
	            </div>
	        </div>
	    </div>
	    <div itemscope="" itemprop="acceptedAnswer" itemtype="https://schema.org/Answer" style="padding:15px;line-height: 1.7;font-size:1rem;" id="respuestacuatro">
	        <div itemprop="text">
	        	Respuesta 4
	        </div>
	    </div>
	</div>
</div>

Comentarios

Deja una respuesta

Tu dirección de correo electrónico no será publicada. Los campos obligatorios están marcados con *