Use on the webTotal Use [ 3652 ] times
1Add to the head section of web page.
<link href="https://db.onlinewebfonts.com/c/da9b8a348c7624aae62cc5cd9fccb54c?family=Speakeasy+Menu+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/da9b8a348c7624aae62cc5cd9fccb54c?family=Speakeasy+Menu+Regular);
orUse font-face declaration Fonts.(http | https)
@font-face {
font-family: "Speakeasy Menu Regular";
src: url("https://db.onlinewebfonts.com/t/da9b8a348c7624aae62cc5cd9fccb54c.eot");
src: url("https://db.onlinewebfonts.com/t/da9b8a348c7624aae62cc5cd9fccb54c.eot?#iefix")format("embedded-opentype"),
url("https://db.onlinewebfonts.com/t/da9b8a348c7624aae62cc5cd9fccb54c.woff2")format("woff2"),
url("https://db.onlinewebfonts.com/t/da9b8a348c7624aae62cc5cd9fccb54c.woff")format("woff"),
url("https://db.onlinewebfonts.com/t/da9b8a348c7624aae62cc5cd9fccb54c.ttf")format("truetype"),
url("https://db.onlinewebfonts.com/t/da9b8a348c7624aae62cc5cd9fccb54c.svg#Speakeasy Menu Regular")format("svg");
}
2CSS rules to specify fonts
font-family: "Speakeasy Menu Regular";