HTML/JavaScript Web Application Answers

Questions: 680

Answers by our Experts: 648

Need a fast expert's response?

Submit order

and get a quick answer at the best price

for any assignment or question with DETAILED EXPLANATIONS!

Search & Filtering

Speed Typing Test

Please Refer to the below image.

https://assets.ccbp.in/frontend/content/dynamic-webapps/speed-typing-test-output.gif

I want an exact output as in this Image link with proofs & use bootstrap 4.5


Instructions:

  • Add HTML container element with id speedTypingTest
  • Add HTML paragraph elements with id timer, quoteDisplay and result
  • Add HTML textarea element with id quoteInput
  • Add HTML button elements with id submitBtn and resetBtn
  • Add the Bootstrap component spinner

Resources

Clock Image:

  • https://assets.ccbp.in/frontend/dynamic-webapps/clock-img.png

Html,Css,Javascript program for Bookmark Maker

Please Refer to this below image.

https://assets.ccbp.in/frontend/content/dynamic-webapps/bookmark-maker-output.gif

I want an exact output as in this Image link with proofs & use bootstrap 4.5


Instructions:

  • The page should have HTML form element with id bookmarkForm
  • The HTML form element with id bookmarkForm should have HTML input elements with ids siteNameInput and siteUrlInput
  • The HTML form element with id bookmarkForm should have HTML button element with id submitBtn
  • Add HTML label elements for HTML input elements with ids siteNameInput and siteUrlInput
  • The HTML form element with id bookmarkForm should have HTML p elements with ids siteNameErrMsg and siteUrlErrMsg
  • The page should have HTML unordered list element with id bookmarksList
  • Each bookmark item should contain a HTML anchor element to navigate to the bookmarked site

Warning

  • Please provide valid URL's to the siteUrlInput element

Html,Css & javascript program for Time Converter


Please Refer to this below image.

https://assets.ccbp.in/frontend/content/dynamic-webapps/time-converter-output.gif

I want an exact output as in this image link with proof and use bootstrap 4.5


Instructions:

  • The HTML input element for entering the number of hours should have the id hoursInput
  • The HTML input element for entering the number of minutes should have the id minutesInput
  • Add HTML label elements for HTML input elements with ids hoursInput and minutesInput
  • The HTML button element should have the id convertBtn
  • The HTML p element to display the converted time in seconds should have the id timeInSeconds
  • The HTML p element to display the error message should have the id errorMsg

Note

  • The values given for the HTML input elements with ids hoursInput and minutesInput should be positive integers.
Create a form, using HTML, for admission to a University. The form should ask for the following information: (3 Marks)  Your email id as user name (it should be of the type xxxx@abc.in)  A pin chosen by you (should have a minimum size of 4 decimal digits)  Name of the Student  City in which student is residing (You should create a drop-down list of about 4 to 6 cities for selection of City, default value for City should be Mumbai)  Select from the options Yes/No for the question Mathematics at 10+2?  The form should include a SUBMIT button

Search Item in a Mart Given an array

mart of objects in the prefilled code and categoryOfItem, item as inputs, create a JS promise,


resolve with "Item Found" text, if the


categoryOfItem matches with the category and the corresponding items list includes the item


reject with "Category Not Found" text, if the


categoryOfItem does not match with any catergory in the mart


reject with "Item Not Found" text, if the


items list does not include item


Use async/await and try/catch blocks.


Quick Tip

You can use array methods find() and includes().

Input

The first line of input contains a string categoryOfItem

The second line of input contains a number item

Sample Input 1

pulses

green gram

Sample Output 1

Item Found


function main() {

 const categoryOfItem = readLine();

 const item = readLine();


 const mart = [

  {

   category:"pulses",

   items: ["green gram", "green peas", "Turkish gram"]

  },


}







//Add a function in the event listener that post the LATlng to a python file

function initMap() {

 const myLatlng = { lat: -33., lng: 18 };

 const map = new google.maps.Map(document.getElementById("map"), {

  zoom: 4,

  center: myLatlng,

 });

 // Create the initial InfoWindow.

 let infoWindow = new google.maps.InfoWindow({

  content: "Click the map to get Lat/Lng!",

  position: myLatlng,

 });


 infoWindow.open(map);

 // Configure the click listener.

 map.addListener("click", (mapsMouseEvent) => {

  // Close the current InfoWindow.

  infoWindow.close();

  // Create a new InfoWindow.

  infoWindow = new google.maps.InfoWindow({

   position: mapsMouseEvent.latLng,

  });

  infoWindow.setContent(

   JSON.stringify(mapsMouseEvent.latLng.toJSON(), null, 2)

  );

  infoWindow.open(map);

 });

}


Write a program that asks the user to enter a number between 1 and 100 in a form. If the

number is less than 10, display “That’s really small.” If it’s between 10 and 50, say “not too big.”

If it’s more than 50, display “That’s a big one!”


Time Converter

Refer to the below image.

https://assets.ccbp.in/frontend/content/dynamic-webapps/time-converter-output.gif

Instructions:

  • The HTML input element for entering the number of hours should have the id hoursInput
  • The HTML input element for entering the number of minutes should have the id minutesInput
  • Add HTML label elements for HTML input elements with ids hoursInput and minutesInput
  • The HTML button element should have the id convertBtn
  • The HTML p element to display the converted time in seconds should have the id timeInSeconds
  • The HTML p element to display the error message should have the id errorMsg

Quick Tip

  • timeInSeconds = ((hours) *60 + minutes) * 60

Note

  • The values given for the HTML input elements with ids hoursInput and minutesInput should be positive integers.

Resources

Use this Background image:

  • https://assets.ccbp.in/frontend/dynamic-webapps/time-converter-bg.png

Book Search

In this assignment, let's build a Book Search page by applying the concepts we learned till now.

Refer to the below image.

https://assets.ccbp.in/frontend/content/dynamic-webapps/book_search_output.gif


Instructions:

  • Add HTML input element with id searchInput inside an HTML container element
  • Add HTML select element with id selectDisplayCount inside an HTML container element
  • Add HTML container element with id searchResults


Resources

Use this Background image:

https://assets.ccbp.in/frontend/dynamic-webapps/book-search-bg.png


Speed Typing Test

In this assignment, let's build a Speed Typing Test using Html,Css, Javascript

Refer to the below image.

https://assets.ccbp.in/frontend/content/dynamic-webapps/speed-typing-test-output.gif


Instructions:

  • Add HTML container element with id speedTypingTest
  • Add HTML paragraph elements with id timer, quoteDisplay and result
  • Add HTML textarea element with id quoteInput
  • Add HTML button elements with id submitBtn and resetBtn
  • Add the Bootstrap component spinner


Resources

Clock Image:

  • https://assets.ccbp.in/frontend/dynamic-webapps/clock-img.png
LATEST TUTORIALS
New on Blog
APPROVED BY CLIENTS