Trechos de código que definem a junção do arquivo CSS ao HTML
index.html
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="style.css">
<title>Portifolio</title>
</head>
Trechos de códigos que definem o CSS no arquivo style.css criado no VScode
body{
background-color: blue;
color: white;
}