Cookies in JSP mit Beispiel

Inhaltsverzeichnis:

Anonim

Was sind Cookies?

  • Cookies sind die Textdateien, die auf dem Client-Computer gespeichert werden.
  • Sie werden verwendet, um die Informationen für verschiedene Zwecke zu verfolgen.
  • Es unterstützt HTTP-Cookies mithilfe der Servlet-Technologie
  • Die Cookies werden im HTTP-Header gesetzt.
  • Wenn der Browser zum Speichern von Cookies konfiguriert ist, werden die Informationen bis zum Ablaufdatum gespeichert.

Im Folgenden sind die Cookie-Methoden aufgeführt:

  • Public void setDomain (String-Domäne)

    Es wird verwendet, um die Domain festzulegen, für die das Cookie gilt

  • Öffentlicher String getDomain ()

    Es wird verwendet, um die Domain abzurufen, für die das Cookie gilt

  • Public void setMaxAge (int expiry)

    Hiermit wird die maximale Zeit festgelegt, die bis zum Ablauf des Cookies gelten soll

  • Public intgetMaxAge ()

    Es gibt das maximale Alter des Cookies zurück

  • Öffentlicher String getName ()

    Es gibt den Namen des Cookies zurück

  • Public void setValue (String value)

    Legt den dem Cookie zugeordneten Wert fest

  • Öffentlicher String getValue ()

    Rufen Sie den mit dem Cookie verknüpften Wert ab

  • Public void setPath (String path)

    Hiermit wird der Pfad festgelegt, für den Cookies gelten

  • Öffentlicher String getPath ()

    Es erhält den Pfad, auf den das Cookie angewendet wird

  • Public void setSecure (Boolesches Flag)

    Es sollte über verschlüsselte Verbindungen gesendet werden oder nicht.

  • Public void setComment (String cmt)

    Es beschreibt den Cookie-Zweck

  • Öffentlicher String getComment ()

    Es gibt die beschriebenen Cookie-Kommentare zurück.

Umgang mit Cookies in JSP

  1. Erstellen des Cookie-Objekts
  2. Maximales Alter einstellen
  3. Senden des Cookies in HTTP-Antwortheadern

Beispiel:

In diesem Beispiel erstellen wir Cookies mit Benutzername und E-Mail, fügen dem Cookie 10 Stunden lang das Alter hinzu und versuchen, die Variablennamen in action_cookie.jsp abzurufen

Action_cookie.jsp.

<% @ page language = "java" contentType = "text / html; Zeichensatz = ISO-8859-1"pageEncoding = "ISO-8859-1"%> Guru Cookie </ title></ head><body><form action = "action_cookie_main.jsp" method = "GET">Benutzername: <input type = "text" name = "username"><br />E-Mail: <input type = "text" name = "email" /><input type = "submit" value = "Submit" /></ form></ body></ html></pre>
<p>Action_cookie_main.jsp</p>
<pre translate="no"><% @ page language = "java" contentType = "text / html; Zeichensatz = ISO-8859-1"pageEncoding = "ISO-8859-1"%><! DOCTYPE html PUBLIC "- // W3C // DTD HTML 4.01 Transitional // DE" "http://www.w3.org/TR/html4/loose.dtd"><%Cookie-Benutzername = neues Cookie ("Benutzername", request.getParameter ("Benutzername"));Cookie-E-Mail = neues Cookie ("E-Mail", request.getParameter ("email"));username.setMaxAge (60 * 60 * 10);email.setMaxAge (60 * 60 * 10);// Fügen Sie beide Cookies in den Antwortheader ein.response.addCookie (Benutzername);response.addCookie (E-Mail);%><html><head><meta http-equiv = "Inhaltstyp" content = "text / html; Zeichensatz = ISO-8859-1"><title> Guru Cookie JSP </ title></ head><body><b> Benutzername: </ b><% = request.getParameter ("Benutzername")%><b> E-Mail: </ b><% = request.getParameter ("email")%></ body></ html></pre>
<p><strong>Erläuterung des Codes:</strong></p>

<div id="container-5533149ee6411a5f99b370c693e87966"></div>
<p><strong>Action_cookie.jsp</strong></p>
<p>Codezeile <strong>10-15:</strong> Hier nehmen wir ein Formular an, das in action_cookie_main.jsp verarbeitet werden muss. Außerdem nehmen wir zwei Felder "Benutzername" und "E-Mail", die vom Benutzer mit einer Senden-Schaltfläche eingegeben werden müssen.</p>
<p><strong>Action_cookie_main.jsp</strong></p>
<p>Codezeile <strong>6-9:</strong> Erstellen von zwei Cookie-Objekten "Benutzername" und "E-Mail" mit request.getParameter.</p>
<p><strong>Codezeile 12-13:</strong> Hier fügen wir beiden Cookies, die aus 10 Stunden erstellt wurden, das Alter hinzu, dh Cookies verfallen in diesem Alter.</p>
<p>Codezeile <strong>16-17:</strong> Hinzufügen von Cookies zur Sitzung von Benutzername und E-Mail. Diese beiden Cookies können auf Anfrage von getParameter () abgerufen werden.</p>
<p><strong>Ausgabe:</strong></p>
<p>Wenn Sie den obigen Code ausführen, erhalten Sie die folgende Ausgabe:</p>
<p>Wenn wir die Datei action_cookie.jsp ausführen, erhalten wir zwei Felder, Benutzername und E-Mail, und es werden Benutzereingaben vorgenommen, und dann klicken wir auf die Schaltfläche "Senden".</p>
<p>Wir erhalten die Ausgabe von action_cookie_main.jsp, wo Variablen in den Cookies auf der Clientseite gespeichert werden.
										</div>
									</article>
									
<div id="container-5533149ee6411a5f99b370c693e87966"></div>								</div>
							</div>
						</div>
					</div>
				</div>
				
<aside class="col-lg-4 sidebar sidebar--right">
	<div class="widget widget-popular-posts">
		<h2 class="widget-title">Beliebte Beiträge</h2>
		<ul class="post-list-small">
			<li class="post-list-small__item">
				<div class="post-list-small__entry clearfix">
					<div class="post-list-small__img-holder">
						<div class="thumb-container thumb-100"><a href="/8224574-c-database-connection-how-to-connect-sql-server-example" title="C # -Datenbankverbindung: So verbinden Sie SQL Server (Beispiel)" rel="bookmark"><img src="https://cdn.css-code.org/7555201/c_database_connection_how_to_connect_sql_server_example.png.webp" loading="lazy" alt="C # -Datenbankverbindung: So verbinden Sie SQL Server (Beispiel)" title="C # -Datenbankverbindung: So verbinden Sie SQL Server (Beispiel)" class="post-list-small__img--rounded" style="width:88px;height:88px" /></a></div>
					</div>
					<div class="post-list-small__body">
						<h3 class="post-list-small__entry-title"><a href="/8224574-c-database-connection-how-to-connect-sql-server-example" title="C # -Datenbankverbindung: So verbinden Sie SQL Server (Beispiel)" rel="bookmark">C # -Datenbankverbindung: So verbinden Sie SQL Server (Beispiel) 2025</a></h3>
					</div>
				</div>
			</li><li class="post-list-small__item">
				<div class="post-list-small__entry clearfix">
					<div class="post-list-small__img-holder">
						<div class="thumb-container thumb-100"><a href="/8224575-arrays-in-c-declare-initialize-pointer-to-array-examples" title="Arrays in C ++ - Deklarieren - Initialisieren - Zeiger auf Array-Beispiele" rel="bookmark"><img src="https://cdn.css-code.org/5688253/arrays_in_c_declare_initialize_pointer_to_array_examples.png.webp" loading="lazy" alt="Arrays in C ++ - Deklarieren - Initialisieren - Zeiger auf Array-Beispiele" title="Arrays in C ++ - Deklarieren - Initialisieren - Zeiger auf Array-Beispiele" class="post-list-small__img--rounded" style="width:88px;height:88px" /></a></div>
					</div>
					<div class="post-list-small__body">
						<h3 class="post-list-small__entry-title"><a href="/8224575-arrays-in-c-declare-initialize-pointer-to-array-examples" title="Arrays in C ++ - Deklarieren - Initialisieren - Zeiger auf Array-Beispiele" rel="bookmark">Arrays in C ++ - Deklarieren - Initialisieren - Zeiger auf Array-Beispiele 2025</a></h3>
					</div>
				</div>
			</li><li class="post-list-small__item">
				<div class="post-list-small__entry clearfix">
					<div class="post-list-small__img-holder">
						<div class="thumb-container thumb-100"><a href="/8224576-c-variables-and-types-int-double-char-string-bool" title="C ++ Variablen und Typen: int, double, char, string, bool" rel="bookmark"><img src="https://cdn.css-code.org/7045304/c_variables_and_types_int-_double-_char-_string-_bool.png.webp" loading="lazy" alt="C ++ Variablen und Typen: int, double, char, string, bool" title="C ++ Variablen und Typen: int, double, char, string, bool" class="post-list-small__img--rounded" style="width:88px;height:88px" /></a></div>
					</div>
					<div class="post-list-small__body">
						<h3 class="post-list-small__entry-title"><a href="/8224576-c-variables-and-types-int-double-char-string-bool" title="C ++ Variablen und Typen: int, double, char, string, bool" rel="bookmark">C ++ Variablen und Typen: int, double, char, string, bool 2025</a></h3>
					</div>
				</div>
			</li>
		</ul>
	</div>

	<div class="widget widget-popular-posts">
		<h2 class="widget-title">Die besten Bewertungen für den Monat</h2>
		<ul class="post-list-small">
			<li class="post-list-small__item">
				<div class="post-list-small__entry clearfix">
					<div class="post-list-small__body">
						<h3 class="post-list-small__entry-title"><a href="/8003057-text-overflow" title="Textüberlauf - CSS-Tricks" rel="bookmark">Textüberlauf - CSS-Tricks</a></h3>
					</div>
				</div>
			</li><li class="post-list-small__item">
				<div class="post-list-small__entry clearfix">
					<div class="post-list-small__body">
						<h3 class="post-list-small__entry-title"><a href="/8003058-scroll-margin" title="Bildlaufrand - CSS-Tricks" rel="bookmark">Bildlaufrand - CSS-Tricks</a></h3>
					</div>
				</div>
			</li><li class="post-list-small__item">
				<div class="post-list-small__entry clearfix">
					<div class="post-list-small__body">
						<h3 class="post-list-small__entry-title"><a href="/8003059-scroll-snap-type" title="Scroll-Snap-Typ - CSS-Tricks" rel="bookmark">Scroll-Snap-Typ - CSS-Tricks</a></h3>
					</div>
				</div>
			</li><li class="post-list-small__item">
				<div class="post-list-small__entry clearfix">
					<div class="post-list-small__body">
						<h3 class="post-list-small__entry-title"><a href="/8003060-text-stroke" title="Textstrich - CSS-Tricks" rel="bookmark">Textstrich - CSS-Tricks</a></h3>
					</div>
				</div>
			</li><li class="post-list-small__item">
				<div class="post-list-small__entry clearfix">
					<div class="post-list-small__body">
						<h3 class="post-list-small__entry-title"><a href="/8003061-text-rendering" title="Textwiedergabe - CSS-Tricks" rel="bookmark">Textwiedergabe - CSS-Tricks</a></h3>
					</div>
				</div>
			</li><li class="post-list-small__item">
				<div class="post-list-small__entry clearfix">
					<div class="post-list-small__body">
						<h3 class="post-list-small__entry-title"><a href="/8003062-text-justify" title="Textausrichtung - CSS-Tricks" rel="bookmark">Textausrichtung - CSS-Tricks</a></h3>
					</div>
				</div>
			</li><li class="post-list-small__item">
				<div class="post-list-small__entry clearfix">
					<div class="post-list-small__body">
						<h3 class="post-list-small__entry-title"><a href="/8003063-text-transform" title="Texttransformation - CSS-Tricks" rel="bookmark">Texttransformation - CSS-Tricks</a></h3>
					</div>
				</div>
			</li><li class="post-list-small__item">
				<div class="post-list-small__entry clearfix">
					<div class="post-list-small__body">
						<h3 class="post-list-small__entry-title"><a href="/8003064-text-orientation" title="Textorientierung - CSS-Tricks" rel="bookmark">Textorientierung - CSS-Tricks</a></h3>
					</div>
				</div>
			</li><li class="post-list-small__item">
				<div class="post-list-small__entry clearfix">
					<div class="post-list-small__body">
						<h3 class="post-list-small__entry-title"><a href="/8003067-text-underline-position" title="Text-Unterstreichungsposition - CSS-Tricks" rel="bookmark">Text-Unterstreichungsposition - CSS-Tricks</a></h3>
					</div>
				</div>
			</li><li class="post-list-small__item">
				<div class="post-list-small__entry clearfix">
					<div class="post-list-small__body">
						<h3 class="post-list-small__entry-title"><a href="/8003069-text-underline-offset" title="Text-Unterstreichungs-Offset - CSS-Tricks" rel="bookmark">Text-Unterstreichungs-Offset - CSS-Tricks</a></h3>
					</div>
				</div>
			</li><li class="post-list-small__item">
				<div class="post-list-small__entry clearfix">
					<div class="post-list-small__body">
						<h3 class="post-list-small__entry-title"><a href="/8003070-transform-origin" title="Transformationsursprung - CSS-Tricks" rel="bookmark">Transformationsursprung - CSS-Tricks</a></h3>
					</div>
				</div>
			</li><li class="post-list-small__item">
				<div class="post-list-small__entry clearfix">
					<div class="post-list-small__body">
						<h3 class="post-list-small__entry-title"><a href="/8003071-transform-style" title="Transformationsstil - CSS-Tricks" rel="bookmark">Transformationsstil - CSS-Tricks</a></h3>
					</div>
				</div>
			</li><li class="post-list-small__item">
				<div class="post-list-small__entry clearfix">
					<div class="post-list-small__body">
						<h3 class="post-list-small__entry-title"><a href="/8003072-touch-action" title="Berührungsaktion - CSS-Tricks" rel="bookmark">Berührungsaktion - CSS-Tricks</a></h3>
					</div>
				</div>
			</li><li class="post-list-small__item">
				<div class="post-list-small__entry clearfix">
					<div class="post-list-small__body">
						<h3 class="post-list-small__entry-title"><a href="/8003073-top-bottom-left-right" title="Oben / unten / links / rechts - CSS-Tricks" rel="bookmark">Oben / unten / links / rechts - CSS-Tricks</a></h3>
					</div>
				</div>
			</li><li class="post-list-small__item">
				<div class="post-list-small__entry clearfix">
					<div class="post-list-small__body">
						<h3 class="post-list-small__entry-title"><a href="/8003074-transition-delay" title="Übergangsverzögerung - CSS-Tricks" rel="bookmark">Übergangsverzögerung - CSS-Tricks</a></h3>
					</div>
				</div>
			</li>
		</ul>
	</div>
	
<div id="container-5533149ee6411a5f99b370c693e87966"></div>	<div class="widget widget-popular-posts">
		<h2 class="widget-title">Top Artikel</h2>
		<ul class="post-list-small">
			<li class="post-list-small__item">
				<div class="post-list-small__entry clearfix">
					<div class="post-list-small__img-holder">
						<div class="thumb-container thumb-100"><a href="/8003766-required-parameters-for-functions-in-javascript" title="Erforderliche Parameter für Funktionen in JavaScript - CSS-Tricks" rel="bookmark"><img src="https://cdn.css-code.org/8401366/required_parameters_for_functions_in_javascript_css-tricks.png.webp" loading="lazy" alt="Erforderliche Parameter für Funktionen in JavaScript - CSS-Tricks" title="Erforderliche Parameter für Funktionen in JavaScript - CSS-Tricks" class="post-list-small__img--rounded" style="width:88px;height:88px" /></a></div>
					</div>
					<div class="post-list-small__body">
						<h3 class="post-list-small__entry-title"><a href="/8003766-required-parameters-for-functions-in-javascript" title="Erforderliche Parameter für Funktionen in JavaScript - CSS-Tricks" rel="bookmark">Erforderliche Parameter für Funktionen in JavaScript - CSS-Tricks 2025</a></h3>
					</div>
				</div>
			</li><li class="post-list-small__item">
				<div class="post-list-small__entry clearfix">
					<div class="post-list-small__img-holder">
						<div class="thumb-container thumb-100"><a href="/8003767-saving-contenteditable-content-changes-as-json-with-ajax" title="Speichern von inhaltsbearbeitbaren Inhaltsänderungen als JSON mit Ajax - CSS-Tricks" rel="bookmark"><img src="https://cdn.css-code.org/7436761/saving_contenteditable_content_changes_as_json_with_ajax_css-tricks.png.webp" loading="lazy" alt="Speichern von inhaltsbearbeitbaren Inhaltsänderungen als JSON mit Ajax - CSS-Tricks" title="Speichern von inhaltsbearbeitbaren Inhaltsänderungen als JSON mit Ajax - CSS-Tricks" class="post-list-small__img--rounded" style="width:88px;height:88px" /></a></div>
					</div>
					<div class="post-list-small__body">
						<h3 class="post-list-small__entry-title"><a href="/8003767-saving-contenteditable-content-changes-as-json-with-ajax" title="Speichern von inhaltsbearbeitbaren Inhaltsänderungen als JSON mit Ajax - CSS-Tricks" rel="bookmark">Speichern von inhaltsbearbeitbaren Inhaltsänderungen als JSON mit Ajax - CSS-Tricks 2025</a></h3>
					</div>
				</div>
			</li><li class="post-list-small__item">
				<div class="post-list-small__entry clearfix">
					<div class="post-list-small__img-holder">
						<div class="thumb-container thumb-100"><a href="/8003769-redirect-mobile-devices" title="Mobile Geräte umleiten - CSS-Tricks" rel="bookmark"><img src="https://cdn.css-code.org/1964984/redirect_mobile_devices_css-tricks.png.webp" loading="lazy" alt="Mobile Geräte umleiten - CSS-Tricks" title="Mobile Geräte umleiten - CSS-Tricks" class="post-list-small__img--rounded" style="width:88px;height:88px" /></a></div>
					</div>
					<div class="post-list-small__body">
						<h3 class="post-list-small__entry-title"><a href="/8003769-redirect-mobile-devices" title="Mobile Geräte umleiten - CSS-Tricks" rel="bookmark">Mobile Geräte umleiten - CSS-Tricks 2025</a></h3>
					</div>
				</div>
			</li>
		</ul>
	</div>
</aside>			</div>
		</div>
		
<footer class="footer footer--dark">
	<div class="container">
		<div class="footer__widgets">
			<div class="row">
				<div class="col-lg-4">
					<div class="widget">
						<h2 class="widget-title">Beliebte Beiträge</h2>
						<ul class="post-list-small">
							<li class="post-list-small__item">
								<div>
									<div>
										<h3 class="post-list-small__entry-title"><a href="/8003262-09-svg-with-data-uris" title="09: SVG mit Daten-URIs - CSS-Tricks" rel="bookmark">09: SVG mit Daten-URIs - CSS-Tricks</a></h3>
									</div>
								</div>
							</li><li class="post-list-small__item">
								<div>
									<div>
										<h3 class="post-list-small__entry-title"><a href="/8003263-13-svg-as-an-icon-system-the-use-element" title="13: SVG als Icon-System - Das `use`-Element - CSS-Tricks" rel="bookmark">13: SVG als Icon-System - Das `use`-Element - CSS-Tricks</a></h3>
									</div>
								</div>
							</li><li class="post-list-small__item">
								<div>
									<div>
										<h3 class="post-list-small__entry-title"><a href="/8003264-16-svg-icon-system-external-source" title="16: SVG-Symbolsystem - Externe Quelle - CSS-Tricks" rel="bookmark">16: SVG-Symbolsystem - Externe Quelle - CSS-Tricks</a></h3>
									</div>
								</div>
							</li><li class="post-list-small__item">
								<div>
									<div>
										<h3 class="post-list-small__entry-title"><a href="/8003265-14-svg-icon-system-building-out-defs" title="14: SVG-Symbolsystem - Aufbau von Defs - CSS-Tricks" rel="bookmark">14: SVG-Symbolsystem - Aufbau von Defs - CSS-Tricks</a></h3>
									</div>
								</div>
							</li><li class="post-list-small__item">
								<div>
									<div>
										<h3 class="post-list-small__entry-title"><a href="/8003266-15-svg-icon-system-where-the-defs-go" title="15: SVG Icon System - Wohin die Defs gehen - CSS-Tricks" rel="bookmark">15: SVG Icon System - Wohin die Defs gehen - CSS-Tricks</a></h3>
									</div>
								</div>
							</li>
						</ul>
					</div>
				</div>
				<div class="col-lg-4">
					<div class="widget">
						<h2 class="widget-title">Tipp Der Redaktion</h2>
						<ul class="post-list-small">
						<li class="post-list-small__item">
								<div>
									<div>
										<h3 class="post-list-small__entry-title"><a href="/8225618-uml-diagram-cheat-sheet-and-reference-guide" title="UML-Diagramm Spickzettel und Referenzhandbuch" rel="bookmark">UML-Diagramm Spickzettel und Referenzhandbuch</a></h3>
									</div>
								</div>
							</li><li class="post-list-small__item">
								<div>
									<div>
										<h3 class="post-list-small__entry-title"><a href="/8225619-best-28-uml-tools-in-2021" title="BEST 28 UML Tools im Jahr 2021" rel="bookmark">BEST 28 UML Tools im Jahr 2021</a></h3>
									</div>
								</div>
							</li><li class="post-list-small__item">
								<div>
									<div>
										<h3 class="post-list-small__entry-title"><a href="/8225620-vb-net-program-structure-module-classes-hello-world-example" title="VB.Net Programmstruktur, Modul, Klassen: Hello World Beispiel" rel="bookmark">VB.Net Programmstruktur, Modul, Klassen: Hello World Beispiel</a></h3>
									</div>
								</div>
							</li><li class="post-list-small__item">
								<div>
									<div>
										<h3 class="post-list-small__entry-title"><a href="/8225621-20-best-visio-alternatives-in-2021-freepaid" title="20 BESTE Visio-Alternativen im Jahr 2021 (kostenlos / bezahlt)" rel="bookmark">20 BESTE Visio-Alternativen im Jahr 2021 (kostenlos / bezahlt)</a></h3>
									</div>
								</div>
							</li><li class="post-list-small__item">
								<div>
									<div>
										<h3 class="post-list-small__entry-title"><a href="/8225622-uml-tutorial-pdf-basics-with-diagram-download-now" title="UML Tutorial PDF: Grundlagen mit Diagramm (Jetzt herunterladen)" rel="bookmark">UML Tutorial PDF: Grundlagen mit Diagramm (Jetzt herunterladen)</a></h3>
									</div>
								</div>
							</li>
						</ul>
					</div>
				</div>
				<div class="col-lg-4">
					<div class="widget">
						<h2 class="widget-title">Top Artikel</h2>
						<ul class="post-list-small">
						<li class="post-list-small__item">
								<div>
									<div>
										<h3 class="post-list-small__entry-title"><a href="/8224601-how-to-download-and-install-codeigniter-composer-configuration-included" title="Herunterladen & Installieren Sie CodeIgniter + Composer (Konfiguration enthalten)" rel="bookmark">Herunterladen & Installieren Sie CodeIgniter + Composer (Konfiguration enthalten)</a></h3>
									</div>
								</div>
							</li><li class="post-list-small__item">
								<div>
									<div>
										<h3 class="post-list-small__entry-title"><a href="/8224602-codeigniter-mvcmodel-view-controller-framework-with-example" title="CodeIgniter MVC (Model View Controller) Framework mit Beispiel" rel="bookmark">CodeIgniter MVC (Model View Controller) Framework mit Beispiel</a></h3>
									</div>
								</div>
							</li><li class="post-list-small__item">
								<div>
									<div>
										<h3 class="post-list-small__entry-title"><a href="/8224603-codeigniter-applications-folder-and-file-structure" title="ORDNER der CodeIgniter-Anwendung & DATEI Struktur" rel="bookmark">ORDNER der CodeIgniter-Anwendung & DATEI Struktur</a></h3>
									</div>
								</div>
							</li><li class="post-list-small__item">
								<div>
									<div>
										<h3 class="post-list-small__entry-title"><a href="/8224604-codeigniter-controllers-views-routing-learn-with-example-app" title="CodeIgniter-Controller, Views Routing: Lernen Sie mit der Beispiel-App" rel="bookmark">CodeIgniter-Controller, Views Routing: Lernen Sie mit der Beispiel-App</a></h3>
									</div>
								</div>
							</li><li class="post-list-small__item">
								<div>
									<div>
										<h3 class="post-list-small__entry-title"><a href="/8224605-15-best-c-programming-books-for-beginners-2021-update" title="15 BESTE C ++ - Programmierbücher für Anfänger (Update 2021)" rel="bookmark">15 BESTE C ++ - Programmierbücher für Anfänger (Update 2021)</a></h3>
									</div>
								</div>
							</li>
						</ul>
					</div>
				</div>
			</div>
			<p>© Copyright de.css-code.org, 2025 April | 
				<a href="https://de.css-code.org/about-site" title="Über Site">Über Site</a> | 
				<a href="https://de.css-code.org/contacts" title="Kontakte">Kontakte</a> | 
				<a href="https://de.css-code.org/privacy-policy" title="Datenschutz-Bestimmungen">Datenschutz-Bestimmungen</a>.
			</p>
			
		</div>
	</div>
</footer>		
<link href="https://css-code.org/template/css/style.min.css" rel="preload" as="style" onload="this.onload=null;this.rel='stylesheet'" />	</body>
</html>