<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>My Blog</title>
<style>
body {
margin: 0;
background-color: black;
color: white;
font-family: "Times New Roman", Times, serif;
display: flex;
justify-content: center;
align-items: center;
min-height: 100vh;
}

h1 {
font-size: 3rem;
font-weight: normal;
}
</style>
</head>
<body>
<h1>hello this is my blog</h1>
</body>
</html>