I Accidentally deleted the index file given by infinityfree in file manager. Just want to ask if it’s okay to create a new one directly in file manager and this is the code.
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>My Website</title>
<style>
body {
font-family: Arial, sans-serif;
background-color: #f0f0f0;
text-align: center;
padding: 50px;
}
h1 {
color: #333;
}
p {
font-size: 18px;
color: #666;
}
</style>
</head>
<body>
<h1>Welcome to My Website</h1>
<p>This is a simple landing page to get your site up and running.</p>
<p>If you're seeing this, your website is live and running successfully!</p>
</body>
</html>