grade 7 - Practical exam - Final
End of 2nd Trimester Exams (2024 - 2025)
Topic: Creating an E-commerce website
Exam Instructions:
Create a Folder:
Create a folder on your computer with your full name as the folder name.Write Your Code:
Complete the coding tasks in the exam. After finishing, open Notepad or any text editor of your choice.Save Your Work:
Copy and paste your code into the text editor, then save the file with the following format:
FullName_Class.txt (example: MsHanan_Grade7a.txt).Submit Your Folder:
Once you've saved your file, ensure that the folder with your name contains your code file, and submit the folder as per the exam instructions.
Instructions:
Create a webpage displaying your E-commerce website with the following requirements:
1- Add a Title:
Use the <h1> tag to add the title of your shop inside the <body> section.
example: <h1> Welcome to My Favorite Shop </h1>
2- Add Three Pictures:
Use the <img> tag to add images.
Replace src= "image1.jpg", src="image2.jpg", and src="image3.jpg" with actual image links or file paths.
example: <img src="https://cdn.pixabay.com/photo/2015/05/15/02/07/computer-767781_1280.jpg" alt="Image 1">
3- Add a header for each product:
Replace Product 1 with the name of your product :
<h3>Product 1</h3>,<h3>Product 2</h3> and <h3>Product 3</h3>
example:
<h3>Product 1:Stylish Handbag</h3>
4-Add Descriptions for Each Product:
Use the <p> tag to write a short description for each product:
Write a short description for your first product.
Write a short description for your second product.
Write a short description for your third product.
You will replace them with a new description.
example:
<p>This elegant handbag is perfect for any occasion. Made with high-quality leather and a modern design</p>
Comments
Post a Comment