-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathwebsite.html
48 lines (46 loc) · 1.3 KB
/
website.html
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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
<!DOCTYPE html>
<html>
<head>
<title>Game</title>
<style>
button{
background-color: aqua;
margin-bottom: 20px;
}
.HelloButton{
background-color: chartreuse;
}
.AddToCart{
background-color: yellow;
}
.BuyNow{
background-color: orange;
}
</style>
</head>
<body>
<button class="HelloButton"
onclick="alert('Good Job!');">
hello
</button>
<p>
paragraph of text <button> New button</button> of the website
</p>
<script>
alert('Hello');
console.log(2+3);
</script>
<button> Click </button><br>
<button> Simon</button>
<button>choclate</button>
<p>Hello,world!</p>
<p> Hello,world!<br> Today i went to the grocery store to buy some eggs and vegetables.</p>
<p> Adults Plain Cotton T-shirt<br>Price:$7.99</p>
<button class="AddToCart" onclick="
alert('Added');">
Add to cart</button>
<button class="BuyNow" onclick="
alert('Purchased');">
Buy now</button>
</body>
</html>