So I am trying to make an announcement website, but the people who actually set the announcements complain that announcements are too tricky to make (I literally give them the html file and they need to find the announcements div, create a new one using a tutorial I give them and then edit the text to their announcement). I understand that, but I literally have no idea how to change it. I went to google and looked it up. I think it has something to do with AJAX and JQuery, but I don’t know how that works. Here is about the website code but then like a sketch (the actual code has more decorations and is too long):
<!DOCTYPE html>
<html>
<head>
<style>
.announcement{
display: inline-block;
font-size: 48px;
}
</style>
</head>
<body>
<div id = 'announcement'>
<a href = '/page.html'>
<h1>Announcement here</h1>
</a>
<p>Announcement description</p>
</div>
</body>
</html>
Anyway, now there are no announcements until it is fixed and they use discord for now. It would really help if somebody helped me. Also, note that the edit announcement feature is only available with logging in.