MyWeb Tutorials: File Manager & HTML page

In this tutorial, we will create a simple HTML page and navigate through the website's files.

Accessing the File Manager

image.png

Understanding the File Structure

Your account contains several folders. The most important ones are:

📁 public_html (Most Important)

This is where your website files go

📁 public_ftp

📁 Other folders you may see

Do not delete folders unless instructed

Creating or Uploading Files

Inside public_html, you can:

Example structure:

public_html/
├── index.html
├── about.html
├── css/
│   └── style.css
├── images/
│   └── logo.png
Website Entry (Starting) Files

When someone visits your website, the web server looks for default index files.

Common starting files:

If both index.html and index.php exist, index.html will win and load first

When to Use HTML vs PHP

Use HTML (.html) when:

Use PHP (.php) when:

Quick Tips & Common Mistakes

Always place website files in public_html
File names are case-sensitive (Index.html ≠ index.html)
One index file per folder is enough
Dont delete system folders
Dont expect files outside public_html to be public

 

 


 

Create Your first HTML page

 

Congratulations! You created your first website :)

 

 


Revision #3
Created 2026-02-10 01:09:15 UTC by Aniss Zakaria
Updated 2026-02-10 01:48:24 UTC by Aniss Zakaria