0
私はここでカスタムフォントが
ファイル_Layout.cshtml経由してカスタムフォントをオンにしようとしているコード:
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>@ViewBag.Title - My ASP.NET Application</title>
<style type="text/css">
@@font-face {
font-family: "San Francisco";
font-weight: 400;
src: url("https://applesocial.s3.amazonaws.com/assets/styles/fonts/sanfrancisco/sanfranciscodisplay-regular-webfont.woff");
}
.Text {
font-family: "San Francisco";
}
</style>
@Styles.Render("~/Content/css")
@Scripts.Render("~/bundles/modernizr")
しかし、私のフォントはまだHelvetica.Iは、任意のを持っていないですデベロッパーコンソールの間違い
私の問題はどこですか?
ありがとうございました!