-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathday-2b.html
More file actions
29 lines (27 loc) · 848 Bytes
/
day-2b.html
File metadata and controls
29 lines (27 loc) · 848 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Day 2 Part B</title>
</head>
<body>
<h1>Day 2 Part B</h1>
<h3>Example</h3>
<p>We will ask for the user's name. Then you add some code to ask for the user's favorite ice cream flavor.</p>
<script>
let userName;
userName = prompt("What is your name?");
document.write(`Hi ${userName}, nice to see you again!`);
</script>
<h3>You Try It!</h3>
<p>Ask for the user's favorite ice cream flavor. And write a message about it.</p>
<script>
let favIceCream;
// try it! prompt for favorite ice cream
// try it! Write a message about the favorite ice cream flavor.
document.write();
</script>
</body>
</html>