페이지 작성

This commit is contained in:
2026-02-26 00:12:24 +09:00
parent 62f94faf84
commit 720dc68df8

View File

@@ -1 +1,27 @@
hello!
<!DOCTYPE html>
<html lang="ko">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>나의 첫 정적 웹사이트</title>
<style>
body {
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
margin: 0;
background-color: #f4f4f9;
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}
h1 {
font-size: 4rem;
color: #333;
text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
}
</style>
</head>
<body>
<h1>hello!</h1>
</body>
</html>