diff --git a/Labmanual/capi.html b/Labmanual/capi.html
new file mode 100644
index 0000000..aec3404
--- /dev/null
+++ b/Labmanual/capi.html
@@ -0,0 +1,11 @@
+
+
+
+
+
+ Document
+
+
+
+
+
\ No newline at end of file
diff --git a/Labmanual/capi.js b/Labmanual/capi.js
new file mode 100644
index 0000000..28197d2
--- /dev/null
+++ b/Labmanual/capi.js
@@ -0,0 +1,13 @@
+
+let str = prompt("Enter any string");
+
+let result = str.charAt(0).toUpperCase() + str.slice(1).toLowerCase();
+
+console.log(result);
+
+
+
+
+
+
+
diff --git a/Labmanual/vowel1.html b/Labmanual/vowel1.html
new file mode 100644
index 0000000..823b309
--- /dev/null
+++ b/Labmanual/vowel1.html
@@ -0,0 +1,11 @@
+
+
+
+
+
+ Document
+
+
+
+
+
\ No newline at end of file
diff --git a/Labmanual/vowel1.js b/Labmanual/vowel1.js
new file mode 100644
index 0000000..3b9b435
--- /dev/null
+++ b/Labmanual/vowel1.js
@@ -0,0 +1,13 @@
+
+
+let str=prompt("enter any string");
+let count=0;
+
+console.log(str);
+
+for(let i=1;i