As a newcomer to the realm of HTML, I am eager to kickstart my online portfolio. After successfully setting up the navigation bar, I have now turned my focus towards creating a dropdown menu within the nav bar. Unfortunately, I've hit a roadblock as the items are not behaving as expected in the dropdown menu. It seems like the container setup might be off. Any help or advice would be greatly appreciated!
/* Updated styling for navbar and dropdown */
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<META name="viewport" content="width=device-width, initial-scale=1">
<title> My Online Portfolio </title>
<link rel="stylesheet" href="dropdown.css">
<link href='http://fonts.gooleapis.com/css?family=Oswald'
rel='stylesheet' type='text/css'>
</head>
<body background = "background_image.jpg">
<body class="About Me">
<header>
<div class="nav">
<ul>
<li><a href="#">About Me</a></li>
<li>
<div class="dropdown">
<button class="dropbtn">Portfolio</button>
<div class="dropdown-content">
<a href="#">Graphics</a>
<a href="#">Other</a>
</div>
</div>
</li>
<li><a href="#"><nobr>Future Work</nobr></a></li>
</ul>
</div>
</header>
</div>
</body>
</html>