Square value added Get link Facebook X Pinterest Email Other Apps - December 10, 2023 ProblemZ=a²+y²Output: A=2 B=2 Z=8Solution of python code:a=int(input("Enter the a value"))y=int(input("Enter the y value"))z=a**2+y**2print ("SQUARE VALUE OF a and y is ",z)*Check it my code any interpreter* Get link Facebook X Pinterest Email Other Apps Comments
10 min. Webpage challenge - January 16, 2024 10 minutes challenge from sample web page create using the html and css:- Html code:- <!DOCTYPE html> <html> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1"> <link rel="stylesheet" href="stylesheet.css"> <title></title> </head> <body> <nav> <div class="logo"> <h1>Data</h1> </div> <div class="items"> <a href="div.html">Home |</a> <a href="lk.html">Service |</a> <a href="e.html">About |</a> <a href="add.html">contact </a> </div> </nav> <div class="body"> <h1>This page requires of implementation of code between user effective</h1> <p>Lorem ipsum dolor sit amet, consectetur adipisicing elit. Expedita, ratione.... Read more
Electricity bill calculator - January 16, 2024 Calculation of Electricity bill:- Calculation of Electricity bill in using html css and javascript code <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <link rel="stylesheet" href="estyle.css"> <title>Electricity Bill Calculator</title> <style> body { font-family: Arial, sans-serif; background-color: #f4f4f4; margin: 0; display: flex; justify-content: center; align-items: center; height: 100vh; } .calculator-container { background-color: #fff; padding: 20px; border-radius: 8px; box-shadow: 0 0 10px rgba(0, 0, 0, 0.1); text-align: center; } label { display: block; margin-bottom: 10px; } input { padding: 8px; width: 100%; margin-bottom: 20px; box-sizing: border-box; } butto... Read more
Comments
Post a Comment