


Помогите с кодом для сайта HTML, вот что тут не правильно?
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Buttons Example</title>
<style>
.button {
font-size: 25px;
background-color: #FF8C00;
padding: 10px 20px;
margin: 5px;
border: none;
color: white;
text-decoration: none;
display: inline-block;
cursor: pointer;
}
.button-right {
font-size: 25px;
background-color: #FF8C00;
padding: 10px 20px;
margin: 5px;
border: none;
color: white;
text-decoration: none;
display: inline-block;
cursor: pointer;
float: right;
}
.button-container {
text-align: center;
margin-top: 20px;
}
.links-container {
text-align: left;
margin-top: 20px;
display: none;
}
</style>
</head>
<body>
<div class="button-container">
<button class="button" onclick="window.location.href='https://maps-by-cheloweck12.my1.ru/lesnik.zip'">Скачать карту</button>
<button class="button-right" onclick="window.location.href='https://maps-by-cheloweck12.my1.ru/lesnik_resurspak_123.zip'">Скачать ресурспак</button>
</div>
<div class="links-container" id="modLinks">
<a href=" https://maps-by-cheloweck12.my1.ru/CustomNPCs-1.16.5.20220515.jar " target="_blank">CustomNPCs-1.16.5.20220515.jar</a><br>
<a href=" https://maps-by-cheloweck12.my1.ru/cloth-config-4.17.101-forge-1.16.5_1.jar " target="_blank">cloth-config-4.17.101-forge-1.16.5_1.jar</a><br>
<a href=" https://maps-by-cheloweck12.my1.ru/invisiblights-forge-6.0.jar " target="_blank">invisiblights-forge-6.0.jar</a><br>
<a href=" https://maps-by-cheloweck12.my1.ru/OptiFine-OptiFine-1.16.5_HD_U_G8_pre2.jar " target="_blank">OptiFine-OptiFine-1.16.5_HD_U_G8_pre2.jar</a>
</div>
</body>
</html>
Ваш HTML-код выглядит в основном правильно, но есть небольшая проблема в атрибуте href первой ссылки в блоке links-container. Там есть пробел в начале URL. Уберите этот пробел, чтобы ссылка работала правильно.
Замените:
<a href=" https://maps-by-cheloweck12.my1.ru/CustomNPCs-1.16.5.20220515.jar " target="_blank">CustomNPCs-1.16.5.20220515.jar</a><br>
На:
<a href=" https://maps-by-cheloweck12.my1.ru/CustomNPCs-1.16.5.20220515.jar " target="_blank">CustomNPCs-1.16.5.20220515.jar</a><br>
Эта коррекция убирает лишний пробел перед URL, обеспечивая правильную работу ссылки.