-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
37 lines (37 loc) · 1.58 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta name="color-scheme" content="dark light">
<meta description="A website built only using HTML, in dark mode, to show what kind of web development you can do with just a HTML file.">
<title>HTML-Only Website In Dark Mode</title>
</head>
<body>
<main>
<section>
<h1>HTML-Only Website In Dark Mode</h1>
<p>Hi there. You're probably wondering why I built this website using only HTML. <i>Fortunately</i>, due to the fast loading speed of HTML-only websites, you don't need to wait long to find out.</p>
<p>Other than wanting to set myself a fun design challenge, below are the main reasons.</p>
</section>
<section>
<h3>Why HTML?</h3>
<ul>
<li>Loads quickly</li>
<li>Minimalist design (no distractions)</li>
<li>Sustainable</li>
<li>Compatible in older browsers</li>
<li>Compatible with multiple devices</li>
</ul>
<p>Also, it's old school, and nostalgia is pretty <i>in</i> right now.</p>
</br>
</section>
</main>
<footer>
<h4>Made by Sarah Caulfield</h4>
<a href="https://www.linkedin.com/in/scaulfield7/">LinkedIn</a> |
<a href="https://github.com/scaulfield7">GitHub</a> |
<a href="https://ko-fi.com/scaulfield7">Ko-fi</a>
</footer>
</body>
</html>