Create a website called Daily Tech News.
Create the necessary files and folders inside the src folder. To test your output, simply open any of your html files in your preferred web browser.
├── src/
│ ├── articles/
│ │ ├── future-technologies/
│ │ │ ├── machine-learning-healthcare.html
│ │ │ └── quantum-computing.html
│ │ ├── gadgets-and-devices/
│ │ │ ├── top-5-ultrabooks-analysis.html
│ │ │ └── xyz-tech-xyz-10.html
│ │ └── tech-industry-and-startups/
│ │ ├── abc-corp-xyz-inc-tech-merger.html
│ │ └── qrs-tech-new-leadership.html
│ ├── categories/
│ │ ├── future-technologies.html
│ │ ├── gadgets-and-devices.html
│ │ └── tech-industry-and-startups.html
│ ├── categories.html
│ └── index.htmlUtilize the provided text contents at assets/texts to expedite your activity.
The Newsfeed page lists all the tech news headlines on one page. There is also a navigation bar for navigating between Newsfeed and Categories.
The Categories page lists all news categories on one page. There is also a navigation bar for navigating between Categories and Newsfeed.
HINT: To link files in the parent folder, use../ in the beginning of href value.
Clicking on a particular category will take the website to the relevant category page, that lists all tech news headlines for that category and provides links back to Categories page.
Clicking on any news link redirects the website to the relevant news article page. There are also navigation links at the top and bottom that redirects back to Newsfeed page.
HINT: To link files in the parent folder, use../ in the beginning of href value.
(articles/gadgets-and-devices/xyz-tech-xyz-10.html)

(articles/gadgets-and-devices/top-5-ultrabooks-analysis.html)

(articles/tech-industry-and-startups/abc-corp-xyz-inc-tech-merger.html)

(articles/tech-industry-and-startups/qrs-tech-new-leadership.html)

(articles/future-technologies/machine-learning-healthcare.html)






