Skip to content

Commit 398092c

Browse files
committed
Day 24
1 parent 38854b0 commit 398092c

File tree

4 files changed

+29
-1
lines changed

4 files changed

+29
-1
lines changed

Day 24/css/style.css

Whitespace-only changes.

Day 24/index.html

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
<!DOCTYPE html>
2+
<html lang="en">
3+
<head>
4+
<meta charset="UTF-8" />
5+
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
6+
<title>JavaScript Tutorial</title>
7+
<link rel="stylesheet" href="./css/style.css" />
8+
</head>
9+
<body>
10+
<h1 class="main-heading">Welcome to this otaku kingdom</h1>
11+
<p class="sub-heading">You can find different types of anime here.</p>
12+
<ul class="anime-list">
13+
<li>One piece</li>
14+
<li>Naruto</li>
15+
<li>One Punch Man</li>
16+
<li>Dr. Stone</li>
17+
<li>Haikyuu</li>
18+
<li>Boku no hero academia</li>
19+
</ul>
20+
<script src="./js/script.js"></script>
21+
</body>
22+
</html>

Day 24/js/script.js

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
console.log('Welcome to day 23')
2+
console.log('Dom manipulation')

README.md

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -96,4 +96,8 @@ Day 22
9696
```
9797
Day 23
9898
```
99-
* [Day 23](https://blog.nerdjfpb.com/javascript-part-23/) - Dom manipulation
99+
* [Day 23](https://blog.nerdjfpb.com/javascript-part-23/) - Dom Manipulation
100+
```
101+
Day 24
102+
```
103+
* [Day 24](https://blog.nerdjfpb.com/javascript-part-24/) - Dom Selector

0 commit comments

Comments
 (0)