Use on the webTotal Use [ 5098 ] times
1Add to the head section of web page.
<link href="https://db.onlinewebfonts.com/c/9756e122692f46471a7ec212a1fd847c?family=Flipside+Regular" rel="stylesheet">
orUsing @import CSS directive, put the following line in add to your css file.(http | https)
@import url(https://db.onlinewebfonts.com/c/9756e122692f46471a7ec212a1fd847c?family=Flipside+Regular);
orUse font-face declaration Fonts.(http | https)
@font-face {
font-family: "Flipside Regular";
src: url("https://db.onlinewebfonts.com/t/9756e122692f46471a7ec212a1fd847c.eot");
src: url("https://db.onlinewebfonts.com/t/9756e122692f46471a7ec212a1fd847c.eot?#iefix")format("embedded-opentype"),
url("https://db.onlinewebfonts.com/t/9756e122692f46471a7ec212a1fd847c.woff2")format("woff2"),
url("https://db.onlinewebfonts.com/t/9756e122692f46471a7ec212a1fd847c.woff")format("woff"),
url("https://db.onlinewebfonts.com/t/9756e122692f46471a7ec212a1fd847c.ttf")format("truetype"),
url("https://db.onlinewebfonts.com/t/9756e122692f46471a7ec212a1fd847c.svg#Flipside Regular")format("svg");
}
2CSS rules to specify fonts
font-family: "Flipside Regular";