47 lines
844 B
HTML
47 lines
844 B
HTML
<!doctype html>
|
|
<html>
|
|
<head>
|
|
<title>
|
|
hello!
|
|
</title>
|
|
<style>
|
|
.grid {
|
|
display: grid;
|
|
width: 60%;
|
|
margin: auto;
|
|
grid-template-columns: 1fr 3fr;
|
|
grid-template-columns: 1fr 3fr;
|
|
grid-gap: 3em 1ex;
|
|
align-items: center;
|
|
}
|
|
.grid > header {
|
|
grid-column: 1 / span 2;
|
|
}
|
|
iframe {
|
|
height: 3em;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<section>
|
|
<header>
|
|
Here is the cookie flavour: <span id='target'>%COOKIE%</span>
|
|
</header>
|
|
</section>
|
|
|
|
<hr>
|
|
|
|
<section class="grid">
|
|
<header>the cookie when i request…</header>
|
|
<code>a.website.com</code>
|
|
<iframe src="https://a.website.com:8443/flavour"></iframe>
|
|
|
|
<code>b.website.com</code>
|
|
<iframe src="https://b.website.com:8443/flavour"></iframe>
|
|
|
|
<code>sub.a.website.com</code>
|
|
<iframe src="https://sub.a.website.com:8443/flavour"></iframe>
|
|
</section>
|
|
</body>
|
|
</html>
|