Cookies in JavaScript: Set, Get & Beispiel löschen

Inhaltsverzeichnis:

Anonim

Was sind Cookies?

Ein Cookie ist ein Datenelement, das auf Ihrem Computer gespeichert wird und auf das Ihr Browser zugreifen kann. Möglicherweise haben Sie auch die Vorteile von Cookies wissentlich oder unwissentlich genossen. Haben Sie jemals Ihr Facebook-Passwort gespeichert, damit Sie es nicht jedes Mal eingeben müssen, wenn Sie versuchen, sich anzumelden? Wenn ja, verwenden Sie Cookies. Cookies werden als Schlüssel / Wert-Paare gespeichert.

Warum brauchst du ein Cookie?

Die Kommunikation zwischen einem Webbrowser und einem Server erfolgt über ein zustandsloses Protokoll namens HTTP. Das zustandslose Protokoll behandelt jede Anforderung unabhängig. Daher behält der Server die Daten nach dem Senden an den Browser nicht bei. In vielen Situationen werden die Daten jedoch erneut benötigt. Hier kommen Kekse ins Bild. Bei Cookies muss der Webbrowser nicht jedes Mal mit dem Server kommunizieren, wenn die Daten benötigt werden. Stattdessen kann es direkt vom Computer abgerufen werden.

Javascript Set Cookie

Sie können Cookies mithilfe eines Dokuments erstellen. Cookie-Eigenschaft wie diese.

document.cookie = "cookiename=cookievalue"

Sie können Ihrem Cookie sogar ein Ablaufdatum hinzufügen, damit das jeweilige Cookie zum angegebenen Datum vom Computer entfernt wird. Das Ablaufdatum sollte im UTC / GMT-Format eingestellt werden. Wenn Sie das Ablaufdatum nicht festlegen, wird das Cookie entfernt, wenn der Benutzer den Browser schließt.

document.cookie = "cookiename=cookievalue; expires= Thu, 21 Aug 2014 20:00:00 UTC"

Sie können auch die Domäne und den Pfad festlegen, um anzugeben, zu welcher Domäne und zu welchen Verzeichnissen in der bestimmten Domäne das Cookie gehört. Standardmäßig gehört ein Cookie zu der Seite, auf der das Cookie gesetzt wird.

document.cookie = "cookiename=cookievalue; expires= Thu, 21 Aug 2014 20:00:00 UTC; path=/ "

// Erstelle ein Cookie mit einer Domain zur aktuellen Seite und einem Pfad zur gesamten Domain.

JavaScript erhalten Cookie

Sie können wie folgt auf das Cookie zugreifen, das alle für die aktuelle Domain gespeicherten Cookies zurückgibt.

var x = document.cookie

JavaScript-Cookie löschen

Um ein Cookie zu löschen, müssen Sie nur den Wert des Cookies auf leer setzen und den Wert von expires auf ein überschrittenes Datum setzen.

document.cookie = "cookiename= ; expires = Thu, 01 Jan 1970 00:00:00 GMT"

Probieren Sie dieses Beispiel selbst aus:

 Cookie !!! </ title><script type = "text />Funktion createCookie (cookieName, cookieValue, daysToExpire){var date = neues Datum ();date.setTime (date.getTime () + (daysToExpire * 24 * 60 * 60 * 1000));document.cookie = cookieName + + cookieValue + "; expires =" + date.toGMTString ();}}Funktion accessCookie (cookieName){var name = cookieName + ;var allCookieArray = document.cookie.split (';');für (var i = 0; i <allCookieArray.length; i ++){var temp = allCookieArray [i] .trim ();if (temp.indexOf (name) == 0)return temp.substring (name.length, temp.length);}}Rückkehr "";}}Funktion checkCookie (){var user = accessCookie ("testCookie");if (user! = "")alert ("Willkommen zurück" + Benutzer + "!!!");sonst{user = prompt ("Bitte geben Sie Ihren Namen ein");num = prompt ("Wie viele Tage möchten Sie Ihren Namen auf Ihrem Computer speichern?");if (user! = "" && user! = null){createCookie ("testCookie", user, num);}}}}}}</ script></ head><body onload = "checkCookie ()"> </ body></ html></pre>
<p><strong> Spezielle Anweisungen, damit der Code funktioniert</strong></p>

<div id="container-5533149ee6411a5f99b370c693e87966"></div>
<strong>… Drücken Sie zweimal die Run-Taste</strong> <form class="hidden" code-box" name="sample"> Dieser Code kann bearbeitet werden. Klicken Sie zum Ausführen auf Ausführen<textarea name="codeguru"> </textarea>
<p><input type="submit" value="Lauf" style="background-color:#df5035;" color:#ffffff;"></p>
										</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="/8224687-java-string-replace-replacefirst-and-replaceall-with-examples" title="Java String replace (), replaceFirst () & replaceAll () durch Beispiele" rel="bookmark"><img src="https://cdn.css-code.org/7652139/java_string_replace-_replacefirst_ampamp_replaceall_with_examples.png.webp" loading="lazy" alt="Java String replace (), replaceFirst () & replaceAll () durch Beispiele" title="Java String replace (), replaceFirst () & replaceAll () durch 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="/8224687-java-string-replace-replacefirst-and-replaceall-with-examples" title="Java String replace (), replaceFirst () & replaceAll () durch Beispiele" rel="bookmark">Java String replace (), replaceFirst () & replaceAll () durch 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="/8224688-java-string-tolowercase-and-touppercase-methods" title="Java String toLowercase () - und toUpperCase () -Methoden" rel="bookmark"><img src="https://cdn.css-code.org/4991014/java_string_tolowercase_and_touppercase_methods.jpg.webp" loading="lazy" alt="Java String toLowercase () - und toUpperCase () -Methoden" title="Java String toLowercase () - und toUpperCase () -Methoden" 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="/8224688-java-string-tolowercase-and-touppercase-methods" title="Java String toLowercase () - und toUpperCase () -Methoden" rel="bookmark">Java String toLowercase () - und toUpperCase () -Methoden 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="/8224689-how-to-easily-convert-string-to-integer-in-java" title="So konvertieren Sie Zeichenfolgen in JAVA einfach in Ganzzahlen" rel="bookmark"><img src="https://cdn.css-code.org/2565693/how_to_easily_convert_string_to_integer_in_java.png.webp" loading="lazy" alt="So konvertieren Sie Zeichenfolgen in JAVA einfach in Ganzzahlen" title="So konvertieren Sie Zeichenfolgen in JAVA einfach in Ganzzahlen" 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="/8224689-how-to-easily-convert-string-to-integer-in-java" title="So konvertieren Sie Zeichenfolgen in JAVA einfach in Ganzzahlen" rel="bookmark">So konvertieren Sie Zeichenfolgen in JAVA einfach in Ganzzahlen 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="/8003824-find-all-internal-links" title="Alle internen Links finden - CSS-Tricks" rel="bookmark">Alle internen Links finden - 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="/8003825-fade-one-image-to-another-menu" title="Ein Bild in ein anderes Menü einblenden - CSS-Tricks" rel="bookmark">Ein Bild in ein anderes Menü einblenden - 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="/8003826-fallback-for-cdn-hosted-jquery" title="Fallback für CDN gehostete jQuery - CSS-Tricks" rel="bookmark">Fallback für CDN gehostete jQuery - 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="/8003827-find-and-wrap-ampersands" title="Suchen und Wickeln von kaufmännischem Und - CSS-Tricks" rel="bookmark">Suchen und Wickeln von kaufmännischem Und - 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="/8003828-fire-event-when-user-is-idle" title="Feuerereignis, wenn der Benutzer inaktiv ist - CSS-Tricks" rel="bookmark">Feuerereignis, wenn der Benutzer inaktiv ist - 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="/8003830-resize-iframe-to-fit-content-same-domain-only" title="Passen Sie die Größe des Iframes an den Inhalt an (nur dieselbe Domain) - CSS-Tricks" rel="bookmark">Passen Sie die Größe des Iframes an den Inhalt an (nur dieselbe Domain) - 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="/8003831-fix-minmax-width-for-browsers-without-native-support" title="Min / Max-Breite für Browser ohne native Unterstützung korrigieren - CSS-Tricks" rel="bookmark">Min / Max-Breite für Browser ohne native Unterstützung korrigieren - 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="/8003832-fix-select-dropdown-cutoff-in-ie-7" title="Fix Select Dropdown Cutoff in IE 7 - CSS-Tricks" rel="bookmark">Fix Select Dropdown Cutoff in IE 7 - 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="/8003833-force-an-iframe-to-reload" title="Einen Iframe zum Neuladen zwingen - CSS-Tricks" rel="bookmark">Einen Iframe zum Neuladen zwingen - 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="/8003834-fade-image-into-another-image" title="Bild in ein anderes Bild einblenden - CSS-Tricks" rel="bookmark">Bild in ein anderes Bild einblenden - 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="/8003835-fixing-ie-z-index" title="Fix IE Z-Index - CSS-Tricks" rel="bookmark">Fix IE Z-Index - 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="/8003837-get-an-images-native-width" title="Holen Sie sich ein Bild Native Width - CSS-Tricks" rel="bookmark">Holen Sie sich ein Bild Native Width - 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="/8003838-get-query-params-as-object" title="Abfrageparameter als Objekt abrufen - CSS-Tricks" rel="bookmark">Abfrageparameter als Objekt abrufen - 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="/8003839-fixing-load-in-ie-for-cached-images" title="Behebung von .load () im IE für zwischengespeicherte Bilder - CSS-Tricks" rel="bookmark">Behebung von .load () im IE für zwischengespeicherte Bilder - 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="/8003840-get-x-y-coordinates-of-mouse-within-box" title="Holen Sie sich X, Y Koordinaten der Maus in Box - CSS-Tricks" rel="bookmark">Holen Sie sich X, Y Koordinaten der Maus in Box - 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="/8003731-get-url-variables" title="URL-Variablen abrufen - CSS-Tricks" rel="bookmark"><img src="https://cdn.css-code.org/6049716/get_url_variables_css-tricks.png.webp" loading="lazy" alt="URL-Variablen abrufen - CSS-Tricks" title="URL-Variablen abrufen - 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="/8003731-get-url-variables" title="URL-Variablen abrufen - CSS-Tricks" rel="bookmark">URL-Variablen abrufen - 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="/8003732-htmlentities-for-javascript" title="HtmlEntities für JavaScript - CSS-Tricks" rel="bookmark"><img src="https://cdn.css-code.org/6920875/htmlentities_for_javascript_css-tricks.png.webp" loading="lazy" alt="HtmlEntities für JavaScript - CSS-Tricks" title="HtmlEntities für 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="/8003732-htmlentities-for-javascript" title="HtmlEntities für JavaScript - CSS-Tricks" rel="bookmark">HtmlEntities für 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="/8003733-get-youtube-key-from-a-link" title="Holen Sie sich den YouTube-Schlüssel von einem Link - CSS-Tricks" rel="bookmark"><img src="https://cdn.css-code.org/9484169/get_youtube_key_from_a_link_css-tricks.png.webp" loading="lazy" alt="Holen Sie sich den YouTube-Schlüssel von einem Link - CSS-Tricks" title="Holen Sie sich den YouTube-Schlüssel von einem Link - 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="/8003733-get-youtube-key-from-a-link" title="Holen Sie sich den YouTube-Schlüssel von einem Link - CSS-Tricks" rel="bookmark">Holen Sie sich den YouTube-Schlüssel von einem Link - 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="/8004320-75-how-not-to-design-a-checkout" title="# 75: Wie man keine Kasse entwirft - CSS-Tricks" rel="bookmark"># 75: Wie man keine Kasse entwirft - CSS-Tricks</a></h3>
									</div>
								</div>
							</li><li class="post-list-small__item">
								<div>
									<div>
										<h3 class="post-list-small__entry-title"><a href="/8004321-76-a-tour-of-jquery-on-a-live-site" title="# 76: Eine Tour durch jQuery auf einer Live-Site - CSS-Tricks" rel="bookmark"># 76: Eine Tour durch jQuery auf einer Live-Site - CSS-Tricks</a></h3>
									</div>
								</div>
							</li><li class="post-list-small__item">
								<div>
									<div>
										<h3 class="post-list-small__entry-title"><a href="/8004322-77-styling-an-individual-article" title="# 77: Styling eines einzelnen Artikels - CSS-Tricks" rel="bookmark"># 77: Styling eines einzelnen Artikels - CSS-Tricks</a></h3>
									</div>
								</div>
							</li><li class="post-list-small__item">
								<div>
									<div>
										<h3 class="post-list-small__entry-title"><a href="/8004323-72-building-a-website-2-of-3-htmlcss-conversion" title="# 72: Erstellen einer Website (2 von 3): HTML / CSS-Konvertierung - CSS-Tricks" rel="bookmark"># 72: Erstellen einer Website (2 von 3): HTML / CSS-Konvertierung - CSS-Tricks</a></h3>
									</div>
								</div>
							</li><li class="post-list-small__item">
								<div>
									<div>
										<h3 class="post-list-small__entry-title"><a href="/8004324-78-on-web-advertising" title="# 78: On Web Advertising - CSS-Tricks" rel="bookmark"># 78: On Web Advertising - 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="/8004041-striped-gradient-mixin" title="Striped Gradient Mixin - CSS-Tricks" rel="bookmark">Striped Gradient Mixin - CSS-Tricks</a></h3>
									</div>
								</div>
							</li><li class="post-list-small__item">
								<div>
									<div>
										<h3 class="post-list-small__entry-title"><a href="/8004043-tint-and-shade-functions" title="Farbton- und Schattenfunktionen - CSS-Tricks" rel="bookmark">Farbton- und Schattenfunktionen - CSS-Tricks</a></h3>
									</div>
								</div>
							</li><li class="post-list-small__item">
								<div>
									<div>
										<h3 class="post-list-small__entry-title"><a href="/8004044-use-a-sass-variable-for-a-selector" title="Verwenden Sie eine Sass-Variable für einen Selektor - CSS-Tricks" rel="bookmark">Verwenden Sie eine Sass-Variable für einen Selektor - CSS-Tricks</a></h3>
									</div>
								</div>
							</li><li class="post-list-small__item">
								<div>
									<div>
										<h3 class="post-list-small__entry-title"><a href="/8004045-viewport-sized-typography-with-minimum-and-maximum-sizes" title="Typografie in Ansichtsfenstergröße mit minimalen und maximalen Größen - CSS-Tricks" rel="bookmark">Typografie in Ansichtsfenstergröße mit minimalen und maximalen Größen - CSS-Tricks</a></h3>
									</div>
								</div>
							</li><li class="post-list-small__item">
								<div>
									<div>
										<h3 class="post-list-small__entry-title"><a href="/8004046-svg-hamburger-menu" title="SVG Hamburger Menü - CSS-Tricks" rel="bookmark">SVG Hamburger Menü - CSS-Tricks</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="/8222495-performance-testing-tutorial-what-is-types-metrics-and-example" title="Leistungstest-Tutorial: Was ist, Typen, Metriken & Beispiel" rel="bookmark">Leistungstest-Tutorial: Was ist, Typen, Metriken & Beispiel</a></h3>
									</div>
								</div>
							</li><li class="post-list-small__item">
								<div>
									<div>
										<h3 class="post-list-small__entry-title"><a href="/8222496-test-strategy-vs-test-plan-whats-the-difference" title="Teststrategie vs. Testplan: Was ist der Unterschied?" rel="bookmark">Teststrategie vs. Testplan: Was ist der Unterschied?</a></h3>
									</div>
								</div>
							</li><li class="post-list-small__item">
								<div>
									<div>
										<h3 class="post-list-small__entry-title"><a href="/8222497-top-25-database-testing-interview-questions-and-answers" title="Top 25 Fragen zum Testen von Datenbanktests & Antworten" rel="bookmark">Top 25 Fragen zum Testen von Datenbanktests & Antworten</a></h3>
									</div>
								</div>
							</li><li class="post-list-small__item">
								<div>
									<div>
										<h3 class="post-list-small__entry-title"><a href="/8222501-test-data-generation-what-is-how-to-example-tools" title="Testdatengenerierung: Was ist, wie, Beispiel, Tools" rel="bookmark">Testdatengenerierung: Was ist, wie, Beispiel, Tools</a></h3>
									</div>
								</div>
							</li><li class="post-list-small__item">
								<div>
									<div>
										<h3 class="post-list-small__entry-title"><a href="/8222504-what-is-negative-testing-test-cases-with-example" title="Was ist negatives Testen? Testfälle mit Beispiel" rel="bookmark">Was ist negatives Testen? Testfälle mit Beispiel</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>