Question

HTML Create a webpage with three divisions.  Division 1 occupies the left-side of the page with a few links of your choice.  Division 2 and 3 have the same width.  You may use % to specify the width.  For example, for division 1: width:20%, and for division 2 and 3: width:80%.   Division 2 is used to display an image of your choice using the background-image property.  Division 3 is to show the double-declining depreciation table, and has a background color of your choice.  The title of each division is positioned at the center of the division with a blue color.   Submit the source code with the screenshot.

My Favorite Links Welcome to YourNames Website sit Engadget My Javascript Programming example Double Declining Depreciation

Double Declining Depreciation Table Instructions:

For tax purpose an item may be depreciated over a period of several years N.  With the double-declining balance method of depreciation, each year the depreciation is calculated using this formula: depreciation=(its value at the beginning of that year) * 2/N.  In the last year it is depreciated by its value at the beginning of the last year.   Create a form with a textbox to enter property value and a textbox to enter property life. Show the property’s depreciation schedule when the button is clicked. Test your program with property value = 2000 and life = 5.

0 0
Add a comment Improve this question Transcribed image text
Answer #1

Answer:

Note: From the given table, I am assuming that the depreciation value is property_value / N (from the given table , I am assuming)

Code:

<!DOCTYPE html>
<html>
<head>
   <title>Web Page</title>
   <style type="text/css">
       table tr:nth-child(even){background-color: lightblue;}
       table tr:nth-child(odd){background-color: red;}
   </style>
</head>
<body style="margin-top: 0px;padding:0px">
   <div id="main" style="width: 100%;display: block;margin-top: 0px;padding: 0px">
       <div id="sidediv" style="width: 20%;background-color: lightblue;height:700px;display: block;margin-top: 0px;float: left">
           <h1 style="color:blue" align="center">My Favourite Links</h3>
           <a href="https://www.instinctme.com">instincme</a><br />
           <a href="https://www.google.com">Google</a><br />
           <a href="https://www.youtube.com">Youtube</a>
       </div>
       <div id="main_content">
           <div id="heading" style="width: 100%;background-image: url('1.jpg');height: 200px">
               <h1 align="center" style="color:blue;font-size: 40px">Welcome to KASIREDDY'S Website</h1>
           </div>
           <div id="tablediv" style="background-color: lightgreen;height: 500px">
                   <br />
                   <h1 align="center" style="color:blue"> My JavaScript Prgramming example</h1>
                   <h2 align="center" style="color: blue">Double Declining Depreciation Table</h3>

                   Enter Property Value : <input type="text" name="prop_value" id="prop_value" /><br /><br />
                   Enrter Property LifeL <input type="text" name="life" id="life" /> <br /><br />
                   <input type="button" onclick="dddt()" value="Show Table" /><br /><br />
                   <div id="table_area">
                   </div>
           </div>
       </div>
   </div>
   <script type="text/javascript">
       function dddt(){
           var prop_value = parseFloat(document.getElementById("prop_value").value);
           var life = parseInt(document.getElementById("life").value);
           var table = "<table border='1' style='border-collapse:collapse'><tr style='background-color:lightgreen'><th>Year</th><th>Value at BeginYr</th><th>Dep During Yr</th><th>Total to EndOfYr</th></tr>";
           var i, val_begin, dep_year, total_end_year=0;
           val_begin = prop_value;
           for(i=1;i<life;i++){
               dep_year = val_begin / life;
               total_end_year+= dep_year;
               table+="<tr><td>"+i+"</td><td>$"+val_begin.toFixed(2)+"</td><td>$"+dep_year.toFixed(2)+"</td><td>$"+total_end_year.toFixed(2)+"</td></tr>";
               val_begin = val_begin - dep_year;
           }
           table+= "<tr><td>"+life+"</td><td>$"+val_begin.toFixed(2)+"</td><td>$"+val_begin.toFixed(2)+"</td><td>$"+prop_value.toFixed(2)+"</td><tr></table>";
           document.getElementById("table_area").innerHTML = table;
       }
   </script>
</body>
</html>

code screenshot:

output:

Welcome to KASIREDDYS Website My Favourite Links Google My JavaScript Prgramming example Double Declining Depreciation Table

Add a comment
Know the answer?
Add Answer to:
HTML Create a webpage with three divisions.  Division 1 occupies the left-side of the page with a few links of your choice.  Division 2 and 3 have the same width.  You may use % to specify the width. ...
Your Answer:

Post as a guest

Your Name:

What's your source?

Earn Coins

Coins can be redeemed for fabulous gifts.

Not the answer you're looking for? Ask your own homework help question. Our experts will answer your question WITHIN MINUTES for Free.
Similar Homework Help Questions
ADVERTISEMENT
Free Homework Help App
Download From Google Play
Scan Your Homework
to Get Instant Free Answers
Need Online Homework Help?
Ask a Question
Get Answers For Free
Most questions answered within 3 hours.
ADVERTISEMENT
ADVERTISEMENT
ADVERTISEMENT