-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathwebsite.html
More file actions
38 lines (34 loc) · 888 Bytes
/
website.html
File metadata and controls
38 lines (34 loc) · 888 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
34
35
36
37
38
<!DOCTYPE html>
<html>
<head>
<title>HTML CSS Review</title>
<style>
.red-button
{
background-color: red;
color: black;
border: none;
}
.yellow-button
{
background-color: rgb(4, 0, 255);
color: black;
border: rgb(151, 39, 39);
border-style: ridge;
}
</style>
</head>
<body>
<button title="Good job!" class="red-button" onclick="alert('Good job!')">
hello
</button>
<p>
paragraph of <button class="yellow-button">hello</button> text
</p>
<script>
console.log(2 + 2);
console.log("Hello world");
alert('hello');
</script>
</body>
</html>