This is a simple post feed application that allows users to create and view posts.
- Users can enter their username and post content.
- Clicking the "POST" button publishes a new post with the username, post content, and timestamp.
- The application displays the newly created post at the top of the feed.
- Clicking the "+" button toggles the visibility of the post creation area.
- HTML: Defines the structure of the page.
- CSS: Styles the layout and appearance of the application.
- JavaScript: Adds interactivity and functionality to the application.
- Clone this repository.
- Open the
index.html
file in a web browser.
- Implement server-side storage to persist posts across sessions.
- Enhance validation for username and post content.
- Improve UI interactions for a more polished look and feel.
- Allow users to edit or delete their posts.