<html style="minHeight: 100%; position: relative;background-color:white;">
<head>
<style>
.spacer {
background: repeating-linear-gradient(-55deg, #f9f9f9, #f9f9f9 10px, #fff 10px, #fff 20px);
height:100px;background-color:#eee;display:flex;align-items:center;justify-content:center;
}
#hkk-header{
position: fixed;
top:0;
width:100%;
display: none;
box-shadow: 0 6px 3px -2px rgba(0, 0, 0, .2);
}
#hkk-header img{display:block}
#hkk-header.show{
display: flex;
align-items:center;
justify-content: center;
}
</style>
<script>
document.addEventListener("scroll", function () {
const scrollPosition = window.scrollY;
const el = document.getElementById('hkk-header')
if(scrollPosition>100){
el.classList.add('show')
} else {
el.classList.remove('show')
}
})
</script>
</head>
<body style="height: 100vh; margin: 0">
<div id="hkk-header"><img src="/assets/hkk-header.png" width="1124px" height="76px"></div>
<div class="spacer">
HKK Header
</div>
<div style="height: calc(100vh + 70px); margin: 0 auto;width:920px;">
<script
src="https://public.development.xund.solutions/embed.js"
client-id="6edd6133-ce28-4b97-b027-b8d1abbc3051"
auth-code="b8338fd3-edce-49af-9ba6-49f2a06ad65b"
webapp-base-url="https://frame.health-check.class2.xund.solutions/"
webapp-code="3780c2ef-071c-4f51-a609-ee6f0c4db26a"
>
</script>
</div>
<div class="spacer" style="height:400px">
HKK Footer
</div>
</body>
</html>