Skip to content

Create homepage #620

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Closed
wants to merge 1 commit into from
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
64 changes: 64 additions & 0 deletions homepage
Original file line number Diff line number Diff line change
@@ -0,0 +1,64 @@
<!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: '맑은 고딕', sans-serif;
margin: 0;
padding: 20px;
line-height: 1.6;
}
.container {
max-width: 800px;
margin: 0 auto;
padding: 20px;
}
header {
background-color: #4CAF50;
color: white;
padding: 20px;
text-align: center;
border-radius: 5px;
}
nav {
margin: 20px 0;
background-color: #f1f1f1;
padding: 10px;
border-radius: 5px;
}
nav a {
margin: 0 10px;
text-decoration: none;
color: #333;
}
.content {
background-color: white;
padding: 20px;
border-radius: 5px;
box-shadow: 0 0 10px rgba(0,0,0,0.1);
}
</style>
</head>
<body>
<div class="container">
<header>
<h1>환영합니다!</h1>
</header>

<nav>
<a href="#home">홈</a>
<a href="#about">소개</a>
<a href="#contact">연락처</a>
</nav>

<div class="content">
<h2>안녕하세요</h2>
<p>이것은 제 홈페이지입니다.</p>
<p>여기에 원하는 내용을 추가하실 수 있습니다.</p>
</div>
</div>
</body>
</html>