Database System Concepts
7th Edition
ISBN: 9780078022159
Author: Abraham Silberschatz Professor, Henry F. Korth, S. Sudarshan
Publisher: McGraw-Hill Education
expand_more
expand_more
format_list_bulleted
Question
thumb_up100%
Create a new webpage called "activity5.html". This new page must include the following:
- Write a variable text, "Hello Rasmussen Students!" into an HTML page and include HTML tags to make this text appear as a header.
- Create an alert box with the onload event that displays a popup that says, "Welcome, Rasmussen Students!"
- Create a second activity page called "activity5b.html" and save it to the activities folder. For this file, link it to an external JavaScript file called, "myfirst.js".
- The JavaScript file should display, "This is my first external JavaScript test!"
Expert Solution
This question has been solved!
Explore an expertly crafted, step-by-step solution for a thorough understanding of key concepts.
This is a popular solution
Trending nowThis is a popular solution!
Step by stepSolved in 4 steps with 3 images
Knowledge Booster
Learn more about
Need a deep-dive on the concept behind this application? Look no further. Learn more about this topic, computer-science and related others by exploring similar questions and additional content below.Similar questions
- I have the HTML part down - I'm just needing help with the javascirpt function. You must create a website page that asks the user to input information about themselves to see if they might be a good study buddy for you. Your webpage must have a form that posts information to StudyBuddy.js. You form must have a submit button labeled submit. You must have at least 3 of the following elements: text input element set of radio buttons checkbox drop down list box list box textarea All elements on your html page must be a different type. (i.e., You may not use 3 text input elements.) Each input must have a label that describes the value being input. Each input must have a label to signify if there is an error in the value entered for that field. You must use the following HTML 5 attributes at least once: autocomplete required novalidate pattern title You must add a function to StudyBuddy.js that will be called when the submit button is pressed. For each of the three elements you add…arrow_forwardIn a HTML5 document, code the followings: • Using an onload event, trigger a pop-up window showing the message «This was triggered by an event!» when the document has been loaded. • Create a button and, using an onclick event, trigger a pop-up window showing the message « Wow! This works! ». • Insert an image and then use an onmouseover event to trigger a pop-up window showing the message «This is a rollover ». 2.)Create a program that will display a message adapted to the user input data based on its age range: Age range Comment example 1 to 17 You're not major yet. 18 to 49 You are major, but not senior yet.2 50 to 64 You are senior, but not retired yet. Program's flow: • User loads the pages • User is asked to supply its age • The proper comment is displayedarrow_forwardPlease create an online document editor using HTML, CSS, and JavaScript. Include a menu where it show a cool journal logo and a button (Start journaling) to click In the online document editor include a copy and paste button, a file button, where user can click new (to open a new page) Open to click on any existing documents. Let documents be saved automatically. Please also include: - Font Size - Font Type - Bold text button - A way to change font color - And when writing once the text gets to the end of the page, let it start a new linearrow_forward
- Based on the following specification, code one webpage using HTML5, CSS and JavaScript. HTML5: Three label elements with IDs lblTarget1, lblTarget2 and lblTarget3 Two buttons with IDs btnA and btnB. Both buttons invoke function fManipulate when clicked JavaScript: Code a function named fManipulate that Accepts one parameter containing an object that represents the clicked button Check to see which of the two buttons invoked this function If fManipulate function was invoked by btnA then change the text color of lblTarget1 to red by using the getElementById method If fManipulate function was invoked by btnB then change the font of ALL three labels by first using the getElementsByTagName method to return a collection of labels then use a for loop to iterate through the collection of labels to change the font of each label to calibriarrow_forwardOn the index page, add a link that says "Subscribe To Our Marketing List". Clicking the link should take the user to another page that contains a signup form. The form should contain a subscribe button and the following text fields: Email Address, Re-enter Email Address, First Name. Using java create a script called subscribe.js, In the subscribe.js script, it should add an event for the subscribe button that listens for the onclick event. When the onclick event occurs, it should validate that the email text matches the re-enter email text and that the first name textbox is not empty. If the validation fails for either, display the appropriate error message beside the textbox. For example, This entry must equal the first entry, This field is required. If validation is successful, display an alert that says thanks for joining our list and remember to include your script on the page.arrow_forwardCreate an HTML document that has text boxes for apple (52 cents each), orange (46 cents each), and banana (34 cents each), along with a Submit button. These text boxes take a number, which is the purchased number of a particular fruit. Each of the text boxes should have its own onclick event handler. These handlers must add the cost of their fruit to a total cost. An event handler for the Submit button must produce an alert window with the message: Your total cost is $xyz, where xyz is the total cost of the chosen fruit, including 6 percent sales tax.arrow_forward
- The login.html image is shown below. The simple PHP module shows email and password fields for a user to enter. Analyze the code and identify one issue with the code regarding security. Explain the problem by identifying the line no. and provide the corrected line of code. login.html 1 2 3 4 5 6 7 8 9 10 11 12 13 14 Login Form Login Email Address: Password: 15 16 17arrow_forwardUsing java, Create a script called registration.js and include this script on the registration.html page. The Reset button should clear all form fields when clicked and the Register button should validate the form fields and if valid display an alert that the users account has been registered. If fields are invalid, it should display a table below the form that displays the data for valid entries and error messages for invalid entries. Existing code: <html><head><title>Registration Page</title><script src="./js/register.js"></script></head><body bgcolor="Lightskyblue"><br /><br /><form>Email: <input type="text" id="email" name="email"/> <br> <br> Phone: <input type="text" id="phone" name="phone"/> <br> <br> Address: <textarea id="address" name="address"> </textarea> <br> <br> City: <input type="text" id="city" name="city"/> <br> <br> State:…arrow_forward7. You would like to add a drop down list box to your web page showing each department but your code below is only showing d.DepartmentName not the actual department name when you run your application. How can you change the code so it works correctly? @foreach (Department d in ViewBag.Departments) { <option value="d.DepartmentID">d.DepartmentName</option> } 1. @foreach (Department d in ViewBag.Departments) should be changed to: @foreach (Department d in model.Departments) 2. @foreach (Department d in ViewBag.Departments) should be changed to: list(d in ViewBag.Departments) 3. <option value="d.DepartmentID">d.DepartmentName</option> should be changed to: <option value="d.DepartmentName">d.DepartmentName</option> 4. <option value="d.DepartmentID">d.DepartmentName</option> should be changed to: <option value="@d.DepartmentID">@d.DepartmentName</option>arrow_forward
arrow_back_ios
arrow_forward_ios
Recommended textbooks for you
- Database System ConceptsComputer ScienceISBN:9780078022159Author:Abraham Silberschatz Professor, Henry F. Korth, S. SudarshanPublisher:McGraw-Hill EducationStarting Out with Python (4th Edition)Computer ScienceISBN:9780134444321Author:Tony GaddisPublisher:PEARSONDigital Fundamentals (11th Edition)Computer ScienceISBN:9780132737968Author:Thomas L. FloydPublisher:PEARSON
- C How to Program (8th Edition)Computer ScienceISBN:9780133976892Author:Paul J. Deitel, Harvey DeitelPublisher:PEARSONDatabase Systems: Design, Implementation, & Manag...Computer ScienceISBN:9781337627900Author:Carlos Coronel, Steven MorrisPublisher:Cengage LearningProgrammable Logic ControllersComputer ScienceISBN:9780073373843Author:Frank D. PetruzellaPublisher:McGraw-Hill Education
Database System Concepts
Computer Science
ISBN:9780078022159
Author:Abraham Silberschatz Professor, Henry F. Korth, S. Sudarshan
Publisher:McGraw-Hill Education
Starting Out with Python (4th Edition)
Computer Science
ISBN:9780134444321
Author:Tony Gaddis
Publisher:PEARSON
Digital Fundamentals (11th Edition)
Computer Science
ISBN:9780132737968
Author:Thomas L. Floyd
Publisher:PEARSON
C How to Program (8th Edition)
Computer Science
ISBN:9780133976892
Author:Paul J. Deitel, Harvey Deitel
Publisher:PEARSON
Database Systems: Design, Implementation, & Manag...
Computer Science
ISBN:9781337627900
Author:Carlos Coronel, Steven Morris
Publisher:Cengage Learning
Programmable Logic Controllers
Computer Science
ISBN:9780073373843
Author:Frank D. Petruzella
Publisher:McGraw-Hill Education