-
Notifications
You must be signed in to change notification settings - Fork 0
/
new.html
91 lines (86 loc) · 2.8 KB
/
new.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
<!DOCTYPE html>
<html lang="ru">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Рекомендации по кредиту и ипотеке в РФ</title>
<style>
body {
font-family: Arial, sans-serif;
margin: 0;
padding: 0;
background-color: #f4f4f4;
}
.header {
background-color: #333;
color: #fff;
padding: 10px 0;
text-align: center;
}
.navigation {
background-color: #ddd;
padding: 10px 0;
text-align: center;
}
.navigation a {
margin: 0 10px;
text-decoration: none;
color: #333;
}
.recommendations {
padding: 20px;
text-align: center;
}
.recommendations h2 {
color: #333;
}
.application-form {
width: 50%;
margin: 20px auto;
padding: 20px;
background-color: #fff;
box-shadow: 0 0 10px rgba(0,0,0,0.1);
}
.application-form label,
.application-form input,
.application-form textarea,
.application-form button {
display: block;
width: 100%;
margin-bottom: 10px;
}
.application-form button {
padding: 10px;
background-color: #333;
color: #fff;
border: none;
cursor: pointer;
}
</style>
</head>
<body>
<div class="header">
<h1>Рекомендации по кредиту и ипотеке в РФ</h1>
</div>
<div class="navigation">
<a href="#recommendations">Рекомендации</a>
<a href="#application">Оставить заявку</a>
</div>
<div class="recommendations" id="recommendations">
<h2>Полезные статьи и рекомендации</h2>
<!-- Здесь могут быть размещены статьи или рекомендации -->
</div>
<div class="application-form" id="application">
<h2>Оставить заявку</h2>
<form action="/submit-application" method="post">
<label for="name">Имя:</label>
<input type="text" id="name" name="name" required>
<label for="email">Email:</label>
<input type="email" id="email" name="email" required>
<label for="message">Сообщение:</label>
<textarea id="message" name="message" required></textarea>
<button type="submit">Отправить</button>
</form>
</div>
</body>
</html>