I'm currently working on a project to create a front-end design inspired by the Google homepage. I am facing an issue with adjusting the spacing of the navigation bar to match the original Google page layout. In my code snippet, the current spacing looks like this: About Store Images Sign in
, but I aim to achieve something more aligned with:
About Store Images Sign in
.
html{
height: 100%;
min-height: 100%;
}
a{
display: inline-block;
padding: 15px;
color: black;
}
<!DOCTYPE html>
<html lang="en">
<head>
<title>Search</title>
<link href="styles.css" rel="stylesheet">
</head>
<!-- Other HTML code for the project -->
If anyone has any suggestions or guidance on how to address this spacing issue, I would greatly appreciate your input.