Skip to content

Commit

Permalink
practicing html, css, js
Browse files Browse the repository at this point in the history
  • Loading branch information
rnaksdl committed Jul 10, 2024
1 parent d7129dd commit 63d4960
Show file tree
Hide file tree
Showing 5 changed files with 39 additions and 0 deletions.
Binary file modified .DS_Store
Binary file not shown.
5 changes: 5 additions & 0 deletions LearnReact/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
I guess I need internet to use npm or npx?

So I need to created init the dir in old fashion way

I guess I need internet to use React itself????
23 changes: 23 additions & 0 deletions LearnReact/practice1/index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="styles.css">
<script src="script.js" defer></script>
<title>Todo App</title>
</head>
<body>

<div class="todo-box">
<div class="todo-item">
<h1>Do this 1</h1>
</div>

<div class="todo-item">
<h1>Do this 2</h1>
</div>
</div>

</body>
</html>
Empty file added LearnReact/practice1/script.js
Empty file.
11 changes: 11 additions & 0 deletions LearnReact/practice1/styles.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@


.todo-box {
border: 0.4rem solid;
}

.todo-item {
border: 0.2rem dashed;
padding: 0.1rem 1rem;
margin: 1rem;
}

0 comments on commit 63d4960

Please sign in to comment.