PLANTILLA FUENTE DE TITULOS
Esta plantilla fue hecha por mi, mayormente para cambiar titulos
<style>
/* Cargar la fuente desde el enlace de GitHub */
@font-face {
font-family: 'Gothika';
src: url('https://raw.githubusercontent.com/wilterfoll/gothikaFont/main/gothika.ttf') format('truetype');
font-weight: normal;
font-style: normal;
}
/* Aplicar la fuente al h1 con la clase .title */
h1.title {
font-family: 'Gothika', sans-serif !important; /* Usa la fuente Gothika */
color: white; /* Cambia el color del texto */
font-size: 90px; /* Ajusta el tamaño de la fuente */
text-align: center; /* Centra el texto */
background: transparent; /* Fondo transparente */
border-width: 0px; /* Sin bordes */
}
</style>
<style>
/* Cambiar el color de los enlaces a blanco */
.widget-content a {
color: white !important; /* Cambiar el color a blanco */
text-decoration: none; /* Eliminar el subrayado */
}
/* Cambiar el color de los enlaces cuando se pasa el ratón (hover) */
.widget-content a:hover {
color: #f0f0f0; /* Color blanco ligeramente gris para hover */
text-decoration: underline; /* Agregar subrayado al pasar el ratón */
}
</style>