I need help with making my menu items responsive so they stay in one line without overlapping as the screen size decreases.
Here is the code snippet I am currently using:
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>My menu</title>
<link href="https://cdn.jsdelivr.net/npm/<a href="/cdn-cgi/l/email-protection" class="__cf_email__" data-cfemail="fa9895958e898e889b8abacfd4c9d4c9">[email protected]</a>/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-QWTKZyjpPEjISv5WaRU9OFeRpok6YctnYmDr5pNlyT2bRjXh0JMhjY6hW+ALEwIH" crossorigin="anonymous">
<style>
</style>
</head>
<body>
<div class="container-fluid">
<div class="row">
<div class="col-auto">
<a>Main page</a>
</div>
<div class="col-auto">
<a>Second page</a>
</div>
<div class="col-auto">
<a>Third page</a>
</div>
</div>
</div>
</body>
</html>
The issue can be seen in the image linked above.