ホームページ

<!DOCTYPE html>
<html lang="ja">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>リンクページ</title>
<style>
body {
font-family: Arial, sans-serif;
text-align: center;
padding: 50px;
}
.link-container {
display: flex;
flex-direction: column;
align-items: center;
gap: 20px;
}
.link-container a {
display: inline-block;
padding: 10px 20px;
background-color: #3498db ;
color: white;
text-decoration: none;
border-radius: 5px;
}
.link-container a:hover {
background-color: #2980b9 ;
}
</style>
</head>
<body>

<h1>ページのリンク</h1>
<div class="link-container">
    <a href="page1.html">ページ1</a>
    <a href="page2.html">ページ2</a>
    <a href="page3.html">ページ3</a>
</div>

</body>
</html>

この記事が気に入ったらサポートをしてみませんか?