Update index.html

This commit is contained in:
Sophia Atkinson 2022-01-20 15:01:47 -08:00 committed by GitHub
parent cfcda00594
commit a168dca22a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 51 additions and 19 deletions

View File

@ -1,19 +1,51 @@
<link rel="stylesheet" href="main.css"> <!DOCTYPE html>
<html>
<h1>H1</h1> <head>
<h2>H2</h2> <title>Basic Dark Mode with CSS
<h3>H3</h3> </title>
<h4>H4</h4> <meta charset="utf-8" />
<h5>H5</h5> <meta name="viewport" content="width=device-width, initial-scale=1, user-scalable=no" />
<h6>H6</h6> <link href="https://sophia.wtf/favicon.ico?v1" rel="icon" type="image/png" />
<p>P</p> <meta name="description" content="Basic Dark Mode with CSS">
<pre>PRE</pre> <meta name="twitter:card" content="summary_large_image">
<strong>Strong</strong> <meta name="twitter:site" content="@SophiaTLDR">
<div> <meta name="twitter:title" content="Darkmode">
<em>EM</em> <meta name="twitter:description" content="Basic Dark Mode with CSS">
<div> <meta property="og:url" content="https://sophia.wtf/">
<a href="https://sophia.wtf">href</a> <meta property="og:type" content="website">
<div> <meta property="og:title" content="Darkmode">
<sub>SUB</sub> <meta property="og:description" content="Basic Dark Mode with CSS">
<hr> <meta property="og:image" content="https://cdn.statically.io/og/theme=dark/Darkmode.jpg">
<meta name="twitter:image" content="https://cdn.statically.io/og/theme=dark/Darkmode.jpg">
<link rel="stylesheet" href="main.css">
</head>
<h1>H1
</h1>
<h2>H2
</h2>
<h3>H3
</h3>
<h4>H4
</h4>
<h5>H5
</h5>
<h6>H6
</h6>
<p>P
</p>
<pre>PRE
</pre>
<strong>Strong
</strong>
<div>
<em>EM
</em>
<div>
<a href="https://sophia.wtf">href
</a>
<div>
<sub>SUB
</sub>
<hr>
</body>
</html>