raleway font css link

Solutions on MaxInterview for raleway font css link by the best coders in the world

showing results for - "raleway font css link"
Killian
09 Jan 2020
1<!DOCTYPE html>
2<html lang="en" dir="ltr">
3  <head>
4    <meta charset="utf-8">
5    <title></title>
6    <link rel="stylesheet" href="style.css">
7    <link rel="preconnect" href="https://fonts.gstatic.com">
8    <link href="https://fonts.googleapis.com/css2?family=Raleway:wght@100&display=swap" rel="stylesheet">
9  </head>
10</html>
11
12/**CSS**/
13* {
14  margin: 0 auto;
15  padding: 0;
16  text-decoration: none;
17  list-style-type: none;
18  font-family: 'Raleway', sans-serif;
19}