Update about.html

main
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; max-width: 800px;
margin: 0 auto; margin: 0 auto;
padding: 20px; padding: 20px;
background-color: #fff; background-color: rgba(255, 255, 255, 0.8); /* Прозрачный белый фон */
border-radius: 10px; border-radius: 10px;
box-shadow: 0 0 10px rgba(0, 0, 0, 0.1); 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 { h1 {
color: #007bff; color: #fff; /* Белый цвет текста */
} }
p { p {
font-size: 18px; font-size: 18px;
line-height: 1.6; line-height: 1.6;
margin-bottom: 20px; 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> </style>
</head> </head>
@ -84,9 +101,10 @@
<li><a href="/link">Link</a></li> <li><a href="/link">Link</a></li>
</ul> </ul>
</nav> </nav>
<a href="/" class="back-button">Back</a>
<div class="container"> <div class="container">
<h1>About Tanki</h1> <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 --> <!-- Additional content about the game -->
</div> </div>