Archived
Private
Public Access
1
0

Initial commit

This commit is contained in:
2022-09-04 12:45:01 +02:00
commit f4a01d6a69
11601 changed files with 4206660 additions and 0 deletions

View File

@@ -0,0 +1,32 @@
@font-face {
font-family: "Spectral";
src: url(spectral-regular.ttf) format("truetype"),
url(spectral-regular.woff2) format("woff2");
font-style: normal;
font-weight: normal;
}
@font-face {
font-family: "Spectral";
src: url(spectral-bold.woff2) format("woff2");
font-style: normal;
font-weight: bold;
}
@font-face {
font-family: "Spectral";
src: url(spectral-italic.woff2) format("woff2");
font-style: italic;
font-weight: normal;
}
body {
font-size: 50px;
font-family: Spectral, sans-serif;
}
#bold {
font-weight: bold;
}
#italic {
font-style: italic;
}

View File

@@ -0,0 +1,15 @@
<!DOCTYPE html>
<html lang="de">
<head>
<meta charset="UTF-8">
<title>Schriftarten Lokal Einbinden</title>
<link rel="stylesheet" type="text/css" href="schriftartenLokalEinbinden.css">
</head>
<body>
Lorem Ipsum dolor sit amet.
<span id="bold">Lorem Ipsum dolor sit amet.</span>
<span id="italic">Lorem Ipsum dolor sit amet.</span>
</body>
</html>