Skip to content

Instantly share code, notes, and snippets.

@agustinpfs
Created June 30, 2020 02:08
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save agustinpfs/d28565fd17471841c56147472012deec to your computer and use it in GitHub Desktop.
Save agustinpfs/d28565fd17471841c56147472012deec to your computer and use it in GitHub Desktop.
CSS básico. Fuentes y Google fonts.
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Fonts & Google Fonts</title>
<link href="https://fonts.googleapis.com/css2?family=Roboto:wght@100;300;400;500&display=swap" rel="stylesheet">
<style>
p {
/* font-family: Arial, Helvetica, sans-serif; */
font-family: 'Roboto', Helvetica, sans-serif;
font-weight: 100;
font-style: italic;
}
</style>
</head>
<body>
<p>Lorem ipsum dolor sit amet consectetur adipisicing elit. Omnis nulla nemo, expedita reprehenderit beatae quasi laboriosam officia nesciunt amet pariatur sapiente soluta perferendis. Nobis modi voluptatem sunt, sint rem laudantium!</p>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment