-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathjstuten2.html
More file actions
33 lines (29 loc) · 729 Bytes
/
jstuten2.html
File metadata and controls
33 lines (29 loc) · 729 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
30
31
32
33
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>JS Funtion</title>
<style>
#di1{
background-color: yellow
}
.pmy{
color:blue;
text-align: center;
}
#myb{
color: tomato;
}
</style>
</head>
<body>
<div id = "di1">
<p>Q2-Create a button when clicked prompt the user to enter their name and age display it on page</p>
<p id="p1" class="pmy"></p><br>
<p id="p2" class="pmy"></p>
<button id="myb">click</button>
</div>
<script src="jstute2n.js"></script>
</body>
</html>