forked from lolpanda2004/Amour-Editorial-Website
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathinstallation.html
More file actions
38 lines (33 loc) · 929 Bytes
/
installation.html
File metadata and controls
38 lines (33 loc) · 929 Bytes
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
<!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>Installation</h1>
<pre>
git clone https://github.com/sneha-94/Amour-Editorial-Website.git
cd Amour-Editorial-Website
npm install
npm start
Open http://localhost:3000
</pre>
</main>
<script src="js/script.js"></script>
</body>
</html>