Skip to content

Commit 95f938a

Browse files
author
dhp94d
committed
feat: 폰트 추가
1 parent eba1e2d commit 95f938a

11 files changed

+33
-5
lines changed

css/fonts/Heebo-Black.ttf

55.8 KB
Binary file not shown.

css/fonts/Heebo-Bold.ttf

55.5 KB
Binary file not shown.

css/fonts/Heebo-ExtraBold.ttf

55.7 KB
Binary file not shown.

css/fonts/Heebo-ExtraLight.ttf

55 KB
Binary file not shown.

css/fonts/Heebo-Light.ttf

55 KB
Binary file not shown.

css/fonts/Heebo-Medium.ttf

55.2 KB
Binary file not shown.

css/fonts/Heebo-Regular.ttf

55 KB
Binary file not shown.

css/fonts/Heebo-SemiBold.ttf

55.5 KB
Binary file not shown.

css/fonts/Heebo-Thin.ttf

54.7 KB
Binary file not shown.

css/styles.css

+32-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,37 @@
1+
@font-face {
2+
font-family: 'Heebo';
3+
src: url('fonts/Heebo-Regular.ttf') format('truetype');
4+
font-display: swap;
5+
font-weight: 400;
6+
font-style: normal;
7+
}
8+
9+
@font-face {
10+
font-family: 'Heebo';
11+
src: url('fonts/Heebo-Light.ttf') format('truetype');
12+
font-display: swap;
13+
font-weight: 300;
14+
font-style: light;
15+
}
16+
17+
@font-face {
18+
font-family: 'Heebo';
19+
src: url('fonts/Heebo-Medium.ttf') format('truetype');
20+
font-display: swap;
21+
font-weight: 600;
22+
font-style: medium;
23+
}
24+
25+
@font-face {
26+
font-family: 'Heebo';
27+
src: url('fonts/Heebo-Bold.ttf') format('truetype');
28+
font-display: swap;
29+
font-weight: 700;
30+
font-style: bold;
31+
}
132
body {
233
margin: 0;
3-
font-family: 'Heebo';
34+
font-family: 'Heebo', sans-serif;
435
padding-top: 80px;
536
}
637

index.html

+1-4
Original file line numberDiff line numberDiff line change
@@ -9,10 +9,7 @@
99
content="Discover the latest VR headsets at Tech Shop. Browse through our collection of top-selling VR devices from leading brands like Apple, Playstation, and Oculus."
1010
/>
1111
<title>Home - Tech Shop</title>
12-
<link
13-
href="https://fonts.googleapis.com/css?family=Heebo:300,400,600,700&display=swap"
14-
rel="stylesheet"
15-
/>
12+
1613
<link rel="stylesheet" href="/css/styles.css" />
1714
<!-- <link rel="stylesheet" type="text/css" href="/css/slick.css"/> -->
1815

0 commit comments

Comments
 (0)