change font

This commit is contained in:
Alexander Popov 2022-10-12 22:35:19 +03:00
parent 5a017ffd73
commit 5c82906b38
4 changed files with 14 additions and 4 deletions

View File

@ -11,7 +11,7 @@ Check out the details on [Codrops](https://tympanus.net/codrops/2018/01/12/freeb
## Credits
* [Highlight.js](https://highlightjs.org/)
* [Google Fonts - Nunito](https://fonts.google.com/specimen/Nunito+Sans)
* [Google Fonts - Ubuntu](https://fonts.google.com/specimen/Ubuntu)
* [Font Awesome v4](http://fontawesome.io/)
## License

View File

@ -1,3 +1,6 @@
<!--
version: 1.0.0
-->
<!doctype html>
<html>
<head>
@ -6,7 +9,9 @@
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Scribbler Documentation - a code documentation page template for codrops</title>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
<link href="https://fonts.googleapis.com/css?family=Nunito+Sans:300,400,600,700,800,900" rel="stylesheet">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Ubuntu:ital,wght@0,300;0,400;0,500;0,700;1,300;1,400;1,500;1,700&display=swap" rel="stylesheet">
<link rel="stylesheet" href="scribbler-global.css">
<link rel="stylesheet" href="scribbler-doc.css">
<link rel="author" href="humans.txt">

View File

@ -1,3 +1,6 @@
<!--
version: 1.0.0
-->
<!doctype html>
<html>
<head>
@ -6,7 +9,9 @@
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Scribbler - a codding landing page template for codrops</title>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
<link href="https://fonts.googleapis.com/css?family=Nunito+Sans:300,400,600,700,800,900" rel="stylesheet">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Ubuntu:ital,wght@0,300;0,400;0,500;0,700;1,300;1,400;1,500;1,700&display=swap" rel="stylesheet">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/highlight.js/9.12.0/styles/railscasts.min.css">
<link rel="stylesheet" href="scribbler-global.css">
<link rel="stylesheet" href="scribbler-landing.css">

View File

@ -17,7 +17,7 @@
html, body {
padding: 0;
margin: 0;
font-family: 'Nunito Sans', sans-serif;
font-family: 'Ubuntu', sans-serif;
background-color: white;
}