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