Update about.html

Arsenijs Ļu 2024-04-27 20:04:17 +00:00
parent 3ed9230e34
commit 54c38decd6
1 changed files with 21 additions and 3 deletions

View File

@ -57,19 +57,36 @@
max-width: 800px;
margin: 0 auto;
padding: 20px;
background-color: #fff;
background-color: rgba(255, 255, 255, 0.8); /* Прозрачный белый фон */
border-radius: 10px;
box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
background-image: url('https://image.slidesdocs.com/responsive-images/background/grass-cartoon-powerpoint-background_3d94a6801a__960_540.jpg');
background-size: cover;
background-position: center;
}
h1 {
color: #007bff;
color: #fff; /* Белый цвет текста */
}
p {
font-size: 18px;
line-height: 1.6;
margin-bottom: 20px;
font-weight: bold; /* Делаем текст жирным */
color: #fff; /* Белый цвет текста */
}
.back-button {
background-color: #007bff;
color: #fff;
padding: 10px 20px;
border-radius: 5px;
text-decoration: none;
}
.back-button:hover {
background-color: #0056b3;
}
</style>
</head>
@ -84,9 +101,10 @@
<li><a href="/link">Link</a></li>
</ul>
</nav>
<a href="/" class="back-button">Back</a>
<div class="container">
<h1>About Tanki</h1>
<p>This is where you can provide information about your game "Tanki" including its features, development team, and any other relevant details.</p>
<p><strong>This is where you can provide information about your game "Tanki" including its features, development team, and any other relevant details.</strong></p>
<!-- Additional content about the game -->
</div>