forked from sent/waves
34 lines
699 B
HTML
34 lines
699 B
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<script src="/js/all.min.js"></script>
|
|
<meta charset="UTF-8" />
|
|
<meta
|
|
name="viewport"
|
|
content="width=device-width, initial-scale=1.0" />
|
|
<title>Duck Life 2</title>
|
|
<style>
|
|
body {
|
|
flex-direction: row;
|
|
background-color: #343838;
|
|
height: 90vh;
|
|
padding: 0;
|
|
margin: 0;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
}
|
|
|
|
a {
|
|
color: #dffaf1;
|
|
margin: 10px;
|
|
font-size: 25px;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<a href="unity/index.html">Unity</a>
|
|
<a href="flash/index.html">Flash</a>
|
|
</body>
|
|
</html>
|