52 lines
1.3 KiB
HTML
52 lines
1.3 KiB
HTML
|
|
<!DOCTYPE html>
|
||
|
|
<html lang="fr">
|
||
|
|
<head>
|
||
|
|
<meta charset="UTF-8">
|
||
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||
|
|
<title>Judo Magog</title>
|
||
|
|
<style>
|
||
|
|
body {
|
||
|
|
font-family: sans-serif;
|
||
|
|
max-width: 600px;
|
||
|
|
margin: 60px auto;
|
||
|
|
text-align: center;
|
||
|
|
padding: 0 20px;
|
||
|
|
}
|
||
|
|
img {
|
||
|
|
max-width: 300px;
|
||
|
|
margin-bottom: 40px;
|
||
|
|
}
|
||
|
|
h2 {
|
||
|
|
margin-bottom: 24px;
|
||
|
|
}
|
||
|
|
.downloads {
|
||
|
|
display: flex;
|
||
|
|
flex-direction: column;
|
||
|
|
gap: 16px;
|
||
|
|
align-items: center;
|
||
|
|
}
|
||
|
|
a {
|
||
|
|
display: inline-block;
|
||
|
|
padding: 12px 28px;
|
||
|
|
background: #1a1a2e;
|
||
|
|
color: #fff;
|
||
|
|
text-decoration: none;
|
||
|
|
border-radius: 6px;
|
||
|
|
font-size: 1rem;
|
||
|
|
min-width: 260px;
|
||
|
|
}
|
||
|
|
a:hover {
|
||
|
|
background: #16213e;
|
||
|
|
}
|
||
|
|
</style>
|
||
|
|
</head>
|
||
|
|
<body>
|
||
|
|
<img src="judo-magog.jpg" alt="Judo Magog">
|
||
|
|
<h2>Téléchargements</h2>
|
||
|
|
<div class="downloads">
|
||
|
|
<a href="gokyo.pdf" download>Gokyo (PDF)</a>
|
||
|
|
<a href="judo-technique-yannick.odt" download>Techniques Yannick (ODT)</a>
|
||
|
|
</div>
|
||
|
|
</body>
|
||
|
|
</html>
|