# Create Demo Pages for the Virtual Hosts

Create a file named as index.html inside the public_html.

nano /var/www/securezone.co.za/public_html/index.html
<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta http-equiv="X-UA-Compatible" content="IE=edge">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Secure Zone</title>
</head>
<body>
    This is Secure Zone
</body>
</html>
nano /var/www/api.securezone.co.za/public_html/index.html
<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta http-equiv="X-UA-Compatible" content="IE=edge">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Secure Zone | API</title>
</head>
<body>
    This is Secure Zone | API
</body>
</html>