Skip to content

Commit 2923259

Browse files
Add styling and console hint.
1 parent fd04e57 commit 2923259

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

61 files changed

+305
-183
lines changed

version 5/01 - a. Types/01-undefined-null.html

+5-3
Original file line numberDiff line numberDiff line change
@@ -4,12 +4,14 @@
44
<html lang="en">
55
<head>
66
<meta charset="UTF-8" />
7-
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
8-
<meta http-equiv="X-UA-Compatible" content="ie=edge" />
7+
<link rel="stylesheet" href="../../resources/icons.css" />
8+
<link rel="stylesheet" href="../../resources/oblicum.css" />
99
<title>Types - Undefined and Null</title>
1010

1111
<script src="01-undefined-null.js"></script>
1212
</head>
1313

14-
<body></body>
14+
<body>
15+
<div><span class="info">Open the console!</span></div>
16+
</body>
1517
</html>

version 5/01 - a. Types/02-boolean.html

+5-3
Original file line numberDiff line numberDiff line change
@@ -4,12 +4,14 @@
44
<html lang="en">
55
<head>
66
<meta charset="UTF-8" />
7-
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
8-
<meta http-equiv="X-UA-Compatible" content="ie=edge" />
7+
<link rel="stylesheet" href="../../resources/icons.css" />
8+
<link rel="stylesheet" href="../../resources/oblicum.css" />
99
<title>Types - Boolean</title>
1010

1111
<script src="02-boolean.js"></script>
1212
</head>
1313

14-
<body></body>
14+
<body>
15+
<div><span class="info">Open the console!</span></div>
16+
</body>
1517
</html>

version 5/01 - a. Types/03-number.html

+5-3
Original file line numberDiff line numberDiff line change
@@ -4,12 +4,14 @@
44
<html lang="en">
55
<head>
66
<meta charset="UTF-8" />
7-
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
8-
<meta http-equiv="X-UA-Compatible" content="ie=edge" />
7+
<link rel="stylesheet" href="../../resources/icons.css" />
8+
<link rel="stylesheet" href="../../resources/oblicum.css" />
99
<title>Types - Number</title>
1010

1111
<script src="03-number.js"></script>
1212
</head>
1313

14-
<body></body>
14+
<body>
15+
<div><span class="info">Open the console!</span></div>
16+
</body>
1517
</html>

version 5/01 - a. Types/04-string.html

+5-3
Original file line numberDiff line numberDiff line change
@@ -4,12 +4,14 @@
44
<html lang="en">
55
<head>
66
<meta charset="UTF-8" />
7-
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
8-
<meta http-equiv="X-UA-Compatible" content="ie=edge" />
7+
<link rel="stylesheet" href="../../resources/icons.css" />
8+
<link rel="stylesheet" href="../../resources/oblicum.css" />
99
<title>Types - String</title>
1010

1111
<script src="04-string.js"></script>
1212
</head>
1313

14-
<body></body>
14+
<body>
15+
<div><span class="info">Open the console!</span></div>
16+
</body>
1517
</html>

version 5/01 - b. Type Conversions/01-toBoolean.html

+5-3
Original file line numberDiff line numberDiff line change
@@ -4,12 +4,14 @@
44
<html lang="en">
55
<head>
66
<meta charset="UTF-8" />
7-
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
8-
<meta http-equiv="X-UA-Compatible" content="ie=edge" />
7+
<link rel="stylesheet" href="../../resources/icons.css" />
8+
<link rel="stylesheet" href="../../resources/oblicum.css" />
99
<title>Type Conversions - To Boolean</title>
1010

1111
<script src="01-toBoolean.js"></script>
1212
</head>
1313

14-
<body></body>
14+
<body>
15+
<div><span class="info">Open the console!</span></div>
16+
</body>
1517
</html>

version 5/01 - b. Type Conversions/02-toNumber.html

+5-3
Original file line numberDiff line numberDiff line change
@@ -4,12 +4,14 @@
44
<html lang="en">
55
<head>
66
<meta charset="UTF-8" />
7-
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
8-
<meta http-equiv="X-UA-Compatible" content="ie=edge" />
7+
<link rel="stylesheet" href="../../resources/icons.css" />
8+
<link rel="stylesheet" href="../../resources/oblicum.css" />
99
<title>Type Conversions - To Number</title>
1010

1111
<script src="02-toNumber.js"></script>
1212
</head>
1313

14-
<body></body>
14+
<body>
15+
<div><span class="info">Open the console!</span></div>
16+
</body>
1517
</html>

version 5/01 - b. Type Conversions/03-toString.html

+5-3
Original file line numberDiff line numberDiff line change
@@ -4,12 +4,14 @@
44
<html lang="en">
55
<head>
66
<meta charset="UTF-8" />
7-
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
8-
<meta http-equiv="X-UA-Compatible" content="ie=edge" />
7+
<link rel="stylesheet" href="../../resources/icons.css" />
8+
<link rel="stylesheet" href="../../resources/oblicum.css" />
99
<title>Type Conversions - To Boolean</title>
1010

1111
<script src="03-toString.js"></script>
1212
</head>
1313

14-
<body></body>
14+
<body>
15+
<div><span class="info">Open the console!</span></div>
16+
</body>
1517
</html>

version 5/02 - a. Arithmetic Operators/01-numbers.html

+5-3
Original file line numberDiff line numberDiff line change
@@ -4,12 +4,14 @@
44
<html lang="en">
55
<head>
66
<meta charset="UTF-8" />
7-
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
8-
<meta http-equiv="X-UA-Compatible" content="ie=edge" />
7+
<link rel="stylesheet" href="../../resources/icons.css" />
8+
<link rel="stylesheet" href="../../resources/oblicum.css" />
99
<title>Arithmetic Operators - Numbers</title>
1010

1111
<script src="01-numbers.js"></script>
1212
</head>
1313

14-
<body></body>
14+
<body>
15+
<div><span class="info">Open the console!</span></div>
16+
</body>
1517
</html>

version 5/02 - a. Arithmetic Operators/02-strings.html

+5-3
Original file line numberDiff line numberDiff line change
@@ -4,12 +4,14 @@
44
<html lang="en">
55
<head>
66
<meta charset="UTF-8" />
7-
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
8-
<meta http-equiv="X-UA-Compatible" content="ie=edge" />
7+
<link rel="stylesheet" href="../../resources/icons.css" />
8+
<link rel="stylesheet" href="../../resources/oblicum.css" />
99
<title>Arithmetic Operators - Strings</title>
1010

1111
<script src="02-strings.js"></script>
1212
</head>
1313

14-
<body></body>
14+
<body>
15+
<div><span class="info">Open the console!</span></div>
16+
</body>
1517
</html>

version 5/02 - b. Assignment Operators/01-numbers.html

+5-3
Original file line numberDiff line numberDiff line change
@@ -4,12 +4,14 @@
44
<html lang="en">
55
<head>
66
<meta charset="UTF-8" />
7-
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
8-
<meta http-equiv="X-UA-Compatible" content="ie=edge" />
7+
<link rel="stylesheet" href="../../resources/icons.css" />
8+
<link rel="stylesheet" href="../../resources/oblicum.css" />
99
<title>Assignment Operators - Numbers</title>
1010

1111
<script src="01-numbers.js"></script>
1212
</head>
1313

14-
<body></body>
14+
<body>
15+
<div><span class="info">Open the console!</span></div>
16+
</body>
1517
</html>

version 5/02 - b. Assignment Operators/02-strings.html

+5-3
Original file line numberDiff line numberDiff line change
@@ -4,12 +4,14 @@
44
<html lang="en">
55
<head>
66
<meta charset="UTF-8" />
7-
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
8-
<meta http-equiv="X-UA-Compatible" content="ie=edge" />
7+
<link rel="stylesheet" href="../../resources/icons.css" />
8+
<link rel="stylesheet" href="../../resources/oblicum.css" />
99
<title>Assignment Operators - Strings</title>
1010

1111
<script src="01-strings.js"></script>
1212
</head>
1313

14-
<body></body>
14+
<body>
15+
<div><span class="info">Open the console!</span></div>
16+
</body>
1517
</html>

version 5/02 - c. Comparison Operators/01-equality.html

+5-3
Original file line numberDiff line numberDiff line change
@@ -4,12 +4,14 @@
44
<html lang="en">
55
<head>
66
<meta charset="UTF-8" />
7-
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
8-
<meta http-equiv="X-UA-Compatible" content="ie=edge" />
7+
<link rel="stylesheet" href="../../resources/icons.css" />
8+
<link rel="stylesheet" href="../../resources/oblicum.css" />
99
<title>Comparison Operators - Equality</title>
1010

1111
<script src="01-equality.js"></script>
1212
</head>
1313

14-
<body></body>
14+
<body>
15+
<div><span class="info">Open the console!</span></div>
16+
</body>
1517
</html>

version 5/02 - c. Comparison Operators/02-inequality.html

+5-3
Original file line numberDiff line numberDiff line change
@@ -4,12 +4,14 @@
44
<html lang="en">
55
<head>
66
<meta charset="UTF-8" />
7-
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
8-
<meta http-equiv="X-UA-Compatible" content="ie=edge" />
7+
<link rel="stylesheet" href="../../resources/icons.css" />
8+
<link rel="stylesheet" href="../../resources/oblicum.css" />
99
<title>Comparison Operators - Inequality</title>
1010

1111
<script src="02-inequality.js"></script>
1212
</head>
1313

14-
<body></body>
14+
<body>
15+
<div><span class="info">Open the console!</span></div>
16+
</body>
1517
</html>

version 5/02 - c. Comparison Operators/03-greater.html

+5-3
Original file line numberDiff line numberDiff line change
@@ -4,12 +4,14 @@
44
<html lang="en">
55
<head>
66
<meta charset="UTF-8" />
7-
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
8-
<meta http-equiv="X-UA-Compatible" content="ie=edge" />
7+
<link rel="stylesheet" href="../../resources/icons.css" />
8+
<link rel="stylesheet" href="../../resources/oblicum.css" />
99
<title>Comparison Operators - Greater than</title>
1010

1111
<script src="03-greater.js"></script>
1212
</head>
1313

14-
<body></body>
14+
<body>
15+
<div><span class="info">Open the console!</span></div>
16+
</body>
1517
</html>

version 5/02 - c. Comparison Operators/04-greater-equal.html

+5-3
Original file line numberDiff line numberDiff line change
@@ -4,12 +4,14 @@
44
<html lang="en">
55
<head>
66
<meta charset="UTF-8" />
7-
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
8-
<meta http-equiv="X-UA-Compatible" content="ie=edge" />
7+
<link rel="stylesheet" href="../../resources/icons.css" />
8+
<link rel="stylesheet" href="../../resources/oblicum.css" />
99
<title>Comparison Operators - Greater than or equal</title>
1010

1111
<script src="04-greater-equal.js"></script>
1212
</head>
1313

14-
<body></body>
14+
<body>
15+
<div><span class="info">Open the console!</span></div>
16+
</body>
1517
</html>

version 5/02 - c. Comparison Operators/05-less.html

+5-3
Original file line numberDiff line numberDiff line change
@@ -4,12 +4,14 @@
44
<html lang="en">
55
<head>
66
<meta charset="UTF-8" />
7-
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
8-
<meta http-equiv="X-UA-Compatible" content="ie=edge" />
7+
<link rel="stylesheet" href="../../resources/icons.css" />
8+
<link rel="stylesheet" href="../../resources/oblicum.css" />
99
<title>Comparison Operators - Less than</title>
1010

1111
<script src="05-less.js"></script>
1212
</head>
1313

14-
<body></body>
14+
<body>
15+
<div><span class="info">Open the console!</span></div>
16+
</body>
1517
</html>

version 5/02 - c. Comparison Operators/06-less-equal.html

+5-3
Original file line numberDiff line numberDiff line change
@@ -4,12 +4,14 @@
44
<html lang="en">
55
<head>
66
<meta charset="UTF-8" />
7-
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
8-
<meta http-equiv="X-UA-Compatible" content="ie=edge" />
7+
<link rel="stylesheet" href="../../resources/icons.css" />
8+
<link rel="stylesheet" href="../../resources/oblicum.css" />
99
<title>Comparison Operators - Less than or equal</title>
1010

1111
<script src="06-less-equal.js"></script>
1212
</head>
1313

14-
<body></body>
14+
<body>
15+
<div><span class="info">Open the console!</span></div>
16+
</body>
1517
</html>

version 5/02 - d. Logical Operators/01-and.html

+5-3
Original file line numberDiff line numberDiff line change
@@ -4,12 +4,14 @@
44
<html lang="en">
55
<head>
66
<meta charset="UTF-8" />
7-
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
8-
<meta http-equiv="X-UA-Compatible" content="ie=edge" />
7+
<link rel="stylesheet" href="../../resources/icons.css" />
8+
<link rel="stylesheet" href="../../resources/oblicum.css" />
99
<title>Logical Operators - And</title>
1010

1111
<script src="01-and.js"></script>
1212
</head>
1313

14-
<body></body>
14+
<body>
15+
<div><span class="info">Open the console!</span></div>
16+
</body>
1517
</html>

version 5/02 - d. Logical Operators/02-or.html

+5-3
Original file line numberDiff line numberDiff line change
@@ -4,12 +4,14 @@
44
<html lang="en">
55
<head>
66
<meta charset="UTF-8" />
7-
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
8-
<meta http-equiv="X-UA-Compatible" content="ie=edge" />
7+
<link rel="stylesheet" href="../../resources/icons.css" />
8+
<link rel="stylesheet" href="../../resources/oblicum.css" />
99
<title>Logical Operators - Or</title>
1010

1111
<script src="02-or.js"></script>
1212
</head>
1313

14-
<body></body>
14+
<body>
15+
<div><span class="info">Open the console!</span></div>
16+
</body>
1517
</html>

version 5/02 - d. Logical Operators/03-not.html

+5-3
Original file line numberDiff line numberDiff line change
@@ -4,12 +4,14 @@
44
<html lang="en">
55
<head>
66
<meta charset="UTF-8" />
7-
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
8-
<meta http-equiv="X-UA-Compatible" content="ie=edge" />
7+
<link rel="stylesheet" href="../../resources/icons.css" />
8+
<link rel="stylesheet" href="../../resources/oblicum.css" />
99
<title>Logical Operators - Not</title>
1010

1111
<script src="03-not.js"></script>
1212
</head>
1313

14-
<body></body>
14+
<body>
15+
<div><span class="info">Open the console!</span></div>
16+
</body>
1517
</html>

version 5/03 - Conditional Statements/01-if.html

+5-3
Original file line numberDiff line numberDiff line change
@@ -4,12 +4,14 @@
44
<html lang="en">
55
<head>
66
<meta charset="UTF-8" />
7-
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
8-
<meta http-equiv="X-UA-Compatible" content="ie=edge" />
7+
<link rel="stylesheet" href="../../resources/icons.css" />
8+
<link rel="stylesheet" href="../../resources/oblicum.css" />
99
<title>Conditional Statements - if</title>
1010

1111
<script src="01-if.js"></script>
1212
</head>
1313

14-
<body></body>
14+
<body>
15+
<div><span class="info">Open the console!</span></div>
16+
</body>
1517
</html>

version 5/03 - Conditional Statements/02-if-else.html

+5-3
Original file line numberDiff line numberDiff line change
@@ -4,12 +4,14 @@
44
<html lang="en">
55
<head>
66
<meta charset="UTF-8" />
7-
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
8-
<meta http-equiv="X-UA-Compatible" content="ie=edge" />
7+
<link rel="stylesheet" href="../../resources/icons.css" />
8+
<link rel="stylesheet" href="../../resources/oblicum.css" />
99
<title>Conditional Statements - if-else</title>
1010

1111
<script src="02-if-else.js"></script>
1212
</head>
1313

14-
<body></body>
14+
<body>
15+
<div><span class="info">Open the console!</span></div>
16+
</body>
1517
</html>

0 commit comments

Comments
 (0)