Skip to content

Commit

Permalink
Create index.html
Browse files Browse the repository at this point in the history
test
  • Loading branch information
rlatjd1f authored Nov 1, 2024
1 parent 7fda6ef commit cd88219
Showing 1 changed file with 45 additions and 0 deletions.
45 changes: 45 additions & 0 deletions index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,45 @@
<!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 {
font-family: Arial, sans-serif;
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
margin: 0;
background-color: #f5f5f5;
}
.container {
text-align: center;
padding: 20px;
background-color: white;
border-radius: 10px;
box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);
}
button {
padding: 10px 20px;
font-size: 16px;
background-color: #4CAF50;
color: white;
border: none;
border-radius: 5px;
cursor: pointer;
}
button:hover {
background-color: #45a049;
}
</style>
</head>
<body>
<div class="container">
<h1>Welcome to My Page</h1>
<p>간단한 HTML 예제입니다. 이 페이지는 버튼을 포함하고 있습니다.</p>
<button onclick="alert('버튼이 클릭되었습니다!')">클릭하세요</button>
</div>
</body>
</html>

0 comments on commit cd88219

Please sign in to comment.