80 lines
3.0 KiB
HTML
80 lines
3.0 KiB
HTML
<!DOCTYPE html>
|
||
<html lang="ru">
|
||
<head>
|
||
<meta charset="utf-8">
|
||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||
<title>Download</title>
|
||
<link rel="stylesheet" href="static/css/style.css" />
|
||
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.3/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-QWTKZyjpPEjISv5WaRU9OFeRpok6YctnYmDr5pNlyT2bRjXh0JMhjY6hW+ALEwIH" crossorigin="anonymous">
|
||
<style>
|
||
body {
|
||
background-color: #ffffff; /* Vibrant blue background */
|
||
color: #066163; /* White text color */
|
||
}
|
||
|
||
.center-text {
|
||
padding-top: 50px;
|
||
text-align: center; /* Center align the text */
|
||
font-size: 180px; /* Set the font size to be large */
|
||
margin-bottom: 30px; /* Add some space below the title */
|
||
}
|
||
|
||
.download-button {
|
||
text-align: center;
|
||
margin-top: 50px;
|
||
}
|
||
|
||
.download-button a {
|
||
display: inline-block;
|
||
padding: 10px 20px;
|
||
background-color: #066163;
|
||
color: #ffffff;
|
||
text-decoration: none;
|
||
border-radius: 5px;
|
||
font-size: 24px;
|
||
transition: background-color 0.3s;
|
||
}
|
||
|
||
.download-button a:hover {
|
||
background-color: #ff9100;
|
||
}
|
||
</style>
|
||
</head>
|
||
<body>
|
||
<nav class="navbar" style="background-color: #066163;" data-bs-theme="dark" >
|
||
<div class="container">
|
||
<a class="navbar-brand" href="/">Minecraft</a>
|
||
<button class="navbar-toggler" type="button" data-bs-toggle="collapse" data-bs-target="#navbarNav" aria-controls="navbarNav" aria-expanded="false" aria-label="Toggle navigation">
|
||
<span class="navbar-toggler-icon"></span>
|
||
</button>
|
||
<div class="collapse navbar-collapse" id="navbarNav">
|
||
<ul class="navbar-nav ms-auto">
|
||
<li class="nav-item">
|
||
<a class="nav-link" href="/about">О нас</a>
|
||
</li>
|
||
<li class="nav-item">
|
||
<a class="nav-link" href="/contact">Контакты</a>
|
||
</li>
|
||
<li class="nav-item">
|
||
<a class="nav-link" href="/dwnld">Скачать</a>
|
||
</li>
|
||
<li class="nav-item">
|
||
<a class="nav-link" href="/login">Войти</a>
|
||
</li>
|
||
</ul>
|
||
</div>
|
||
</div>
|
||
</nav>
|
||
|
||
<div class="center">
|
||
<p class="glavp">Скачать</p>
|
||
</div>
|
||
|
||
<div class="download-button">
|
||
<a href="https://www.minecraft.net/ru-ru" class="btn btn-primary">Download Now</a>
|
||
</div>
|
||
|
||
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.3.3/dist/js/bootstrap.bundle.min.js" integrity="sha384-YvpcrYf0tY3lHB60NNkmXc5s9fDVZLESaAA55NDzOxhy9GkcIdslK1eN7N6jIeHz" crossorigin="anonymous"></script>
|
||
</body>
|
||
</html>
|