CSS Paper 2
CSS Paper 2
(10 marks)
Divide the following code into HTML and JavaScript components and explain
the role of each component.
<!DOCTYPE html>
<html>
<head>
<title>My Page</title>
</head>
<body>
<h1>Welcome to my page!</h1>
<script>
alert("Hello, world!");
</script>
</body>
</html>