-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex
45 lines (42 loc) · 800 Bytes
/
index
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
<!doctype html>
<title>Example</title>
<style>
* {
box-sizing: border-box;
}
body {
display: flex;
min-height: 100vh;
flex-direction: column;
margin: 0;
}
#main {
display: flex;
flex: 1;
}
#main > article {
flex: 1;
}
#main > nav,
#main > aside {
flex: 0 0 20vw;
background: beige;
}
#main > nav {
order: -1;
}
header, footer {
background: yellowgreen;
height: 20vh;
}
header, footer, article, nav, aside {
padding: 1em;
}
</style>
<body>
<header>SKOLTECH [CHERTOGANOV KIRILL] - Project X</header>
<div id="main">
<iframe src="https://cb9e5b244ad24cfe840fc1bc820e785a.us-east-1.aws.found.io:9243/goto/3056caace6931fa8de9b7e34e1f9d5da?embed=true" height="600" width="800"></iframe>
</div>
<footer>SKOLTECH [CHERTOGANOV KIRILL]</footer>
</body>