Computer scienceBackendNode.jsApplication DevelopmentArchitecture of Node.js applications

MVC with Node.js

Album view

Report a typo

Your music-streaming company has a model for albums. Now you need to create a view for it. Create a h1 with text Album Information. Then, create a div with the id albumContainer. Inside it, create a h3 with id albumTitle, h4 with id albumArtist, and p with id albumYear. h3 should say Title, h4 should say Artist, and p should say Release Year.

Write HTML and CSS code
<!-- album.html -->
<!DOCTYPE html>
<html>
<head>
<title>Album Information</title>
</head>
<body>
<!--Write your elements here-->
</body>
</html>






Completed 0 of 8
h1 exist with text "Album Information"
Container div exist with id "albumContainer"
___

Create a free account to access the full topic