Hi. I have amended the title category as this is an HTML /CSS query.
Please can you post all your code so we can help you (HTML as well). Can you please also include the link to the challenge step. See below as to how you can do this.
Also, when you enter a code block into a forum post, please precede it with a separate line of three backticks and follow it with a separate line of three backticks to make it easier to read.
You can also use the “preformatted text” tool in the editor ( </> ) to add backticks around text.
See this post to find the backtick on your keyboard. Note: Backticks (`) are not single quotes (’).
If you have a question about a specific challenge as it relates to your written code for that challenge and need some help, click the Help button located on the challenge. This button only appears if you have tried to submit an answer at least three times.
The Help button will create a new topic with all code you have written and include a link to the challenge also. You will still be able to ask any questions in the post before submitting it to the forum.
<!DOCTYPE html>
<html lang="en">
<link rel="stylesheet" href="styles.css">
<head>
<meta charset="UTF-8"/>
<meta name="viewport" content="width=device-width, initial-scale=1.0"/>
</head>
<body>
<div class="vertical-menu">
<nav id="navbar">
<header class="navbar-header">BIMBOTECH</header>
<ul>
<li><a class="nav-link" href="#Introduction" id="Introduction">Introduction</a></li>
<li><a class="nav-link" href="#Mission" id="Mission">Mission </a></li>
<li><a class="nav-link" href="#Information" id="Information">Information</a></li>
<li><a class="nav-link" href="#Tutorials" if="Tutorials">Tutorials</a></li>
<li><a class="nav-link" href="#Linux_Resources" id="Resources">Linux Resources</a></li></ul>
</nav>
</div>
<main id="main-doc">
<section class="main-section" id="Introduction">
<header class="section-title" id="Introduction">
Introduction</header>
<p>welcome to bimbotech.</p>
<p>if you've ever felt tech and coding was intimdating or not made for you - bimbotech is for you!</p>
</section>
<section class="main-section" id="Mission">
<header class="section-title" id="Mission">Mission</header>
<p>bimbotech's goal is to make open source more accessible for content creators with the goal of teaching creator sovereignty.</p>
<p>as creators have less control over the platforms they build and make livings on, the more important it becomes for creators to own their own platforms</p>
</section>
<section class="main-section" id="Information">
<header class="section-title" id="Information">Information</header>
<p>bimbotech was founded by a creator not a coder. in the process of learning to become a better creator she found that the more she knew about how tech and code worked the better work she was able to do.</p>
<p>bimbotech is sharing what I learned along the way and what I'm learning on the way</p>
<p>Linux</p>
<p>Garuda Linux</p>
</section>
<section class="main-section" id="Tutorials">
<header class="section-title" id="Tutorials">Tutorials</header>
<p>how to install a program on Garuda or Arch Linux</p>
<code>sudo pacman -Syu program-name</code>
<p>how to install a program on Ubuntu Linux</p>
<code>sudo apt update && apt upgrade</code>
<code>sudo apt install program-name</code>
<code></code>
<code></code>
</section>
<section class="main-section" id="Linux_Resources">
<header class="section-title" id="Linux_Resources">Linux Resources</header>
<li>Ubuntu (Mac flavored Linux, easiest)</li>
<li>Garuda (high customizable. my favorite)</li>
<li>AUR (a place to find software for Arch based Linux flavors)</li>
<li>Ventoy (if you want to install Linux, you need this, a USB drive & .iso file)</li>
<li>Github</li>
</section>
</main>
</body>
</html>