I've been working on a website to share some code I created, but my skills in HTML and CSS are not the best. Please forgive me if there are obvious mistakes.
Here's the code I have so far:
<!DOCTYPE html>
<html>
<head>
<title>Downloads</title>
<link rel="stylesheet" href="https://www.w3schools.com/w3css/4/w3.css">
<link rel="stylesheet" href="css.css">
</head>
<body>
<div class="w3-bar darktheme">
<a href="/" class="w3-bar-item w3-button w3-mobile"><img src="img/logo.png" alt="CodeDownloads"></a>
<a href="windows.html" class="w3-bar-item w3-button w3-mobile">My Main Projects</a>
<a href="linux.html" class="w3-bar-item w3-button w3-mobile">Other</a>
<a href="software.html" class="w3-bar-item w3-button w3-mobile">Compiled</a>
<a href="about.html" class="w3-bar-item w3-button w3-mobile">About</a>
</div>
<br>
Insert labels and buttons for downloads here...
</body>
</html>
The labels (e.g.,
<label class=white>Title 10</label>
) inadvertently act as links as well. I don't want that to happen. I just need them to display as regular text. Using paragraph tags made it confusing for users above the button, which is not ideal. Any suggestions would be appreciated. Thank you.