Skip to content
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

[1주차] 박지수 미션 제출합니다. #11

Open
wants to merge 6 commits into
base: master
Choose a base branch
from
Open
Changes from 1 commit
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
Next Next commit
feat: html 구현
  • Loading branch information
jsomnium committed Sep 7, 2024
commit e43e3eedd3ab79d192bf5b08aa8f9ff42c9d2970
Empty file added jsomnium/todo.css
Empty file.
37 changes: 37 additions & 0 deletions jsomnium/todo.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,37 @@
<!DOCTYPE html>
<html lang="ko">

<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>To Do</title>
<link rel="stylesheet" href="style.css">
</head>

<body>
<header>
<h1>✔ To Do</h1>
</header>

<main>
<section class="todo-container">
<div class="todo-header">
<h2>오늘 할 일</h2>
<p id="currentDate"></p>
</div>

<ul id="todoList">
<!-- 할 일 목록이 여기에 추가됨 -->
</ul>

<div class="todo-input">
<input type="text" id="newTodo" placeholder="할 일 추가">
<button id="addButton">추가</button>
</div>
</section>
</main>

<script src="script.js"></script>
</body>

</html>
Empty file added jsomnium/todo.js
Empty file.