diff --git a/MLSAKIET_FWdevops_INTERNSHIP b/MLSAKIET_FWdevops_INTERNSHIP new file mode 160000 index 00000000..cd858e91 --- /dev/null +++ b/MLSAKIET_FWdevops_INTERNSHIP @@ -0,0 +1 @@ +Subproject commit cd858e91200bdca3e9ddc0b3498586d605ccd337 diff --git a/Project Report on MLSA Internship.pdf b/Project Report on MLSA Internship.pdf new file mode 100644 index 00000000..eda5df64 Binary files /dev/null and b/Project Report on MLSA Internship.pdf differ diff --git a/Recording 2024-10-29 222457.mp4 b/Recording 2024-10-29 222457.mp4 new file mode 100644 index 00000000..16b5f979 Binary files /dev/null and b/Recording 2024-10-29 222457.mp4 differ diff --git a/easy_webpage.css b/easy_webpage.css new file mode 100644 index 00000000..7d8b6039 --- /dev/null +++ b/easy_webpage.css @@ -0,0 +1,27 @@ +body { + font-family: Arial, sans-serif; + + background-color: #ebe6a7; +} +header { + text-align: center; + margin-bottom: 20px; + border: 1cm; + border-color: aliceblue; +} +.Profile { + display : flex; + margin-left: 10px; + height: 100px; + width : 100px; +} +.Bio{ + margin-bottom: 50px; +} +.contact, .links{ + margin-left: 500px; + margin-bottom: 30px; +} +a:hover { + text-decoration: underline; +} \ No newline at end of file diff --git a/easy_webpage.html b/easy_webpage.html new file mode 100644 index 00000000..63cc955a --- /dev/null +++ b/easy_webpage.html @@ -0,0 +1,32 @@ + + + + + + My Profile + + + +
+

My Profile

+
+
+ Profile picture +
+
+

Bio

+

Lorem ipsum dolor sit, amet consectetur adipisicing elit. Quae maiores voluptate deserunt deleniti quam, perspiciatis, ipsa mollitia similique vitae nihil sint ab. Alias recusandae dolorum eligendi iure pariatur eos quas?

+
+
+

Email :- mehulnirwal7417@gmail.com

+
+ + + \ No newline at end of file diff --git a/intermediate_calci.css b/intermediate_calci.css new file mode 100644 index 00000000..faf46484 --- /dev/null +++ b/intermediate_calci.css @@ -0,0 +1,50 @@ +.calci { + background-color: white; + margin: 10px; + padding: 50px; + border-radius: 15px; + box-shadow: 0 0 10px rgba(0, 0, 0, 0.1); +} +#res { + width: 100%; + height: 100px; + font-size: 24px; + + text-align: right; + margin-bottom: 20px; + padding: 5px; + border: 1px solid black; + + +} +body { + font-family: serif, Arial, Helvetica, sans-serif; + justify-content: center; + align-items: center; + height: 120vh; + background-color: rgb(243, 215, 164); + display: flex; +} +.buttons { + display: grid; + grid-template-columns: repeat(4, 1fr); + gap: 20px; +} +.head{ + text-align: center; + margin-right: 250px; +} +button { + padding: 15px; + font-size: 18px; + border: 10px solid; + border-radius: 4px; + cursor: pointer; + background-color: green; + color: white; + transition: background-color 0.3s; +} + +button:hover { + background-color: red; +} \ No newline at end of file diff --git a/intermediate_calci.html b/intermediate_calci.html new file mode 100644 index 00000000..85a9ad65 --- /dev/null +++ b/intermediate_calci.html @@ -0,0 +1,42 @@ + + + + + + Calculator + + + + + +
+

Calculator

+
+ + +
+ + +
+ + + + + + + + + + + + + + + + + + +
+
+ + \ No newline at end of file diff --git a/intermediate_calci.js b/intermediate_calci.js new file mode 100644 index 00000000..df547134 --- /dev/null +++ b/intermediate_calci.js @@ -0,0 +1,16 @@ +function addToResult(value) { + document.getElementById('res').value += value; +} + +function clearPanel() { + document.getElementById('res').value = ''; +} + +function calculateResult() { + const resultField = document.getElementById('res'); + try { + resultField.value = eval(resultField.value); + } catch (error) { + resultField.value = 'Error'; + } +} diff --git a/profilepic.jpg b/profilepic.jpg new file mode 100644 index 00000000..3646e62e Binary files /dev/null and b/profilepic.jpg differ