Solution:
save the notepad document as sample.html and click on the file to see the output in the default browser.
sample.html
<html>
<style>
td {
width:10%;
}
</style>
<body>
<hr/>
<table style="width:30%">
<tr>
<td>Checkout</td>
<td>Total Shopping Amount</td>
<td>Auto populated</td>
<td>JavaScript/jQuery automatically calculates total amount
by adding shopping cart items.</td>
</tr>
<tr>
<td>Checkout</td>
<td>Total Tax</td>
<td>Auto populated</td>
<td>JavaScript/jQuery automatically calculates total shipping
charges due = total shipping amount* .08</td>
</tr>
<tr>
<td>Checkout</td>
<td>Total Shopping Amount</td>
<td>Auto populated</td>
<td>JavaScript/jQuery automatically calculates total shipping
charges due = total shipping amount* .03</td>
</tr>
<tr>
<td>Checkout</td>
<td>Total Amount Due</td>
<td>Auto populated</td>
<td>JavaScript/jQuery automatically calculates total amount
due by shopping amount + tax + shipping charges.</td>
</tr>
<tr>
<td>Checkout</td>
<td>Payment</td>
<td>Dropdown</td>
<td>VISA, MasterCard, American Express</td>
</tr>
<tr>
<td>Checkout</td>
<td>Card Number</td>
<td>Yes</td>
<td>Minimum 16 character. JavaScript validates only numbers
are allowed and 16 characters are entered.</td>
</tr>
</table>
</body>
</html>
i need help writing these in a simple html. i dont need it the javascript or...
I need help writting a Javascript function that does the
following its for a HTML/CSS Shopping Cart Page
CODE
This page contains a list of the selected products that includes an image, name, price, quantity, and cost) Because the process is implemented not as real, three products along with its image and price are displayed on the page. The product ID of each product is stored in a hidden textbox. The default amount of each product is 1 and the...
I am writing an html site and need help with dropdown navigation bars. The navigation bar should have dropdown menus to navigate around the site to different pages. The issue is that it cannot use <div> and while it can use javascript it would be highly preferred it did not. The navigation bar should also point to an outside css file if possible.
I am writing an html site and need help with dropdown navigation bars. The navigation bar should have dropdown menus to navigate around the site to different pages. The issue is that it cannot use div elements and while it can use javascript it would be highly preferred it did not. The home page is in its own directory as well as the css has its own directory and the web pages have their own directory. The navigation bar should...
I need help making a javascript program to do the following: A painting company has determined that for every 112 square feet of wall space, one gallon of paint and eight hours of labor will be required. The company charges $35.00 per hour for labor and $15.00 for a gallon of paint. Write a function that takes in the number of square feet of wall space and displays the following data: The number of gallons of paint required The hours...
NEED HELP with HTML with Javascript embedding
for form validation project below. I have my code
below but I'm stuck with validation. If anyone can fix it, I'd
really appreciate.
******************************************************************************
CODE:
<!DOCTYPE html>
<!--
To change this license header, choose License Headers in Project
Properties.
To change this template file, choose Tools | Templates
and open the template in the editor.
-->
<html>
<head>
<title>Nice</title>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width,
initial-scale=1.0">
<script>
var textFromTextArea;
function getWords(){
var text =...
given below are the project description and their Html and css
files i need javascript according to the project and other
files!
WEB230 - JavaScript 1 Assignment 6b - Event Delegation Before starting, study the HTML and open it in a browser so that you understand the structure of the document. You will add functionality to perform several tasks in our shopping list app. Clicking the red "X" at the right of an item will delete that item. Clicking on...
HTML Coding <html> <head> <title> Contact -- Charles Robertson </title> </head> <body bgcolor="white"> <table width="700" height="500" border="10"> <!-----row---1----logo---> <tr><td> <img src="20150516_084745" width="700" height="200"> </td></tr> <!-----row-2-navigation-----> <tr><td> <!----start-navigation-table----> <table width="700" height="100" border="5" bgcolor="lightgreen" > <tr><td><a href="HerbFarm.html"> <center> HOME </center></a></td> <td><a href="about3.html"> <center> ABOUT </center></a></td> <td><a href="contact3.html"> <center> CONTACT </center></a></td> <td><a href="gallery3.html"> <center> GALLERY </center></a></td> </tr> </table> <!------end-navigation-table----> </td></tr> <tr><td> <h1>Contact </h1> <form action="thankyou.html"> </form> <div class="row"> <div class="col-75"> <div class="container"> <form action="/action_page.php"> <div class="row"> <div class="col-50"> <h3>Billing Address</h3> <label for="fname"><i...
I need help solving problem 9.16 from matlab for engineers holly moore 4th edition % 9.16 A store owner asks you to write a program for use in the checkout process. % The program should: % • Prompt the user to enter the cost of the first item. % • Continue to prompt for additional items, until the user enters 0. % • Display the total. % • Prompt for the dollar amount the customer submits as payment. % •...
I need help with this please. My professor wants journal entries
for every one of these dates.
Prepare journal entries to record the following merchandising transactions of Cabela's, which uses the perpetual inventory system and the gross method. Hint: It will help to identify each receivable and pay- able; for example, record the purchase on July 1 in Accounts Payable-Boden. Purchased merchandise from Boden Company for $6,000 under credit terms of 1/15, n/30, FOB shipping point, invoice dated July 1...
For my assignment I have to write a program that creates a restaurant billing system. I think that I got it correct but it says that it is incorrect, so I was wondering if someone would be able to look over my code. It says that I need tax of $0.20, and the amount due to be $4.10, which is what I have in my output.https://imgur.com/a/jgglmvWMy issue is that I have the correct outcome when I run my program but...