Font families

This commit is contained in:
2025-05-08 14:17:13 +02:00
parent 1ed789d9b3
commit cff2b4c2bb
3 changed files with 22 additions and 2 deletions

View File

@@ -4,6 +4,12 @@
<meta charset="UTF-8"> <meta charset="UTF-8">
<link rel="icon" href="/favicon.ico"> <link rel="icon" href="/favicon.ico">
<meta name="viewport" content="width=device-width, initial-scale=1.0"> <meta name="viewport" content="width=device-width, initial-scale=1.0">
<!-- Google Fonts -->
<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=Montserrat:ital,wght@0,100..900;1,100..900&family=Noto+Sans+JP:wght@100..900&display=swap" rel="stylesheet">
<title>Kévin Taccoen</title> <title>Kévin Taccoen</title>
</head> </head>
<body id="app"> <body id="app">

View File

@@ -2,7 +2,19 @@
h1,h2,h3,h4,h5,p,td,th{ h1,h2,h3,h4,h5,p,td,th{
color: #EAEAEA; color: #EAEAEA;
/*Family Roboto or Atma ?*/ /*font-family: "Noto Sans JP", "Montserrat", sans-serif;*/
}
body{
font-family: Arial, Helvetica, sans-serif;
}
body.fr,body.en{
font-family: "Montserrat", Arial, Helvetica, sans-serif;
}
body.ja{
font-family: "Noto Sans JP", sans-serif;
} }
a{ a{

View File

@@ -43,7 +43,9 @@ const i18n = createI18n({
ja: ja, ja: ja,
fr: fr fr: fr
} }
}) });
document.body.classList.add(userLanguage);
// Creating App // Creating App