forked from Dhanushpolagani/JavaScript-Course
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathwebsite.html
More file actions
31 lines (30 loc) · 701 Bytes
/
website.html
File metadata and controls
31 lines (30 loc) · 701 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
<!DOCTYPE html>
<html>
<head>
<title>java script</title>
</head>
<body>
<style>
.red{
background-color: red;
border: none;
color: white;
}
.yello{
background-color:yellow;
color:black;
}
</style>
<button class="red">hello</button>
<p>
paragraph of <button title="good job" class="yello" onclick="
alert('good job');
">hello
</button>
text
</p>
<script>
alert('hello');
</script>
</body>
</html>