The HTML
<ul id='dress-list'>
<li class='dresses'>Pink Dress</li>
<li class='dresses'>Blue Dress</li>
<li class='dresses'>Black Dress</li>
<li class='dresses'>Red Dress</li>
</ul>
The HTML
<ul id='dress-list'>
<li class='dresses'>Pink Dress</li>
<li class='dresses'>Blue Dress</li>
<li class='dresses'>Black Dress</li>
<li class='dresses'>Red Dress</li>
</ul>
<form action="#fakeFormProcessor.html" method="post">
<fieldset>
<label for="name"></label>
<input type="text" name="name" value="">
</fieldset>
<fieldset>
<label for="phone"></label>
<input type="text" name="phone" value="">
</fieldset>
<table>
<thead>
...
</thead>
<tbody> <!-- table body declaration -->
<tr> <!-- table row start -->
<td>Salad</td> <!-- table body cell -->
<td>Delicious Cobb Salad</td> <!-- table body cell -->
$7.99
<!DOCTYPE html>
<html>
<head>
<title>My First Site</title>
</head>
<body>
<header>This where the logo or top navigation would go!</header>
<aside class="sidebar">
This is sidebar text!
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title></title>
</head>
<body>
<!-- What is wrong with the HTML snippet below? --> | |
<div><h1>Hello world!</div></h1> | |
// What will the JS below print to the screen once executed? | |
function foo(x) { | |
return x + 10 | |
} | |
function bar(y) { | |
return foo(y) | |
} |
// What is the value of foo here? | |
var foo; |