From 2a6d870470c55f16b6a8d61c98c9bdfbdce42d03 Mon Sep 17 00:00:00 2001 From: Anuj K Date: Thu, 21 Sep 2023 23:18:04 +0530 Subject: [PATCH] Font source fix in CSS file. --- style.css | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/style.css b/style.css index 0fd3680..21e6f73 100644 --- a/style.css +++ b/style.css @@ -1,5 +1,5 @@ @font-face { - font-family: 'montserratregular'; + font-family: 'Montserrat-Regular'; src: url('content/fonts/Montserrat-Regular.woff2') format('woff2'), url('content/fonts/Montserrat-Regular.woff') format('woff');' font-weight: normal; @@ -7,7 +7,7 @@ } @font-face { - font-family: 'montserratblack'; + font-family: 'Montserrat-Black'; src: url('content/fonts/Montserrat-Black.woff2') format('woff2'), url('content/fonts/Montserrat-Black.woff') format('woff'); font-weight: normal; @@ -23,7 +23,7 @@ body { margin: 0; padding: 0; background: #25252d; - font-family: 'montserratregular'; + font-family: 'Montserrat-Regular'; color: #b4b4bb; display: flex; min-height: 100vh; @@ -31,7 +31,7 @@ body { } h1, h2 { - font-family: 'montserratblack'; + font-family: 'Montserrat-Black'; font-size:clamp(2.813rem,2.813vw + 2.25rem,5.625rem); margin: 0; padding: 0; @@ -44,7 +44,7 @@ h1, h2 { } h3 { - font-family: 'montserratblack'; + font-family: 'Montserrat-Black'; font-size:clamp(0.813rem,0.813vw + 0.25rem,3.625rem); }