aa
This commit is contained in:
@@ -57,11 +57,14 @@
|
|||||||
position: sticky;
|
position: sticky;
|
||||||
bottom: 27px;
|
bottom: 27px;
|
||||||
}
|
}
|
||||||
|
a.back {
|
||||||
|
z-index: 5;
|
||||||
|
};
|
||||||
</style>
|
</style>
|
||||||
</head>
|
</head>
|
||||||
<body>
|
<body>
|
||||||
<canvas></canvas>
|
<canvas></canvas>
|
||||||
<script src="./script.js"></script>
|
<script src="./script.js"></script>
|
||||||
<a href="javascript:history.back()" img="img/back_arrow.png"></a>
|
<a class="back" href="javascript:history.back()"><img src="img/back_arrow.png"></a>
|
||||||
</body>
|
</body>
|
||||||
</html>
|
</html>
|
||||||
+20
-5
@@ -4,18 +4,33 @@
|
|||||||
<meta charset="utf-8">
|
<meta charset="utf-8">
|
||||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||||
<link rel="icon" type="image/png" sizes="16x16" href="fluidsim/img/favicon.png">
|
<link rel="icon" type="image/png" sizes="16x16" href="fluidsim/img/favicon.png">
|
||||||
|
<link href="https://fonts.googleapis.com/css2?family=Noto+Sans&display=swap" rel="stylesheet">
|
||||||
|
<link href="style.css" rel="stylesheet">
|
||||||
<title>
|
<title>
|
||||||
WhykTools
|
WhykTools
|
||||||
</title>
|
</title>
|
||||||
</head>
|
</head>
|
||||||
<body>
|
<body>
|
||||||
|
<div class="container">
|
||||||
<h1>
|
<header>
|
||||||
Voici la page des outils référencés
|
<a href="javascript:history.back()">
|
||||||
</h1>
|
<img class="logo" src="fluidsim/img/favicon.png" alt="Logo">
|
||||||
|
</a>
|
||||||
|
<h1 class="title">WhyKorp</h1>
|
||||||
|
</header>
|
||||||
|
<p><br></p>
|
||||||
|
<hr>
|
||||||
|
<p><br></p>
|
||||||
|
<h1>Bienvenue sur WhykTools</h1>
|
||||||
|
<p><br></p>
|
||||||
|
<hr>
|
||||||
|
<h1>Voici la page des outils référencés</h1>
|
||||||
<a href="fluidsim">
|
<a href="fluidsim">
|
||||||
<img src="fluidsim/preview.gif">
|
<img src="fluidsim/preview.gif">
|
||||||
</a>
|
</a>
|
||||||
|
</div>
|
||||||
|
<div class="footer">
|
||||||
|
Copyright | Whykorp® 2021-2024
|
||||||
|
</div>
|
||||||
</body>
|
</body>
|
||||||
</html>
|
</html>
|
||||||
@@ -0,0 +1,42 @@
|
|||||||
|
body {
|
||||||
|
font-family: 'Noto Sans', sans-serif;
|
||||||
|
background-color: #333;
|
||||||
|
color: #fff;
|
||||||
|
};
|
||||||
|
div.container {
|
||||||
|
width: 80%;
|
||||||
|
margin: auto;
|
||||||
|
border: 2px solid #d63209;
|
||||||
|
border-radius: 25px;
|
||||||
|
padding: 20px;
|
||||||
|
background-color: #444;
|
||||||
|
};
|
||||||
|
header {
|
||||||
|
text-align: left;
|
||||||
|
}
|
||||||
|
|
||||||
|
.logo {
|
||||||
|
height: 60px;
|
||||||
|
width: 60px;
|
||||||
|
display: inline-block;
|
||||||
|
vertical-align: middle;
|
||||||
|
margin-right: 10px;
|
||||||
|
}
|
||||||
|
.title {
|
||||||
|
display: inline-block;
|
||||||
|
font-size: 48px;
|
||||||
|
line-height: 60px;
|
||||||
|
vertical-align: middle;
|
||||||
|
}
|
||||||
|
|
||||||
|
div.footer {
|
||||||
|
width: 80%;
|
||||||
|
margin: auto;
|
||||||
|
border: 2px solid #d63209;
|
||||||
|
border-radius: 25px;
|
||||||
|
padding: 20px;
|
||||||
|
background-color: #444;
|
||||||
|
display: flex;
|
||||||
|
justify-content: center;
|
||||||
|
align-items: center;
|
||||||
|
}
|
||||||
Reference in New Issue
Block a user