Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
35 commits
Select commit Hold shift + click to select a range
c48e885
Update script.js
KP-Tim Nov 30, 2022
5abca3f
Update script.js
KP-Tim Nov 30, 2022
1b21922
Update script.js
KP-Tim Nov 30, 2022
0d337c7
Update script.js
KP-Tim Nov 30, 2022
0d50b60
Update script.js
KP-Tim Nov 30, 2022
67e6d68
Update script.js
KP-Tim Dec 1, 2022
3de509b
Update script.js
KP-Tim Dec 1, 2022
4335426
Update script.js
KP-Tim Dec 2, 2022
92ec97b
Update script.js
KP-Tim Dec 2, 2022
701fe89
Last change
KP-Tim Dec 2, 2022
7212a4b
Update script.js
KP-Tim Dec 3, 2022
1feca92
Update script.js
KP-Tim Dec 3, 2022
0a6201a
Update script.js
KP-Tim Dec 4, 2022
54d355e
Challenge 3 Starts
KP-Tim Dec 4, 2022
fdd1b20
Loop lecture starts
KP-Tim Dec 4, 2022
cc5a186
While loop lecture starts
KP-Tim Dec 4, 2022
0d3beed
Challenge 4 starts
KP-Tim Dec 5, 2022
f810fe0
Check challenge 4
KP-Tim Dec 5, 2022
29f6800
How to solve a problem done
KP-Tim Dec 5, 2022
b24ac7b
12/5/ done
KP-Tim Dec 5, 2022
b0d6ba5
Code Challenge #1 starts
KP-Tim Dec 6, 2022
1bc2105
HTML and CSS crash course begins
KP-Tim Dec 6, 2022
55a01bb
last
KP-Tim Dec 6, 2022
c25f866
Guess my number proejct
KP-Tim Dec 8, 2022
94bdebc
Dice roll update
KP-Tim Dec 8, 2022
f5e5c76
I guess we changed it
KP-Tim Dec 9, 2022
917a61e
Keep going random game
KP-Tim Dec 9, 2022
4df5698
Last update
KP-Tim Dec 9, 2022
305574e
Random number project almost done
KP-Tim Dec 10, 2022
949eb15
UI project starts
KP-Tim Dec 11, 2022
143a686
Random Dice game 1
KP-Tim Dec 12, 2022
dc1cb41
Rolls dice and update player scores
KP-Tim Dec 12, 2022
f008f29
check
KP-Tim Dec 13, 2022
5698c7a
Pig-Game Done Initially
KP-Tim Dec 14, 2022
2f5853c
Revised Pig Game Myself
KP-Tim Dec 14, 2022
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
1 change: 1 addition & 0 deletions .prettierrc
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
{ "singleQuote": true, "arrowParens": "avoid" }
60 changes: 32 additions & 28 deletions 02-Fundamentals-Part-2/starter/index.html
Original file line number Diff line number Diff line change
@@ -1,30 +1,34 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta http-equiv="X-UA-Compatible" content="ie=edge" />
<title>JavaScript Fundamentals – Part 2</title>
<style>
body {
height: 100vh;
display: flex;
align-items: center;
background: linear-gradient(to top left, #28b487, #7dd56f);
}
h1 {
font-family: sans-serif;
font-size: 50px;
line-height: 1.3;
width: 100%;
padding: 30px;
text-align: center;
color: white;
}
</style>
</head>
<body>
<h1>JavaScript Fundamentals – Part 2</h1>
<script src="script.js"></script>
</body>
</html>

<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta http-equiv="X-UA-Compatible" content="ie=edge" />
<title>JavaScript Fundamentals – Part 2</title>
<style>
body {
height: 100vh;
display: flex;
align-items: center;
background: linear-gradient(to top left, #28b487, #7dd56f);
}

h1 {
font-family: sans-serif;
font-size: 50px;
line-height: 1.3;
width: 100%;
padding: 30px;
text-align: center;
color: white;
}
</style>
</head>

<body>
<h1>JavaScript Fundamentals – Part 2</h1>
<script src="script.js"></script>
</body>

</html>
Loading