-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathindex.html
executable file
·79 lines (53 loc) · 3.96 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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
<!DOCTYPE html>
<html lang="en">
<head>
<meta http-equiv="content-type" content="text/html; charset=utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>MyLight.Website</title>
<meta name="description" content="MyLight.Website will guide you through making a great looking, light website quickly and easily." />
<link rel="shortcut icon" href="images/favicon.png" />
<link rel="stylesheet" href="style.css" />
<link rel='stylesheet' href="fonts/pt-sans/pt-sans.css" type='text/css' media='all' />
</head>
<body>
<!-- *** START HEADER *** -->
<div class="header">
<p class="sitelogo"><a class="sitelogo" href="/index.html" rel="home">MyLight.Website</a></p>
<p class="menu"><a class="menubtn" href="menu.html">Menu</a></p>
</div>
<!-- *** END HEADER *** -->
<div class="banner">
<h1 class="banner-text">MyLight<span class="logo_dot"></span>Website</h1>
</div>
<div class="main">
<!-- *** START PAGE CONTENT *** -->
<h1>Welcome!</h1>
<p>Welcome to <i>MyLight.Website</i>, my name is Kev Quirk and I wrote this entire website by hand to prove that you can still have a good looking, functional website that is quick and light too.</p>
<p><b>This webpage is less than 100KB in size and it contains only a single line JavaScript!</b></p>
<p>This site doesn't include any Google call outs either - all fonts are served direct from the web server. So if you're a privacy person, like me, there ain't no Google here! This site also scores straight 100s for performance, accessibility, best practices & SEO on <a target="blank" href="https://lighthouse-dot-webdotdevsite.appspot.com//lh/html?url=https%3A%2F%2Fmylight.website%2F">Google's Lighthouse test</a>.</p>
<p>Once I decided I was going to build this website, I thought it would be a good idea to write a series on <a target="blank" href="https://kevquirk.com">my blog</a> about how to build a website just like this one, from scratch.</p>
<p>If you want to start working through my <i>Making A Website</i> series, use the <a href="start.html">Start Here</a> link in the menu bar above. The series is integrated into this website and is designed to be a supplement to the posts on my blog (links available on the <a href="/downloads.html">downloads page</a>). You will start with an extremely simple website, and end with a site that looks just like this.</p>
<br><hr><br>
<p><b>All work on this site is licensed under <a target="blank" href="https://creativecommons.org/licenses/by-sa/4.0/">Creative Commons Attribution Share-Alike 4.0</a>, which provides the following freedoms if you wish to use any of this content:</b></p>
<ul>
<li>You are free to share, copy and redistribute the material in any medium or format.</li>
<li>You are also free to adapt, remix, transform, and build upon the material for any purpose, even commercially. However…</li>
<li>You must provide attribution to the author (me) with a link back to this website. An example attribution is below.</li>
<li>If you remix, transform, or build upon the material, you must distribute your contributions under the same license as the original.</li>
<li>You may not apply legal terms or technological measures that legally restrict others from doing anything the license permits.</li>
</ul>
<h2>Example Attribution</h2>
<p>An acceptable attribution license would be something similar to the following:</p>
<blockquote><p>Credit to <a href=https://kevquirk.com>Kev Quirk</a> for the original work.</p></blockquote>
<p>With the plain text HTML looking like the following:</p>
<p><code>Credit to <a href="https://kevquirk.com">Kev Quirk</a> for the original work.</code></p>
<!-- *** END PAGE CONTENT *** -->
<!-- *** Start Footer *** -->
<div class="footer">
<p>MyLight.Website was created by <a href="https://kevquirk.com">Kev Quirk</a>.<br>
All work licensed under <a href="https://creativecommons.org/licenses/by-sa/4.0/">CC BY-SA 4.0</a> unless otherwise stated.</p>
</div>
<!-- *** End Footer *** -->
</div>
</body>
</html>