By the end of this lesson you will have:
From pages 7–9 of the official brief:
Create exactly this structure now:
| Top Level | Inside |
|---|---|
| Report | index.html (main report) styles.css (for UI) images/ (folder for photos and your demo video) |
| Artefact | Your source code files (e.g., main.py, model.py, data files). |
Open index.html in a text editor (e.g., Notepad++, VS Code) and add a basic HTML skeleton.
Copy this into index.html and save:
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>My 2026 LC Computer Science Project Report</title>
<link href="styles.css" rel="stylesheet">
</head>
<body>
<h1>My Project Report</h1>
<!-- Add sections here -->
</body>
</html>
Create styles.css with simple rules (e.g., body { font-family: Arial; })
In section 1, add your video like this:
<video controls width="100%" height="auto">
<source src="images/video.mp4" type="video/mp4">
</video>
For images (e.g., flowchart, photos):
<img src="images/flowchart.png" alt="System Flowchart">
Ensure video shows how you meet basic/advanced requirements.