Posts

Showing posts from 2025

Download, Parse and Save data

Using HTTP Client library of your programming language of choice, download this page and parse products’ data i.e. image URL, title, description, price. Make an xlsx file that should contain the parsed data. If you are using Python, you can use Requests library to download, BeautifulSoup library to parse. Use pandas library to make xlsx file. If you are using Java, you can use Apache HTTP Client library to download and parse and Apache POI library to make xlsx file.

Create Listing and Detail Page using HTML/CSS of any e-commerce store

Make two HTML pages i.e. Products Listing Page and Product Detail Page. Listing Page is one where list of products appear when you search or filter some products on an ecommerce store. e.g. https://www.daraz.pk/smartphones https://myshop.pk/laptops-desktops-computers/laptops Product Detail page is one that display individual product detail. e.g.  https://www.daraz.pk/products/105-pta-i656021303-s3082667234.html https://myshop.pk/hp-notebook-15-fd0131wm-pakistan.html Make clone of these two pages using any ecommerce store. Do not use what your friend is using. Select a unique and popular e-commerce website of any country (above links are just example). Please choose a content rich e-commerce website. Means, do not choose a very simple pages layout that display only few attributes of the product. Topics to focus: · HTML - div, a, img, etc. · CSS selector and basic props. · Box Model · Positioning, styling links, images, and text, etc. · Fle...