<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>VT323 Font Example</title>
<link
href="https://fonts.googleapis.com/css2?family=VT323&display=swap"
rel="stylesheet"
/>
<style>
body {
background-color: white;
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
margin: 0;
}
.pixel-text {
font-family: "VT323", monospace;
font-size: 60px; /* フォントサイズを144pxに設定 */
color: black;
display: flex;
flex-direction: column;
align-items: center;
text-align: center;
gap: 40px; /* テキスト間に余白を追加 */
}
.pixel-text-data {
font-size: 60px; /* フォントサイズを144pxに設定 */
}
.pixel-text-title {
font-size: 80px; /* フォントサイズを144pxに設定 */
}
</style>
</head>
<body>
<div class="pixel-text">
<div class="pixel-text-data">2024.09.29</div>
<div class="pixel-text-title">タイトル</div>
</div>
</body>
</html>