Durchsuchen nach
Kategorie: Webseiten-Erstellung

MongoDB as Backend

MongoDB as Backend

For the first time, I have created a backend for my installed MongoDB database. You want to have this on your browser? Then follow the text below: What is MongoDB MongoDB is a document-oriented NoSQL database that stores data in flexible, JSON-like documents, allowing for easy storage and retrieval of structured, semi-structured, and unstructured data. Unlike traditional relational databases that use tables and rows, MongoDB uses collections and documents, making it more adaptable to changing data structures. It was designed to handle large volumes…

Weiterlesen Weiterlesen

Password checking site with HTML, CSS and JavaScript and the code

Password checking site with HTML, CSS and JavaScript and the code

I have updated the static website on my pc. The password checking tool I moved to an external site with the name passwortsachen.html because my To-do-list got a notice board, and then it did not match it with the password checking. You can select the password length from 8 characters to 32 characters, big and small letters, numbers and special character. Then you generate the password and can copy it to where you need it. This generated password will be…

Weiterlesen Weiterlesen

My little To-do list with HTML5/CSS3 and JavaScript

My little To-do list with HTML5/CSS3 and JavaScript

Beside the Linux stuff, I try to do something more easy, even on a static (no online) webpage. Only for me. How it looks like The code HTML5 CSS3 /* aufgabenliste.css – finale, saubere Version */ body { margin: 0; min-width: 250px; font-family: system-ui, -apple-system, sans-serif; background: #f5f7fa; color: #333; } h2 { color: white; margin: 0 0 20px 0; font-size: 2em; } /* Box-Modell */ * { box-sizing: border-box; } /* Zähler */ #counter { margin: 20px 0; font-size:…

Weiterlesen Weiterlesen

Meine neue Startseite im Browser

Meine neue Startseite im Browser

Ich habe mir mal wieder etwas Neues einfallen lassen für meine Startseite im Browser. So sieht die „neue“ Übersicht aus. Unter der Haube ist das als CSS grid definiert. Hatte ich das früher noch mit Tabellen erstellen, ist es nun heutzutage ein CSS Grid. Die CSS-Anweisung für Grid .grid{ display: flex; flex-direction: row; flex-wrap: wrap; align-self: stretch; gap: 100px; } Die Javascript – Anweisung für Hallenbad Die Daten vom Hallenbad habe ich natürlich von den städtischen Seiten der Stadt Essen….

Weiterlesen Weiterlesen