My website is not adapting properly to different screen sizes, even after I have added the META tags below. Any advice would be appreciated. Thank you.
HTML
<!DOCTYPE html>
<html lang="en" dir="ltr">
<head>
<meta charset="UTF-8>
<meta name="viewport" content="width=device-width, initial-scale=1>
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1>
<link rel="stylesheet" href="atlanta.css">
<link rel="stylesheet"href="https://fonts.googleapis.com/css?family=Pacifico">
<link rel="stylesheet"href="https://fonts.googleapis.com/css?family=Roboto">
</head>
<body>
<header id="header">
<div id="logo">
<img src="logohtml.png" alt="logo" id="header-img">
<span>Welcome to Atlanta!</span>
</div>
<nav id="nav-bar">
<ul>
<li><a class="nav-link" href="#"><b>Things to Do</b></a></li>
<li><a class="nav-link" href="#"><b>Where to Eat</b></a></li>
<li><a class="nav-link" href="#"><b>Events</b></a></li>
<li><a class="nav-link" href="#"><b>Hotels</b></a></li>
<li><a class="nav-link" href="#"><b>Parking</b></a></li>
</ul>
</nav>
</header>
</header>
EDIT
Please let me know if CSS code is necessary. Thanks once again.
UPDATE: This is how the site appears now after the changes. The first image shows the previous look. enter image description here enter image description here