andrews/zenstesting/fonts.html

39 lines
872 B
HTML
Raw Normal View History

2023-01-30 18:17:12 +01:00
<!DOCTYPE html>
<html>
<head>
2023-02-03 20:23:56 +01:00
<title>Fonts</title>
<link href='https://fonts.googleapis.com/css?family=Alexandria' rel='stylesheet'>
2023-01-30 18:17:12 +01:00
<link href="https://fonts.cdnfonts.com/css/instagram-sans-2" rel="stylesheet">
2023-02-03 20:23:56 +01:00
<link href="https://fonts.cdnfonts.com/css/samsung-logo-font?styles=139057" rel="stylesheet">
<link href="https://fonts.cdnfonts.com/css/tbs" rel="stylesheet">
2023-01-30 18:17:12 +01:00
<style>
2023-02-03 20:23:56 +01:00
.test1 {
font-family: 'Alexandria';
2023-01-30 18:17:12 +01:00
}
2023-02-03 20:23:56 +01:00
.test2 {
font-family: 'Instagram Sans', sans-serif;
}
.test3 {
font-family: 'Samsung Logo font', sans-serif;
}
.test4 {
font-family: 'TBS', sans-serif;
}
2023-01-30 18:17:12 +01:00
</style>
</head>
<body>
2023-02-03 20:23:56 +01:00
<h1 class="test1">Alexandria Font</h1><br>
<h1 class="test2">Instagram Sans Font</h1><br>
<h1 class="test3">Samsung Logo Font</h1><br>
<h1 class="test4">TBS Font</h1><br>
2023-01-30 18:17:12 +01:00
</body>
</html>