Online Access Free Web-Development-Applications Practice Test
| Exam Code: | Web-Development-Applications |
| Exam Name: | WGU Web Development Applications |
| Certification Provider: | WGU |
| Free Question Number: | 138 |
| Posted: | Jun 01, 2026 |
Given the following HTML:
```html
<div class="example">Example</div>
```
And the style:
```css
.example {
background: red;
}
```
Which line of code changes the background color of the `<div>` when the width is between 600 and 900 pixels or more than 1,100 pixels?
Given the following code:
```html
<form name="Fcrm" action="/aczion.asp" onsubmit="return validateForm()" method="post"> Name: <input type="text" name="name">
<input type="submit" value="Submit">
</form>
```
Which type of form validation is used?
