Stucture of Website
index of HTML file and folders to contain inages, style files, and scirpt files.
1. index.html. This file will generally contain homepage content, that is , the text and images that people see when they first go to your site. Using text editor, create a new file called index.html
<!DOCTYPE html>
<html>
<head>
<metacharset="utf-8">
<title>My test page</title>
</head>
<body>
<imgsrc="$file path of html code"alt="$path of image"
</body>
</html>
2. images folder. all iamges are used on the site.
3. styles folder. CSS code used to styple your content.
4. scripts folder. JavaScript code used to add interactive functionality to your site (e.g. buttons load data when clicked)
folder structure as follows,
