Answers for "Raleway font css link"

CSS
0

Raleway font css link

<!DOCTYPE html>
<html lang="en" dir="ltr">
  <head>
    <meta charset="utf-8">
    <title></title>
    <link rel="stylesheet" href="style.css">
    <link rel="preconnect" href="https://fonts.gstatic.com">
    <link href="https://fonts.googleapis.com/css2?family=Raleway:wght@100&display=swap" rel="stylesheet">
  </head>
</html>

/**CSS**/
* {
  margin: 0 auto;
  padding: 0;
  text-decoration: none;
  list-style-type: none;
  font-family: 'Raleway', sans-serif;
}
Posted by: Guest on June-06-2021

Browse Popular Code Answers by Language