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

[3주차] Velog 클론코딩 (JS) #3

Open
wants to merge 4 commits into
base: week3
Choose a base branch
from
Open
Show file tree
Hide file tree
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
Binary file removed .github/.DS_Store
Binary file not shown.
12 changes: 0 additions & 12 deletions .github/PULL_REQUEST_TEMPLATE.md

This file was deleted.

107 changes: 0 additions & 107 deletions .github/assignment3.html

This file was deleted.

16 changes: 0 additions & 16 deletions .github/script.js

This file was deleted.

155 changes: 0 additions & 155 deletions .github/styles.css

This file was deleted.

77 changes: 0 additions & 77 deletions .github/tag.html

This file was deleted.

Binary file removed .github/클론코딩.mp4
Binary file not shown.
24 changes: 24 additions & 0 deletions index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Main 페이지</title>
<link rel="stylesheet" href="styles.css">
</head>

<body>
<div class="main-container">
<h1>Notes App</h1>
<div id="noteList">
<ul id="notesList"></ul>
</div>
<div id="noteBoxes"></div>
<button id="createNoteBtn">Create Note</button>


</div>

<script src="main.js"></script>
</body>
</html>
Loading