mirror of
https://github.com/holub/mame
synced 2025-05-06 14:25:54 +03:00
35 lines
1.4 KiB
Markdown
35 lines
1.4 KiB
Markdown
How To Create Basic Website With Mongoose
|
|
===========================================
|
|
|
|
## 1. Create a directory which will contain your website files. For example, on drive `C:\`, create a directory called `my_website`:
|
|
|
|

|
|
|
|
## 2. Inside `my_website` directory, create a new file called "index". This will be the default web page shown when the website is visited.
|
|
|
|

|
|
|
|
## 3. Open index file with your favorite editor (for example, Notepad) and enter some HTML code:
|
|
|
|

|
|
|
|
## 4. Save this file as `index.html`:
|
|
|
|

|
|
|
|
|
|
## 5. Download Mongoose executable from http://cesanta.com/mongoose.shtml and copy the executable inside `my_website` directory:
|
|
|
|

|
|
|
|
## 6. Double-click mongoose executable. An icon will appear on a system tray in the bottom right corner of the desktop:
|
|
|
|

|
|
|
|
## 7. Click on the mongoose icon and choose "Go to my address" menu:
|
|

|
|
|
|
## 8. A browser will popup displaying `index.html` file. Now, you can expand your website by adding more content.
|
|
|
|

|