Skip to content

Commit f79da2e

Browse files
committed
Remove custom font, simplify readme
1 parent 3756e7b commit f79da2e

File tree

5 files changed

+6
-26
lines changed

5 files changed

+6
-26
lines changed

README.md

+5-8
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,8 @@
1-
# Personal Portfolio Website
1+
# Personal Website
22

3-
This project started freshman year of high school, shortly after I created my very first website. Ever since, I've updated and improved it.
3+
A space to share personal projects and interests.
44

5-
### Credits
5+
## Credits
66

7-
- [Space Grotesk](https://floriankarsten.github.io/space-grotesk/) font (also available on [Google Fonts](https://fonts.google.com/specimen/Space+Grotesk))
8-
- [minal.ml](https://minar.ml/) and his source code available [here](https://github.com/m-i-n-a-r/sparky-portfolio)
9-
- [normalize.css](https://github.com/necolas/normalize.css) for a few tips on CSS resets
10-
- [Front-End Checklist](https://github.com/thedaviddias/Front-End-Checklist) for helpful tips on website best practices
11-
- [Feather Icons](https://feathericons.com/) for beautiful svg icons
7+
- [MDN Web Docs](https://developer.mozilla.org/) - great web documentation
8+
- [Feather Icons](https://feathericons.com/) - open source SVG icons

assets/css/style.css

+1-11
Original file line numberDiff line numberDiff line change
@@ -30,16 +30,6 @@
3030
}
3131
}
3232

33-
@font-face {
34-
font-family: "Space Grotesk";
35-
src: url("../fonts/SpaceGrotesk[wght].woff2") format("woff2"),
36-
url("../fonts/SpaceGrotesk[wght].ttf") format("truetype");
37-
font-weight: 300 700;
38-
font-style: normal;
39-
font-stretch: normal;
40-
font-display: swap;
41-
}
42-
4333
html {
4434
line-height: 1.15;
4535
scroll-behavior: smooth;
@@ -51,7 +41,7 @@ body {
5141
margin: 0;
5242
background-color: var(--clr-bkgd);
5343
color: var(--clr-text);
54-
font-family: "Space Grotesk", sans-serif, Arial;
44+
font-family: sans-serif, Arial;
5545
font-weight: normal;
5646
font-size: clamp(1rem, 1.2vw, 1.1em);
5747
text-align: center;

assets/fonts/SpaceGrotesk[wght].ttf

-133 KB
Binary file not shown.

assets/fonts/SpaceGrotesk[wght].woff2

-48.1 KB
Binary file not shown.

index.html

-7
Original file line numberDiff line numberDiff line change
@@ -7,13 +7,6 @@
77
<title>Nataniel Farzan</title>
88
<meta name="description" content="My personal portfolio website." />
99
<link rel="icon" type="image/png" href="img/nf.png" />
10-
<link
11-
rel="preload"
12-
href="assets/fonts/SpaceGrotesk[wght].woff2"
13-
as="font"
14-
type="font/woff2"
15-
crossorigin
16-
/>
1710
<link rel="stylesheet" type="text/css" href="assets/css/style.css" />
1811
</head>
1912

0 commit comments

Comments
 (0)