added other units

This commit is contained in:
Benjamin Adovasio
2025-11-16 22:54:34 -05:00
parent 5bd461229a
commit ca92b603be
46 changed files with 2779 additions and 0 deletions

21
Unit 4/Day 2/index.html Normal file
View File

@@ -0,0 +1,21 @@
<!doctype html>
<html>
<head>
<title>Unit 4 Day 2</title>
<link href="style.css" rel="stylesheet" type="text/css" />
</head>
<body>
<h1>Count "s" and "S" characters</h1>
<label for="input1">Input:</label>
<input type="text" id="input1"></input>
<button onclick="program1(document.getElementById('input1').value)">Submit</button>
<p>Output: <p id="out1"></p></p>
<hr>
<h1>Capitalize every odd number letter and lowercase every even number letter</h1>
<label for="input2">Input:</label>
<input type="text" id="input2"></input>
<button onclick="program2(document.getElementById('input2').value)">Submit</button>
<p>Output: <p id="out2"></p></p>
<script src="script.js"></script>
</body>
</html>