I have some questions on how to connect things.
Imagine that I have a โWebsiteโ folder where my files for this website are stored, as well as another font folder, and that the font folder has more folders for each font. My html and css file is located directly in the website folder. My font-face-css file is located in the / font folder.
I want to link my css file with my html file, so I do this: href = "stylesheet.css"
I also want to link my font-face-css file with my html file, so what should I put inside href = ""?
And I also want to link my fonts, which are in their own folder, which is also inside the font folder, where the css file for my font-face-css file is located, which I have to insert in src:
1 Website folder 1.1 Fonts folder (/fonts) 1.1.1 Font1 folder (/fonts/font1) 1.1.1.1 ttf file (/font/font1/font1.ttf) 1.1.1.2 svg file (/font/font1/font1.svg) 1.1.2 Font2 folder (/fonts/font2) 1.1.2.1 ttf file (/font/font1/font2.ttf) 1.1.2.2 svg file (/font/font1/font2.svg) 1.2 html file (file.html) 1.3 css file (file.css)
thanks
html css fonts
user4307777
source share