forked from lolpanda2004/Amour-Editorial-Website
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathFolderstructure.html
More file actions
45 lines (39 loc) · 1.01 KB
/
Folderstructure.html
File metadata and controls
45 lines (39 loc) · 1.01 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>About Us | Amour Editorials</title>
<link rel="stylesheet" href="css/style.css">
</head>
<body>
<nav>
<ul>
<li><a href="about.html">About Us</a></li>
<li><a href="features.html">Features</a></li>
<li><a href="preview.html">Preview</a></li>
<li><a href="techstack.html">Tech Stack</a></li>
<li><a href="installation.html">Installation</a></li>
<li><a href="folderstructure.html">Folder Structure</a></li>
<li><a href="requirements.html">Requirement Document</a></li>
<li><a href="contributing.html">Contributing</a></li>
</ul>
</nav>
<main>
<h1>Folder Structure</h1>
<pre>
amour-editorials/
├── public/
├── src/
│ ├── components/
│ ├── pages/
│ ├── assets/
│ ├── App.js
│ └── index.js
├── .gitignore
├── package.json
└── README.md
</pre>
</main>
<script src="js/script.js"></script>
</body>
</html>