-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbiography.html
More file actions
135 lines (123 loc) · 4.98 KB
/
biography.html
File metadata and controls
135 lines (123 loc) · 4.98 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
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
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<link rel="stylesheet" href="./assets/css/bootstrap.min.css">
<script src="./assets/js/bootstrap.js"></script>
<script src="./assets/js/jquery-3.5.1.min.js"></script>
<script src="./assets/js/popper.min.js"></script>
<link rel="preconnect" href="https://fonts.gstatic.com">
<link href="https://fonts.googleapis.com/css2?family=Lemonada:wght@700&display=swap" rel="stylesheet">
<link rel="preconnect" href="https://fonts.gstatic.com">
<link href="https://fonts.googleapis.com/css2?family=Dancing+Script:wght@400;700&display=swap" rel="stylesheet">
<title>Visit card</title>
</head>
<body>
<header>
<style>
#intro {
height: 400px;
}
@media (min-width: 992px) {
#intro {
height: 1080px;
}
}
#text__header
{
font-family: 'Dancing Script', cursive;
font-size: 22px;
text-decoration: none;
transition: color .2s linear;
}
#text__header:after
{
color: rgba(73, 73, 73, 0.7);
opacity: 0;
transition: opacity .2s linear;
}
#text__header:hover
{
color: rgba(73, 73, 73, 0.7);
}
#text__header:after:hover
{
opacity: 1;
}
#mask
{
font-family: 'Bookman Old Style', bold;
font-size: 48px;
}
#text__inbolck
{
font-family: 'Bookman Old Style', cursive;
font-size: 20px;
}
#text__file
{
color: #fff;
font-size: 28px;
}
</style>
<nav class="navbar navbar-expand-lg navbar-light bg-secondary">
<div class="container-fluid">
<button
class="navbar-toggler"
type="button"
data-mdb-toggle="collapse"
data-mdb-target="#navbar"
aria-controls="navbar"
aria-expanded="false"
aria-label="Toggle navigation"
>
<i class="fas fa-bars"></i>
</button>
<div class="collapse navbar-collapse" id="navbar">
<ul class="navbar-nav me-auto mb-2 mb-lg-0">
<li class="nav-item active">
<a class="nav-link" id="text__header" aria-current="page" href="index.html">Home</a>
</li>
<li class="nav-item">
<a class="nav-link" id="text__header" href="VisitCard.html">About</a>
</li>
</ul>
</div>
</div>
</nav>
<div
id="intro"
class="p-5 text-center bg-image"
style="background-image: url('assets/images/background.jpg')"
>
<div style="background-color: rgba(255, 255, 255, 0.7)">
<div class="d-flex justify-content-center align-items-center h-100">
<div class="text-black">
<div class="card-body">
<div style="font-family: 'Bookman Old Style', cursive;">
<h1 class="card-title">Зигмунд Фрейд</h1>
<h4 class="card-title">Рождение и Юность</h4>
<p class="card-text">
<iframe src="assets/text/birth.txt" width="1200vh" height="200px"></iframe>
</p>
<h4 id="card-title">Психотерапия и анализ</h4>
<p id="card-text">
<iframe src="assets/text/psyhoterapia.txt" width="1200vh"></iframe>
</p>
<h4 id="card-title">Личная жизнь</h4>
<p id="card-text">
<iframe src="assets/text/private.txt" width="1200vh"></iframe>
</p>
<h4 id="card-title">Смерть</h4>
<p id="card-text">
<iframe src="assets/text/death.txt" width="1200vh"></iframe>
</p>
</div>
</div>
</div>
</div>
</div>
</div>
</header>
</body>
</html>