-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathhome.html
51 lines (49 loc) · 1.22 KB
/
home.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
<!DOCTYPE html>
<html lang="pl-PL">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.6.0/jquery.min.js"></script>
<title>Mini Kurs HTML Patryk Dobrowolski</title>
<style>
@import url("https://fonts.googleapis.com/css2?family=Nunito+Sans:wght@200&display=swap");
html {
height: 100%;
}
body {
font-family: "Nunito Sans", sans-serif;
margin: 0px 0px 0px 0px;
height: 100%;
width: 100%;
background: linear-gradient(
90deg,
rgba(0, 168, 155, 1) 0%,
rgba(102, 102, 102, 1) 64%
);
overflow: hidden;
}
iframe {
border: 0px;
width: 100%;
height: 100%;
}
</style>
</head>
<body>
<div style="height: 10%">
<iframe
src="sub/banner.html"
style="width: 100%; height: 100px"
></iframe>
</div>
<div style="height: 90%">
<div style="width: 15%; height: 100%; float: left">
<iframe src="sub/nav.html"></iframe>
</div>
<div style="height: 100%; float: left; width: 85%">
<iframe name="content" src="sub/glowna.html"></iframe>
</div>
</div>
</body>
</html>