1. Add code to the HTML file to reference the script.js file using best practices. Other than this, do not modify either the HTML or CSS file. 2. In the script.js file set strict mode for JavaScript. 3. Create a new h3 element with your name in it and insert it before the first paragraph. 4. In the footer, add a cite element with the text "Information and photos from Wikipedia" where "Wikipedia" is a link to the page "https://en.wikipedia.org/wiki/Bumblebee". 5. console.log the number of paragraphs with some descriptive text (open the browser console to see the output). 6. Add the class "special" to the second h2 element. 7. Select all the figcaptions and make the font italic. (This will require a for loop.) 8. Once complete, use Zip to compress the whole folder (including all files) and submit the zip file.
Using multi dimensional arrays, create an array that will store 10 items of stock with brand name. Number of stock in store and Quantity sold
Bike Search
The goal of this coding exam is to quickly get you off the ground with HTML search input element and Bootstrap spinner
Use the below reference image
https://assets.ccbp.in/frontend/content/dynamic-webapps/bike-search-op.gif
HTML
<!DOCTYPE html>
<html>
<head></head>
<body>
Your code
</body>
</html>
Instructions
Achieve the design with HTML, CSS, and functionality with JS
Create an HTML & CSS quick-reference guide that covers all of the tags we've covered so far (and a few extras) with a description of how to use them and code examples.
Create a new index.html file and include the following:
Nature View
The goal of this coding exam is to quickly get you off the ground with the media feature orientation with different values
Refer to the below images
In portrait mode
https://assets.ccbp.in/frontend/content/intermediate-rwd/nature-view-op-portrait.png
In landscape mode
https://assets.ccbp.in/frontend/content/intermediate-rwd/nature-view-op-landscape.png
Use the image URL given below.
Responsive Header
Refer to the below images
Extra Small (Size < 576px), Small (767 >= 576px):
https://assets.ccbp.in/frontend/content/intermediate-rwd/responsive-header-op-mobile-v2.png
Medium (Size >= 768px), Large (Size >= 992px) and Extra Large (Size >= 1200px):
https://assets.ccbp.in/frontend/content/intermediate-rwd/responsive-header-op-desktop.png
Use the image URLs given below.
Responsive Layout
Refer to the below image
Extra Small (Size < 576px), Small (Size >= 576px):
https://assets.ccbp.in/frontend/content/intermediate-rwd/responsive-layout-op-mobile.png
Medium (Size >= 768px), Large (Size >= 992px) and Extra Large (Size >= 1200px):
https://assets.ccbp.in/frontend/content/intermediate-rwd/responsive-layout-op-desktop.png
The goal of this coding exam is to quickly get you off the ground with All Syntaxes Of Event Listeners
Use the below reference image
https://assets.ccbp.in/frontend/content/dynamic-webapps/all-syntaxes-of-event-listeners-op.gif
HTML
<!DOCTYPE html>
<html>
<head>
</head>
<body>
<div class="text-center">
<p class="message-text" id="message"></p>
<button onclick="inlineEventListener()" class="btn-primary mb-3">
Button with Inline event listener
</button>
<button id="onEventListenerBtn" class="btn-secondary mb-3">
Button with onevent listener
</button>
<button id="addEventListenerBtn" class="btn-warning mb-3">
Button with addEventListener
</button>
</div>
</body>
</html>
Hourly Stop Watch
The goal of this coding exam is to quickly get you off the ground with the clearInterval and setInterval.
Refer to the below image.
https://assets.ccbp.in/frontend/content/react-js/hourly-stop-watch-op.gif
HTML
<!DOCTYPE html>
<html>
<head></head>
<body>
<div class="text-center">
<p class="timer">
<span id="minutes">00</span>:<span id="seconds">00</span>
</p>
<button class="bg-start-button button" id="startBtn">
Start
</button>
<button class="bg-stop-button button" id="stopBtn">
Stop
</button>
</div>
</body>
</html>