15 lines
349 B
HTML
15 lines
349 B
HTML
|
|
<!DOCTYPE html>
|
||
|
|
<html lang="ko">
|
||
|
|
<head>
|
||
|
|
<meta charset="UTF-8">
|
||
|
|
<title>My Site</title>
|
||
|
|
<style>
|
||
|
|
body { font-family: sans-serif; display: flex; justify-content: center; align-items: center; min-height: 100vh; background: #1e293b; color: white; }
|
||
|
|
h1 { font-size: 3rem; }
|
||
|
|
</style>
|
||
|
|
</head>
|
||
|
|
<body>
|
||
|
|
<h1>Hello Solmeca!</h1>
|
||
|
|
</body>
|
||
|
|
</html>
|