diff --git a/calc..html b/calc..html new file mode 100644 index 0000000..e383a7d --- /dev/null +++ b/calc..html @@ -0,0 +1,55 @@ + + + + + + Document + + + +
+

Calculator

+
+
+
+ +
+
+ +
+ + + + + +
+
+ + + + + +
+
+ + + + + +
+
+ + + + + +
+ +
+ +
+ +
+
+ + diff --git a/calc.css b/calc.css new file mode 100644 index 0000000..85d084b --- /dev/null +++ b/calc.css @@ -0,0 +1,22 @@ +body{ + background-color: rgb(182, 247, 144); + background-image: url(https://images.unsplash.com/photo-1559686475-c44247959fbc?ixlib=rb-1.2.1&ixid=eyJhcHBfaWQiOjEyMDd9&auto=format&fit=crop&w=500&q=60); +} +#screen{ + width: 27%; + margin-left: 36px; + height: 40px; + margin-top: 30px; + pointer-events: none; +} +.btn{ + width: 60px; + height: 45px; + margin-left: 30px; + margin-top: 30px; + font-size: 20px; + background-color: #f1e5e5; +} + + + \ No newline at end of file diff --git a/calc.js b/calc.js new file mode 100644 index 0000000..bb92821 --- /dev/null +++ b/calc.js @@ -0,0 +1,12 @@ +function buttonClick(val) +{ + document.getElementById("screen").value=document.getElementById("screen").value+val; +} +function displayClear(){ + document.getElementById("screen").value="" +} +function equalClick(){ + var text=document.getElementById("screen").value + var result=eval(text) + document.getElementById("screen").value=result +} diff --git a/form.html b/form.html new file mode 100644 index 0000000..8475c50 --- /dev/null +++ b/form.html @@ -0,0 +1,44 @@ + + + + Registration Form + + +

Registration Form

+
+ + +

+ + +
+
+ + + + + + + +

+ +
+
+ + +

+ I accept the terms and condition +

+ +
+ + + \ No newline at end of file diff --git a/index.html b/index.html deleted file mode 100644 index 078f59f..0000000 --- a/index.html +++ /dev/null @@ -1,8 +0,0 @@ - - - Fi Pro Challenge - - -Lets Begin The Challenge - - diff --git a/porrtfolio.html b/porrtfolio.html new file mode 100644 index 0000000..fb57146 --- /dev/null +++ b/porrtfolio.html @@ -0,0 +1,72 @@ + + + + My Portfolio + + + +



Hi, I'm Famina.V.P

+

Community Lead at TinkerHub | Bachelor of Technology in Information Technology

+ + +


+ +
+ + + + + + + + + + + + + + + + + + + + + + + + + + +
Platform LogoPlatform NameUser name
+
+
Githubfaminavp
+
+
LinkedInfamina vp
+
+
Instagramfamina.v.p
+
+
WhatsaAppfamina.v.p
+
+
Facebookfamina.v.p
+
+ + +
+ + + \ No newline at end of file diff --git a/socialmedia.html b/socialmedia.html new file mode 100644 index 0000000..6908a0c --- /dev/null +++ b/socialmedia.html @@ -0,0 +1,47 @@ + + + Social Media +

Social Media Accounts

+ +
+ + + + + + + + + + + + + + + + + + + + + + + + + + + +
Platform LogoPlatform NameUser name
+
+
Githubfaminavp
+
+
LinkedInfamina vp
+
+
Instagramfamina.v.p
+
+
WhatsaAppfamina.v.p
+
+
Facebookfamina.v.p
+ + + \ No newline at end of file