practice.css
nav {background-color: aqua; font-size: 150%; text-align: center;}
nav a { color: white }
index.html
<!DOCTYPE html>
<html>
<head>
<title>Hello World!</title>
<link href="./practice.css" rel="stylesheet" type="text/css">
</head>
<body>
<nav>
<a href="https://google.com">google</a>
<a href="https://naver.com">naver</a>
</nav>
</body>
</html>