Home > Web Development > Quizzes > Building Websites with HTML, CSS, and JavaScript
Building Websites with HTML, CSS, and JavaScript
Fast practice, instant feedback. Timer auto-submits when time’s up.
Avg score: 62% Most missed: “In CSS, which value for 'background-repeat' will make an image repeat only verti…”

For Pluralsight Skill Assessments.

Building Websites with HTML, CSS, and JavaScript
Time left 00:00
14 Questions

1. The following are CSS rules for a user interface (UI) element of an application:
markdown
.ui-element {
background:
linear-gradient(105deg, rgba(255, 255, 255,.2) 39%, rgba(51,56,57,1) 96%) center
center / 400px 200px no-repeat,
url(big-star.png) center no-repeat,
rebeccapurple;
border-radius: 10px;
padding: .5em;
display: block;

Which rule rounds the corners of the UI elements?
2. Below is a CSS snippet that applies a color to an HTML element:
markdown
.one {
background-color: rgb(2, 121, 139)
color: #c55da1
}

If you want to increase the value of the color blue in this situation, which value should you change?
3. What does JavaScript provide for a webpage that expands upon HTML?
4. In CSS, which value for 'background-repeat' will make an image repeat only vertically?
5. What does the '' tag specify?
6. What image types can you use on a web page?
7. What is the primary function of a web server?
8. What does the 'body' tag define?
9. The following are CSS rules for a user interface (UI) element of an application:
markdown
.ui-element {
background:
linear-gradient(105deg, rgba(255, 255, 255,.2) 39%, rgba(51,56,57,1) 96%) center
center / 400px 200px no-repeat,
url(big-star.png) center no-repeat,
rebeccapurple;
border-radius: 10px;
padding: .5em;
display: block;

Which rule rounds the corners of the UI elements?
10. What does JavaScript provide for a webpage that expands upon HTML?
11. What are the components of an HTML element?
12. In CSS, which value for 'background-repeat' will make an image repeat only vertically?
13. Which action is a simple task that can be achieved using CSS?
14. You want to embed an image, which is a diagram, in an HTML page so the document flow is NOT affected if the image is removed from the page. How would you achieve this?