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