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="/8225189-python-list-index-with-example" title="Python List index () mit Beispiel" rel="bookmark"><img src="https://cdn.css-code.org/1943462/python_list_index_with_example.png.webp" loading="lazy" alt="Python List index () mit Beispiel" title="Python List index () mit 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="/8225189-python-list-index-with-example" title="Python List index () mit Beispiel" rel="bookmark">Python List index () mit 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="/8225190-python-internet-access-using-urllib-request-and-urlopen" title="Python-Internetzugang mit Urllib.Request und urlopen ()" rel="bookmark"><img src="https://cdn.css-code.org/1808235/python_internet_access_using_urllibrequest_and_urlopen.png.webp" loading="lazy" alt="Python-Internetzugang mit Urllib.Request und urlopen ()" title="Python-Internetzugang mit Urllib.Request und urlopen ()" 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="/8225190-python-internet-access-using-urllib-request-and-urlopen" title="Python-Internetzugang mit Urllib.Request und urlopen ()" rel="bookmark">Python-Internetzugang mit Urllib.Request und urlopen () 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="/8225191-python-xml-parser-tutorial-read-xml-file-exampleminidom-elementtree" title="Python XML Parser Tutorial: Beispiel für eine XML-Datei lesen (Minidom, ElementTree)" rel="bookmark"><img src="https://cdn.css-code.org/2457796/python_xml_parser_tutorial_read_xml_file_exampleminidom-_elementtree.png.webp" loading="lazy" alt="Python XML Parser Tutorial: Beispiel für eine XML-Datei lesen (Minidom, ElementTree)" title="Python XML Parser Tutorial: Beispiel für eine XML-Datei lesen (Minidom, ElementTree)" 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="/8225191-python-xml-parser-tutorial-read-xml-file-exampleminidom-elementtree" title="Python XML Parser Tutorial: Beispiel für eine XML-Datei lesen (Minidom, ElementTree)" rel="bookmark">Python XML Parser Tutorial: Beispiel für eine XML-Datei lesen (Minidom, ElementTree) 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="/8224358-pre-sales-activities-process-support-documents" title="Pre-Sales-Aktivitäten: Prozess - Unterstützung - Unterlagen" rel="bookmark">Pre-Sales-Aktivitäten: Prozess - Unterstützung - Unterlagen</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="/8224359-how-to-create-customer-material-info-record-vd51-in-sap" title="So erstellen Sie einen Kundenmaterial-Infosatz VD51 in SAP" rel="bookmark">So erstellen Sie einen Kundenmaterial-Infosatz VD51 in SAP</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="/8224360-sap-sd-create-material-master-data" title="SAP SD: Materialstammdaten anlegen" rel="bookmark">SAP SD: Materialstammdaten anlegen</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="/8224361-mmbe-how-to-get-sap-stock-overview" title="MMBE: So erhalten Sie eine SAP-Bestandsübersicht" rel="bookmark">MMBE: So erhalten Sie eine SAP-Bestandsübersicht</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="/8224362-how-to-create-inquiry-in-sap-va11" title="So erstellen Sie eine Anfrage in SAP: VA11" rel="bookmark">So erstellen Sie eine Anfrage in SAP: VA11</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="/8224363-how-to-create-quotation-sap-va21" title="So erstellen Sie ein Angebot: SAP VA21" rel="bookmark">So erstellen Sie ein Angebot: SAP VA21</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="/8224364-how-to-create-sales-order-sap-va01" title="So erstellen Sie einen Kundenauftrag: SAP VA01" rel="bookmark">So erstellen Sie einen Kundenauftrag: SAP VA01</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="/8224365-how-to-create-debit-memo-in-sap" title="So erstellen Sie eine Lastschrift in SAP" rel="bookmark">So erstellen Sie eine Lastschrift in SAP</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="/8224367-how-to-create-credit-memo-in-sap" title="So erstellen Sie eine Gutschrift in SAP" rel="bookmark">So erstellen Sie eine Gutschrift in SAP</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="/8224370-schedule-line-category-determination-tutorial-sap-vov6" title="Lernprogramm zur Ermittlung von Einteilungstypen: SAP VOV6" rel="bookmark">Lernprogramm zur Ermittlung von Einteilungstypen: SAP VOV6</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="/8224371-how-to-create-sales-document-type-in-sap" title="So erstellen Sie eine Verkaufsbelegart in SAP" rel="bookmark">So erstellen Sie eine Verkaufsbelegart in SAP</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="/8224372-how-to-create-item-proposal-va51-in-sap" title="So erstellen Sie einen Artikelvorschlag VA51 in SAP" rel="bookmark">So erstellen Sie einen Artikelvorschlag VA51 in SAP</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="/8224373-sap-sales-document-tutorial-va01-va02-va03" title="SAP Sales Document Tutorial: VA01, VA02, VA03" rel="bookmark">SAP Sales Document Tutorial: VA01, VA02, VA03</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="/8224374-text-determination-for-sales-document-sap-votxn" title="Textermittlung für Verkaufsbeleg: SAP VOTXN" rel="bookmark">Textermittlung für Verkaufsbeleg: SAP VOTXN</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="/8224375-how-to-shipping-point-determine-in-sap-sd" title="Versandstelle ermitteln in SAP SD" rel="bookmark">Versandstelle ermitteln in SAP SD</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="/8225671-how-to-make-balance-sheet-with-example" title="Wie erstelle ich eine Bilanz mit Beispiel?" rel="bookmark"><img src="https://cdn.css-code.org/3104803/how_to_make_balance_sheet_with_example.png.webp" loading="lazy" alt="Wie erstelle ich eine Bilanz mit Beispiel?" title="Wie erstelle ich eine Bilanz mit 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="/8225671-how-to-make-balance-sheet-with-example" title="Wie erstelle ich eine Bilanz mit Beispiel?" rel="bookmark">Wie erstelle ich eine Bilanz mit 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="/8225672-20-best-small-business-accounting-software-in-usa-2021" title="20 BESTE Buchhaltungssoftware für kleine Unternehmen in den USA (2021)" rel="bookmark"><img src="https://cdn.css-code.org/3007815/20_best_small_business_accounting_software_in_usa_2021.png.webp" loading="lazy" alt="20 BESTE Buchhaltungssoftware für kleine Unternehmen in den USA (2021)" title="20 BESTE Buchhaltungssoftware für kleine Unternehmen in den USA (2021)" 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="/8225672-20-best-small-business-accounting-software-in-usa-2021" title="20 BESTE Buchhaltungssoftware für kleine Unternehmen in den USA (2021)" rel="bookmark">20 BESTE Buchhaltungssoftware für kleine Unternehmen in den USA (2021) 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="/8225673-65-best-accounting-courses-in-2021" title="65 beste Buchhaltungskurse im Jahr 2021" rel="bookmark"><img src="https://cdn.css-code.org/5693099/65_best_accounting_courses_in_2021.png.webp" loading="lazy" alt="65 beste Buchhaltungskurse im Jahr 2021" title="65 beste Buchhaltungskurse im Jahr 2021" 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="/8225673-65-best-accounting-courses-in-2021" title="65 beste Buchhaltungskurse im Jahr 2021" rel="bookmark">65 beste Buchhaltungskurse im Jahr 2021 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="/8003555-make-non-password-inputs-use-bullets-or-bullet-alternatives" title="Lassen Sie Eingaben ohne Kennwort Aufzählungszeichen (oder Aufzählungszeichenalternativen) verwenden CSS-Tricks" rel="bookmark">Lassen Sie Eingaben ohne Kennwort Aufzählungszeichen (oder Aufzählungszeichenalternativen) verwenden CSS-Tricks</a></h3>
									</div>
								</div>
							</li><li class="post-list-small__item">
								<div>
									<div>
										<h3 class="post-list-small__entry-title"><a href="/8003556-picross-style-buttons" title="Picross Style Buttons - CSS-Tricks" rel="bookmark">Picross Style Buttons - CSS-Tricks</a></h3>
									</div>
								</div>
							</li><li class="post-list-small__item">
								<div>
									<div>
										<h3 class="post-list-small__entry-title"><a href="/8003557-prevent-bounce-scroll-in-lion" title="Bounce Scroll in Lion verhindern - CSS-Tricks" rel="bookmark">Bounce Scroll in Lion verhindern - CSS-Tricks</a></h3>
									</div>
								</div>
							</li><li class="post-list-small__item">
								<div>
									<div>
										<h3 class="post-list-small__entry-title"><a href="/8003558-print-url-after-links" title="URL nach Links drucken - CSS-Tricks" rel="bookmark">URL nach Links drucken - CSS-Tricks</a></h3>
									</div>
								</div>
							</li><li class="post-list-small__item">
								<div>
									<div>
										<h3 class="post-list-small__entry-title"><a href="/8003559-prevent-superscripts-and-subscripts-from-affecting-line-height" title="Verhindern Sie, dass hochgestellte und tiefgestellte Zeichen die Zeilenhöhe beeinflussen CSS-Tricks" rel="bookmark">Verhindern Sie, dass hochgestellte und tiefgestellte Zeichen die Zeilenhöhe beeinflussen 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="/8222896-support-package-and-stack-upgrade-sap-sps" title="Support Package & Stapel-Upgrade: SAP SPS" rel="bookmark">Support Package & Stapel-Upgrade: SAP SPS</a></h3>
									</div>
								</div>
							</li><li class="post-list-small__item">
								<div>
									<div>
										<h3 class="post-list-small__entry-title"><a href="/8222897-download-and-upgrade-sap-kernel-step-by-step-tutorial" title="Herunterladen & Upgrade des SAP-Kernels: Schritt-für-Schritt-Anleitung" rel="bookmark">Herunterladen & Upgrade des SAP-Kernels: Schritt-für-Schritt-Anleitung</a></h3>
									</div>
								</div>
							</li><li class="post-list-small__item">
								<div>
									<div>
										<h3 class="post-list-small__entry-title"><a href="/8222898-what-is-oss-notes-sap-snote-tutorial" title="Was ist OSS Notes? SAP SNOTE Tutorial" rel="bookmark">Was ist OSS Notes? SAP SNOTE Tutorial</a></h3>
									</div>
								</div>
							</li><li class="post-list-small__item">
								<div>
									<div>
										<h3 class="post-list-small__entry-title"><a href="/8222899-top-18-sap-testing-interview-questions-and-answers" title="Top 18 Fragen zum SAP-Testinterview & Antworten" rel="bookmark">Top 18 Fragen zum SAP-Testinterview & Antworten</a></h3>
									</div>
								</div>
							</li><li class="post-list-small__item">
								<div>
									<div>
										<h3 class="post-list-small__entry-title"><a href="/8222900-sap-tao-tutorial-for-business-processing-testing" title="SAP TAO Tutorial für Business Processing Testing" rel="bookmark">SAP TAO Tutorial für Business Processing Testing</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="/8002867-appearance" title="Aussehen - CSS-Tricks" rel="bookmark">Aussehen - CSS-Tricks</a></h3>
									</div>
								</div>
							</li><li class="post-list-small__item">
								<div>
									<div>
										<h3 class="post-list-small__entry-title"><a href="/8002868-background-clip" title="Hintergrund-Clip - CSS-Tricks" rel="bookmark">Hintergrund-Clip - CSS-Tricks</a></h3>
									</div>
								</div>
							</li><li class="post-list-small__item">
								<div>
									<div>
										<h3 class="post-list-small__entry-title"><a href="/8002869-background-origin" title="Hintergrundherkunft - CSS-Tricks" rel="bookmark">Hintergrundherkunft - CSS-Tricks</a></h3>
									</div>
								</div>
							</li><li class="post-list-small__item">
								<div>
									<div>
										<h3 class="post-list-small__entry-title"><a href="/8002871-background-color" title="Hintergrundfarbe - CSS-Tricks" rel="bookmark">Hintergrundfarbe - CSS-Tricks</a></h3>
									</div>
								</div>
							</li><li class="post-list-small__item">
								<div>
									<div>
										<h3 class="post-list-small__entry-title"><a href="/8002872-background-image" title="Hintergrundbild - CSS-Tricks" rel="bookmark">Hintergrundbild - CSS-Tricks</a></h3>
									</div>
								</div>
							</li>
						</ul>
					</div>
				</div>
			</div>
			<p>© Copyright de.css-code.org, 2025 September | 
				<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>