-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
20 lines (20 loc) · 868 Bytes
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>ASSIGNMENT 2</title>
<script src="./app.js"></script>
</head>
<body style="background-color: tomato;">
<h1>ASSIGNMENT 02</h1>
<ul>
<li> Create a program that calculates the area of a rectangle. Declare two
variables length and width and assign them values. Use the variables
to calculate the area of the rectangle and store the result in a
variable named area. Finally, print the calculated area to the console.</li>
<li> Write a program that uses the prompt method to ask the user for
their name and then displays a personalized greeting using alert. Store the user's input in a variable </li>
</ul>
</body>
</html>