example.com
edit site files
index.html
<!doctype html> <html> <head> <meta charset="utf-8"> <title>New Site</title> <link rel="stylesheet" href="css/style.css"> </head> <body> <h1>New Site</h1> <script src="js/app.js"></script> </body> </html>
style.css
body{font-family:sans-serif;margin:40px}
app.js
console.log("site ready")
save
back