49 lines
758 B
HTML
49 lines
758 B
HTML
<!doctype html>
|
|
|
|
<html>
|
|
<head>
|
|
<title> -- Design by Lovén -- </title>
|
|
|
|
<style>
|
|
body {
|
|
font-family: sans-serif;
|
|
}
|
|
.splash-image {
|
|
position: fixed;
|
|
left: 50%;
|
|
top: 50%;
|
|
transform: translate(-50%, -50%);
|
|
text-align: center;
|
|
}
|
|
.contact-info {
|
|
position: fixed;
|
|
left: 50%;
|
|
top: 100%;
|
|
transform: translate(-50%, -300%);
|
|
text-align: center;
|
|
}
|
|
</style>
|
|
</head>
|
|
|
|
<body>
|
|
|
|
<div class="splash-image">
|
|
<img src="{{ url_for('static', filename='symbol.png') }}" >
|
|
<br />
|
|
<h2>Design by Lovén</h2>
|
|
<h3>UNIKA KLÄDER FÖR AKTIVA BARN</h3>
|
|
<br />
|
|
<br />
|
|
<br />
|
|
<br />
|
|
<br />
|
|
<a href="mailto:info@designbyloven.se">Kontakt</a>
|
|
</div>
|
|
|
|
<div class="contact-info">
|
|
</div>
|
|
|
|
|
|
</body>
|
|
</html>
|