samples/apps/aspnet/Default.aspx

27 lines
493 B
Plaintext

<!DOCTYPE html>
<html>
<head>
<style>
html, body {
margin: 0;
padding: 0;
height: 100%;
}
.logo {
display: flex;
align-items: center;
justify-content: center;
height: 100%;
}
</style>
</head>
<body>
<div class="logo">
<a href="https://buildpacks.io" target="_blank">
<img src="logos.png" width="800px"/>
</a>
</div>
</body>
</html>