29 lines
730 B
Plaintext
29 lines
730 B
Plaintext
@{
|
|
ViewData["Title"] = "Home Page";
|
|
}
|
|
|
|
<style>
|
|
body {
|
|
background-color: #fff; /* Изменяем фон на белый */
|
|
color: #333; /* Цвет текста */
|
|
font-family: 'Roboto', sans-serif;
|
|
}
|
|
|
|
.text-center {
|
|
text-align: center;
|
|
margin-top: 50px;
|
|
}
|
|
|
|
.display-4 {
|
|
font-size: 36px;
|
|
font-weight: bold;
|
|
margin-bottom: 30px;
|
|
}
|
|
|
|
</style>
|
|
|
|
<div class="text-center">
|
|
<h1 class="display-4">Добро пожаловать в «Банк «Вы банкрот». Сотрудник»</h1>
|
|
<img src="https://gas-kvas.com/grafic/uploads/posts/2024-01/gas-kvas-com-p-nadpis-bank-na-prozrachnom-fone-40.png" alt="Logo" />
|
|
</div>
|