-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtest
More file actions
66 lines (66 loc) · 1.78 KB
/
test
File metadata and controls
66 lines (66 loc) · 1.78 KB
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
<!DOCTYPE html>
<html lang="ru">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Резюме Иванова Ивана</title>
<link href="https://fonts.googleapis.com/css2?family=Roboto:wght@400;700&display=swap" rel="stylesheet">
<style>
body {
font-family: 'Roboto', sans-serif;
background-color: #f4f4f4;
color: #333;
margin: 0;
padding: 20px;
}
header {
background-color: #007bff;
color: white;
padding: 20px;
text-align: center;
border-radius: 8px;
}
h1 {
margin: 0;
font-size: 2.5em;
}
h2 {
color: #007bff;
margin-top: 20px;
}
.container {
max-width: 800px;
margin: 20px auto;
background: white;
padding: 20px;
border-radius: 8px;
box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}
footer {
text-align: center;
margin-top: 20px;
font-size: 0.9em;
color: #777;
}
</style>
</head>
<body>
<header>
<h1>Иванов Иван</h1>
<p>Разработчик программного обеспечения</p>
</header>
<div class="container">
<section>
<h2>Контакты</h2>
<p>Email: ivanov@example.com</p>
</section>
<section>
<h2>Обо мне</h2>
<p>Некоторый текст о вас...</p>
</section>
</div>
<footer>
<p>© 2024 Иванов Иван. Все права защищены.</p>
</footer>
</body>
</html>