Try this one level 2 lesson 4 javascript
// create variables and log their values
var bestApp='I love studytonight';
console.log(bestApp);
let myNum=1;
console.log(myNum);
console.log(true);
try this one level 9 lesson 4
<!DOCTYPE html>
<html>
<head></head>
<title>My Login Form </title>
<body>
<h1>Login Form</h1>
<form>
<div>
<label>Email</label>
<input type="email" name="email"/>
</div>
</form>
</body>
</html>