Appendix
About
This section is included to assist the students to perform the activities present in the book. It includes detailed steps that are to be performed by the students to complete and achieve the objectives of the book.
1. Introduction to HTML and CSS
Activity 1.01: Video Store Page Template
Solution
- To start, we open the Chapter01 folder in VSCode (File > Open Folder…) and we will create a new plain text file by clicking File > New File. Then, save it in HTML format, by clicking File > Save As... and enter the file name: Activity 1.01.html. Start with the doctype and the html, head, and body elements:
<!DOCTYPE html>
<html lang="en">
<head>
</head>
<body>
</body>
</html>
- Add the title in the head element to describe ...
Get The HTML and CSS Workshop now with the O’Reilly learning platform.
O’Reilly members experience books, live events, courses curated by job role, and more from O’Reilly and nearly 200 top publishers.