How can I display this well in HTML?
I'd like to create a blog on my website that's similar to Gutefrage's overview. Of course, I don't want to copy everything 100%.
How can I integrate an input search that searches the content from the posts and the input field is on the overview with all posts.
If possible, there should be a way to bookmark the content so that only you can see it, if possible without logging in.
Additionally there is a function for light/dark mode, how can I make the current mode be saved and set again when I call up the page again.
Thanks if you can help.
You should first seek/indicate the posts to be searched. In the best case, they are stored in a database.
If one assumes that there are more than a few hundred posts, a library like Lucene would be quite helpful or for even more complex systems search engines such as Solr or Sphinx.
You only have to place a form with input field on the website.
Example:
The input is sent to the server application where you validate the input and forward it to the search engine. You can then prepare the results and return them to the response.
For implementation, you need not only HTML knowledge. To build the web application that implements the logic, you need a programming language and possibly a webframework (e.g. C# with ASP.NET, Java with Spring MVC or Jakarta EE, PHP, Ruby (on Rails), etc.).
If the search is to proceed more dynamically (without reloading the page), you would also need JavaScript identifiers. An event lister can be placed on the input field to send an AJAX request to the server with the search term. The server could return the result data as HTML string or in JSON format. The script would have to incorporate this result into the DOM.
Minimum example:
This should best be expanded with debouncing mechanisms and filter/validation mechanisms. For example, a search is generally useful only from two to three letters or with changing search queries the previously fired request with a AbortController stop prematurely.
You should also think about how many posts should be returned directly in a search and if not all, how more posts can be accessed (keywords: lazy loading, pagination).
You can store all noted URLs (or better: the Post IDs / relative addresses that allow the respective Post URLs to be determined) as a JSON array with JavaScript in a cookie. How you can work with cookies Page explained. Basic knowledge of JavaScript is provided.
Each postbox gets a button, the post ID could be in a data-Attribute. Whether the post is already in the memory list, you should determine when creating the button and set a state accordingly.
Example:
Each button also gets an event handler for click here-Event assigned. The cookie must be updated.
This information can also be stored in a cookie. For the Toggle component you could take a checkbox.
When the page is loaded, you read the cookie and set a class on the root, depending on the recorded value.
I would only get the light/dark fashion with my knowledge.
Do you have an HTML and CSS code that I can try?
Is this also possible without cookies, if not, from where should I get a banner?
Or do I have to make the cookie for the fashion itself?
(a) You can also store the data in the web storage. An info for the user still needs.
(b) You can save the data on the server (e.g. in a session or in a file/database). In order to assign the stored data to the respective user, it requires an authentication.
c) Please refer to the user’s browser settings. You can use the CSS Media Queries prefers-color-sheme to determine.
Example:
More information here.
d) Renounce persistent storage of settings.
There are numerous cookie banner providers. Consent Manager, CookieYes, OneTrust, TrustArc, … would be suitable search terms for your own research in combination manager tools.
You need to create the cookie yourself via the DOM API. More precisely, the article I have linked in my above answer.