Trying to align both icon and text on the same level...
<!doctype html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Home Page</title>
<link href="Homepage.css" rel="stylesheet" type="text/css">
<script type="text/javascript" src="Homepage.js"></script>
</head>
<body>
<div class="TitleHome">
<h1>WELCOME TO MY PERSPECTIVE</h1>
<div id="mySidenav" class="sidenav">
<a href="javascript:void(0)" class="closebtn" onclick="closeNav()">×</a>
<a href="Homepage.html">Home</a>
<a href="Blog.html">Blog</a>
<a href="Photography.html">photography</a>
<a href="Contact Us.html">Contact us</a>
<a href="Gallery.html">Gallery</a>
</div>
<div class="nav-icon" onclick="openNav()">
<div></div>
</div>
</div>
</body>
</html>Hello,
I need some help with trying to align the hamburger icon and the padding-box to be aligned together.
if you can help me it would be appreciated.

