Answers for "fonts cdn"

13

add google font

CSS
@import url(https://fonts.googleapis.com/css?family=Roboto);

HTML
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Roboto"/>

body{
  font-family: "Roboto";
}
Posted by: Guest on September-30-2020
7

fontaweseom cdn

<link rel="stylesheet" href="https://pro.fontawesome.com/releases/v5.10.0/css/all.css" integrity="sha384-AYmEC3Yw5cVb3ZcuHtOA93w35dYTsvhLPVnYs9eStHfGJvOvKxVfELGroGkvsg+p" crossorigin="anonymous"/>
Posted by: Guest on May-17-2020
5

google fonts css

Check out the font names and change 'finger paint' to another font name to how different google font appears on webpage.
<!DOCTYPE html>
<html>
<head>
<link href='https://fonts.googleapis.com/css?family=Finger Paint' rel='stylesheet'>
<style>
body {
    font-family: 'Finger Paint';font-size: 22px;
}
</style>
</head>
<body>

<h1>Finger Paint</h1>
<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit.</p>
<p>123456790</p>
<p>ABCDEFGHIJKLMNOPQRSTUVWXYZ</p>
<p>abcdefghijklmnopqrstuvwxyz</p>

</body>
</html>
Posted by: Guest on April-21-2020
1

google font import

<!-- To import google font add this to the head of your HTML then you can use use the imported font family in your CSS file -->

<link rel="preconnect" href="https://fonts.gstatic.com">
<link href="https://fonts.googleapis.com/css2?family=Open+Sans&display=swap" rel="stylesheet">
Posted by: Guest on December-15-2020
0

allfont cdn

<link href="https://allfont.net/allfont.css?fonts=sansation-regular" rel="stylesheet" type="text/css" />
Posted by: Guest on May-28-2021

Browse Popular Code Answers by Language