-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path04-website.html
More file actions
45 lines (42 loc) · 825 Bytes
/
04-website.html
File metadata and controls
45 lines (42 loc) · 825 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
39
40
41
42
<!DOCTYPE html>
<html>
<head>
<title>HTML CSS Review</title>
<style>
.red-button{
background-color: red;
color: white;
border: none;
}
.yellow-button{
background-color: yellow;
}
/* this is a coment */
</style>
</head>
<body>
<!-- this is a coment-->
<button title="Good job!" class="red-button" onclick="
alert('god job!');
">
hello
</button>
<p>
paragraph of
<button class="yellow-button">hello</button>
text
</p>
<script>
// thie is a comment.
// this code create a popup alert box.
// alert("hello world");
/*
multi
line
coment
*/
console.log(2 + 2);
console.log("hello world");
</script>
</body>
</html>