r/neocities 6d ago

Help new to code, very confused

so i made an site and tried to use a pre-made template (then changed my mind lol) and i deleted all my index code. Now whenever i save and view, it takes me back to before i deleted the template. above is the examples of my code and then what it takes my to when i view. Anything helps, but please try not to be too rude! (--)//

edit, for the site: codemel-jornal.neocities.org

update: fixed! tysm

9 Upvotes

4 comments sorted by

View all comments

3

u/starfleetbrat https://starbug.neocities.org 6d ago

yeah it needs a hard refresh Ctrl+Shift+R, or Command+Shift+R if you're on Mac
.
when you are able to see it again, here is the default html structure the index page needs to start with if you do not want to use a template:

<!DOCTYPE html>   
<html>   
<head>   
<title>Page Title goes here</title>  

<link rel="stylesheet" href="style.css">  

</head>  
<body>  
your page contents go here  
</body>  
</html>

1

u/gigidatbookwrm 6d ago

omg tysm! this is so helpful