cool html fonts

Solutions on MaxInterview for cool html fonts by the best coders in the world

showing results for - "cool html fonts"
Umar
09 May 2019
1<html>
2  <body>
3    <p>You can use google fonts. There are many fonts available.</p>
4    Select the font you want to use. Copy the code to use it.
5    You can import it with HTML or CSS
6    Paste it in your website.
7    Apply styles to it. Example: 
8
9    <link rel="preconnect" href="https://fonts.googleapis.com">
10	<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
11	<link href="https://fonts.googleapis.com/css2?family=STIX+Two+Math&display=swap" rel="stylesheet">
12    <style>
13      p {
14      font-family: 'STIX Two Math', serif;
15      }
16      /* import font in css */
17      
18      @import url('https://fonts.googleapis.com/css2?family=STIX+Two+Math&display=swap');
19    </style> 
20  </body>
21</html>