Skip to content
Merged
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
1 change: 1 addition & 0 deletions ch1-javascript_variabes/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Javascript Variables</title>
<link rel="stylesheet" href="../style.css" />
</head>
<body>
<h2>Chapter 1 - Javascript Variables</h2>
Expand Down
37 changes: 18 additions & 19 deletions ch4-javascript-condition-and-loops/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Javascript Variables</title>
<link rel="stylesheet" href="style.css" />
<link rel="stylesheet" href="../style.css" />
</head>
<body>
<main class="container">
Expand All @@ -28,8 +28,10 @@ <h3 class="project-list-title">
programs -
</h3>

<br />

<h4>10 conditional programs for practise in javascript -</h4>
<ul>
<ul class="con-list">
<li>
<p>
<a href="./even-odd/even-odd.html">
Expand All @@ -41,7 +43,7 @@ <h4>10 conditional programs for practise in javascript -</h4>
<li>
<p>
<a href="./even-odd/even-odd.html">
1) Write a program to check a year is Leap year or not in
2) Write a program to check a year is Leap year or not in
JavaScript.
</a>
</p>
Expand All @@ -50,71 +52,68 @@ <h4>10 conditional programs for practise in javascript -</h4>
<li>
<p>
<a href="./even-odd/even-odd.html">
1) Check if a number is odd or even in JavaScript.
3) Check if a variable is number or not in JavaScript.
</a>
</p>
</li>

<li>
<p>
<a href="./even-odd/even-odd.html">
1) Check if a number is odd or even in JavaScript.
4) Find the largest of 3 number in JavaScript.
</a>
</p>
</li>

<li>
<p>
<a href="./even-odd/even-odd.html">
1) Check if a number is odd or even in JavaScript.
5) Check if a triangle is equilateral, scalene, or isosceles
in JavaScript.
</a>
</p>
</li>

<li>
<p>
<a href="./even-odd/even-odd.html">
1) Check if a number is odd or even in JavaScript.
6) Find the a number is present in given range in JavaScript.
</a>
</p>
</li>

<li>
<p>
<a href="./even-odd/even-odd.html">
1) Check if a number is odd or even in JavaScript.
7) Perform arithmetic operations on two numbers in JavaScript.
</a>
</p>
</li>

<li>
<p>
<a href="./even-odd/even-odd.html">
1) Check if a number is odd or even in JavaScript.
8) Find the grade for input marks in JavaScript.
</a>
</p>
</li>

<li>
<p>
<a href="./even-odd/even-odd.html">
1) Check if a number is odd or even in JavaScript.
9) Find number of days in a given month in JavaScript.
</a>
</p>
</li>

<li>
<p>
<a href="./even-odd/even-odd.html">
1) Check if a number is odd or even in JavaScript.
</a>
</p>
</li>

<li>
<p>
<a href="./even-odd/even-odd.html">
1) Check if a number is odd or even in JavaScript.
10) find the sign of the product of three numbers in
JavaScript. <br />Display an alert box with the specified
sign. <br />
Sample numbers : 3, -7, 2 <br />
Output : The sign is - .
</a>
</p>
</li>
Expand Down
4 changes: 4 additions & 0 deletions ch4-javascript-condition-and-loops/style.css → style.css
Original file line number Diff line number Diff line change
Expand Up @@ -15,4 +15,8 @@

.mainheading {
margin: 0.5rem 0rem;
}

.con-list li {
margin: 0.8rem 0rem 0rem 2rem;
}