
****This requires some effort so please drop a like if you are satisfied with the solution****
index.html:
<html>
<head><link href="style.css" rel="stylesheet"></head>
<body>
<h2>Your Name</h2>
<h1 id="title">CSCE 102 Grade Calculator</h1>
<div>
<table style="text-align:left">
<tr><th>Test 1</th>
<td><label for="exam1">0<input type="range" id="exam1" onchange="test1()">100</label></td>
<td id="test1val">00</td></tr>
<tr><th>Test 2</th>
<td><label for="exam2">0<input type="range" id="exam2" onchange="test2()">100</label></td>
<td id="test2val">00</td></tr>
<tr><th>Final Exam</th>
<td><label for="Fexam">0<input type="range" id="Fexam" onchange="Fexam()">100</label></td>
<td id="FexamVal">00</td></tr>
<tr><th>Labs</th>
<td colspan="2"><input type="number"></td></tr>
<tr><th>Project</th>
<td colspan="2"><input type="number"></td></tr>
<tr><th>Quizzes</th>
<td colspan="2"><input type="number"></td></tr>
<tr><td colspan="3"><button style="width:100%">Calculate Grade</button></td></tr>
<tr><th>Score:</th>
<td colspan="2" id="score"></td></tr>
<tr><th>Letter:</th>
<td colspan="2" id="letter"></td></tr>
</table>
</div>
<script src="script.js"></script>
</body>
</html>
style.css:
table {
border-collapse: collapse;
}
table,th,td{
border: 1px solid black;
}
script.js:
function test1(){
document.getElementById("test1val").innerHTML=document.getElementById("exam1").value;
}
function test2(){
document.getElementById("test2val").innerHTML=document.getElementById("exam2").value;
}
function Fexam(){
document.getElementById("FexamVal").innerHTML=document.getElementById("Fexam").value;
}
Output Screenshot:

Code Screenshot:



please help witb coding! this is a beginner level class! second picture is what it is...
I NEED SOME HELP WITH THIS PLEASE
:)
1. Create a data entry form on one of your web pages for visitors who want to be added to your mailing list. Include one of each of the following input elements*: Text <input type="text".... • Tel <input type="tel".... . Email <input type="email"... Date <input type="date"... . A set of radio buttons <input type="radio"... • A set of check boxes <input type="checkbox"... • A select element with options <select>.....</select> (do NOT add...
i need the code that goes within the <script> opening
and closing following the insturctions of the insturctions of the
pasted assignment screen shots please.
<!DOCTYPE html>
<html>
<head>
<!--
JavaScript 6th Edition
Chapter 3
Hands-on Project 3-1
Filename: index.htm
-->
<meta charset="utf-8" />
<meta name="viewport"
content="width=device-width,initial-scale=1.0">
<title>Hands-on Project 3-1</title>
<link rel="stylesheet" href="styles.css" />
<script
src="modernizr.custom.05819.js"></script>
</head>
<body>
<header>
<h1>
Hands-on Project 3-1
</h1>
</header>
<article>
<h2>Lunch selections</h2>
<form>
<input type="checkbox" id="item1" value="8" />
<label for="item1">Fried chicken
($8.00)</label>
<input type="checkbox"...
Write the code in python, if you cannot answer all the question
please dont anser, thanx very much. Please gimme a screen shot for
code.
Write clear code with comments and follow coding convention. Comments should include your name, student number and subject code on top of your code Question 1 Create a list to store all the subject codes that you are currently doing at UOW Then use for loop to display it in a table as in the...
Please help. I need a very simple code. For a CS 1 class. Write a program in Java and run it in BlueJ according to the following specifications: The program reads a text file with student records (first name, last name and grade). Then it prompts the user to enter a command, executes the command and loops. The commands are the following: "printall" - prints all student records (first name, last name, grade). "firstname name" - prints all students with...
***************************************PLEASE USE AN ARRAY NOT A
POINTER********************************************
Detailed Specification: Write six basic functions for the BST: Insert, Delete, Search, Find max, Find min, and Print_BST 1. Search(x): Find out the index that stores element x using binary search tree mechanism. Print out all the elements in the search path. 2. Find max(): Find and print maximum value in BST 3. Find min): Find and print minimum value in BST 4. Print BST: Print out the BST structure in the form...
PLEASE HELP: EASY CODE. Using your template create a webpage that contains a div. Give the body element the id of TOOscary. Give the div the id of ghost. At the bottom of the page (just before the closing body tag) insert a script element. In the script element insert an assignment statement to save the content of the webpage using the variable candy. Hint: candy= document.getElementById(‘TOOscary’).innerHTML; We want to save it so we can bring it back after we...
URGENT HELP NEEDED: JQuery. PLEASE POST SCREEN SHOTS Task 1: Downloading jQuery Right-click the link to download the uncompressed latest version of jQuery Copy the jQuery.x.x.x.js file in the folder and specified as source file. Task 2: Download and install HTML-Kit 1. Navigate to htmlkit.com. 2. Click Download HTML-Kit 292. After it downloads, launch HKSetup.exe. Choose Full installation (the default) Uncheck Yes, download and install HTML-Kit Tools Trial. 6. Click Next>Finish. Task 3: Creating a Simple jQuery Application Launch HTML-Kit....
can you do this js and html question. ill give you the html and
js and css files just fix my error use if and else like what i did
dont use switch just fix my erorr.
<!DOCTYPE html>
<!-- Webpage HTML document for Lab 4.
Authors: Amirhossein Chinaei, Andriy Pavlovych
For: EECS 1012, York University, Lassonde School of Engineering
-->
<html lang="En">
<head>
<meta charset="UTF-8">
<!-- title for web page -->
<title> EECS1012: Lab 4 - Computational Thinking
</title>...
X86 Assembly language lab: TITLE Lab 3: assembly language fundamentals ;;;;; Q1: Don't forget to document your program ; Name:Yuyan Wang ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; ;;;;; Answer each question below by writing code at the APPROPRIATE places in the file. ;;;;; Hint: the appropriate place is not always right below the question. ;;;;; Q2: Write the directive to bring in the IO library ;;;;; Q3: Create a constant called MAX and initialize it to 150...
*** FOR A BEGINNER LEVEL JAVA CLASS, PLEASE KEEP CODE SIMPLE, AND WE USE BLUE J IN CLASS (IF IT DOESNT MATTER PLEASE COMMENT TELLING WHICH PROGRAM YOU USED TO WRITE THE CODE, PREFERRED IS BLUE J!!)*** ArrayList of Objects and Input File Use BlueJ to write a program that reads a sequence of data for several car objects from an input file. It stores the data in an ArrayList<Car> list . Program should work for input file containing info...