School Commit Init

This commit is contained in:
2024-08-31 12:07:21 +03:00
commit 0b130ee18c
2801 changed files with 4720552 additions and 0 deletions
@@ -0,0 +1,29 @@
<!DOCTYPE html> <!-- write this exactly as it is here -->
<html> <!-- write this exactly as it is here -->
<head> <!-- write this exactly as it is here -->
<title>Playlist</title> <!-- replace “Playlist” with the title for your HTML -->
</head> <!-- write this exactly as it is here (close head tag) -->
<body> <!-- write this exactly as it is here -->
<table border="1"> <!-- write this exactly as it is here -->
<tr> <!-- tr = table row; 1 row for each entity -->
<td>Artist</td> <!-- td = table data; 1 td for each attribute of the entity -->
<td>Title</td>
<td>Duration</td>
<td>Youtube link</td>
</tr>
<tr>
<td>Queen</td>
<td>Bohemian Rhapsody</td>
<td>5:59</td>
<td><a href="https://www.youtube.com/watch?v=fJ9rUzIMcZQ">Link</a></td>
<!-- a href makes the text “Link” clickable and directs us towards the link written after “=” -->
</tr>
<tr>
<td>Louis Armstrong</td>
<td>What A Wonderful World</td>
<td>2:29</td>
<td><a href="https://www.youtube.com/watch?v=VqhCQZaH4Vs">Link</a></td>
</tr>
</table>
</body>
</html>