Saltar al contenido

cómo incluir fuentes ttf y otf en un ejemplo de código html

Esta es la respuesta más completa que te podemos brindar, pero primero estúdiala detenidamente y analiza si se adapta a tu trabajo.

Ejemplo: agregue la fuente ttf a csss y úsela html

Step 1: Download the font
Find the custom font you want to use on your website, and then download the TrueType Font file format (.ttf). You can also download the OpenType Font format (.otf)

Step 2: Create a WebFont Kit for cross-browsing
Upload your .ttf or .otf file to the Webfont Generator and then download your Web Font Kit.

Step 3: Upload the font files to your website
Using your FTP or file manager, upload all the font files found within your Web Font Kit to your website.* Typically this kit will include multiple file extensions such as (.eot),(.woff),(.woff2),(.ttf) and (.svg).

Your kit will also include a Cascading Style Sheet (.css) that you will need to update and upload in step 4.

*This step will vary greatly based upon how your website is built and hosted.

Step 4: Update and upload your CSS file
Open the CSS file in a text editor such as Textedit, NotePad or Sublime.

Replace the existing source URL with the new URL you created by uploading each file.

By default, the source URL location is set within the downloaded Web Font Kit. It needs to be replaced by the location on your server.

Here’s a quick example:

Before update:@font-facefont-family:"CustomFont";src:url("CustomFont.eot");src:url("CustomFont.woff")format("woff"),url("CustomFont.otf")format("opentype"),url("CustomFont.svg#filename")format("svg");

 

After update:@font-facefont-family:"CustomFont";src:url("https://yoursite.com/css/fonts/CustomFont.eot");src:url("https://yoursite.com/css/fonts/CustomFont.woff")format("woff"),url("https://yoursite.com/css/fonts/CustomFont.otf")format("opentype"),url("https://yoursite.com/css/fonts/CustomFont.svg#filename")format("svg");Once you’ve updated the CSS file, you need to upload it to your website (server).

Step 5: Use the custom font in your CSS declarations
Now that your Cascading Style Sheet and font files are uploaded to your server, you can start using your custom font in your CSS declarations to help improve the look of the HTML.

This can be done in multiple ways, including adding site-wide declarations to your main CSS file.

Here is a quick example:

h1{font-family:'CustomFont', Arial, sans-serif;font-weight:normal;font-style:normal;


// https://www.fontsquirrel.com/tools/webfont-generator

Comentarios y puntuaciones de la guía

Recuerda que te permitimos decir si diste con el arreglo.

¡Haz clic para puntuar esta entrada!
(Votos: 0 Promedio: 0)



Utiliza Nuestro Buscador

Deja una respuesta

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