WEBALGO.CH


Vorlagen für die Erstellung von Websites



Ab 25.3.21: UMFRAGE zum Thema Websiteerstellung

Tragen Sie sich in den Newsletter ein!

Algorithms for the web


Learn to create your own individual website from scratch: Use the instructions from WEBALGO.CH with templates to download for the construction and maintenance of your customized website as well as the operation of MySQLi databases with the scripting language PHP for download!

Would you like to have your individual website created by WEBALGO.CH? Contact me using the contact form! Would you like an appointment for a video conversation on Google Meet or Skype?



detect a mobile device and redirect width PHP

basic table in html

Show last modification of a file with PHP

Load content after click on checkbox with PHP

Load Facebok-chatbot in with PHP

Create a table in MySQLi

Connect width MySQLi

Read record from MySQLi

Read record from MySQLi according to conditions

WEBALGO: Learn algorithms and create, code a website






Tel. 078 770 47 10

Search

Suchen in Datenbank:


Ganze Website durchsuchen:

Kleine rekursive Suchmaschine


Eine Suchmaschine von Werner Zenke

Titel Überschrift H1: CSS-Vorlage für suchmaschinenoptimierten Text
Hier zu Illustrationszwecken rot dargestellt. Siehe css-vorlage.css

Einführender Text

Untertitel Überschrift H2: Textvorlage (HTML) für suchmaschinenoptimierten Text
Hier zu Illustrationszwecken blau dargestellt. Siehe css-vorlage.css

Haupttext. Suchmaschinen mögen Listen! Erstellen Sie in HTML Listen wobei <ol> für nummerierte Liste und <ul> für nicht nummerierte Liste stehen. (Siehe unten in css-vorlage.html)
  • erster Eintrag
  • zweiter Eintrag
  • dritter Eintrag



Inhalt css-vorlage.css: Download
@media all and (min-width: 960px) and (max-width: 2024px) { sr.schrift1 {font-family: arial; color: black; font-size: 18} h1 { font-family: "arial"; font-weight: bold; color: red; font-size: 25; } h2 { font-family: "arial"; font-weight: bold; color: blue; font-size: 20; } } a:link { text-decoration: none; text-underline: none; color: #610B38; } a:visited { text-decoration: none; text-underline: none; color: #610B38; } a:active { text-decoration: none; text-underline: none; color: #610B38; } a:hover { text-decoration: none; text-underline: none; color: #610B38; } @media all and (min-width: 321px) and (max-width: 480px) { sr.schrift1 {font-family: arial; color: black; font-size: 16} h1 { font-family: "arial"; font-weight: bold; color: black; font-size: 20; } h2 { font-family: "arial"; font-weight: bold; color: black; font-size: 15; } } a:link { text-decoration: none; text-underline: none; color: #610B38; } a:visited { text-decoration: none; text-underline: none; color: #610B38; } a:active { text-decoration: none; text-underline: none; color: #610B38; } a:hover { text-decoration: none; text-underline: none; color: #610B38; }


Inhalt css-vorlage.html: Download
<html> <head> <link rel="stylesheet" href="css-vorlage.css"> </head> <body> <h1>Titel &Uuml;berschrift H1</h1> <div align="justify" style="width:60%";> <sr class="schrift1">Einf&uuml;hrender Text</sr> </div> <h2>Untertitel &Uuml;berschrift H2</h2> <div align="justify" style="width:60%";> <sr class="schrift1">Haupttext</sr> <sr class="schrift1"> <ul> <li>Erster Eintrag</li> <li>Zweiter Eintrag</li> <li>Dritter Eintrag</li> </ul> </sr> </div> </html>