routebar
Version:
A visual component for navigating between panel cells containing user content.
32 lines (31 loc) • 677 B
HTML
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Title</title>
<style>
body {
margin: 0;
background: #6af;
}
.main {
position: absolute;
width: 100%;
height: 100%;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
}
</style>
</head>
<body>
<div class="main">
<div>
<p>Don't use iframes!</p>
<p>Support for some functionality is impossible for them (because of security policy).</p>
<img src="pic2.jpg">
</div>
</div>
</body>
</html>