-
Notifications
You must be signed in to change notification settings - Fork 3
/
start.html
executable file
·54 lines (37 loc) · 2.04 KB
/
start.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
<!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>Start Here - MyLight.Website</title>
<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">Getting Started<span class="logo_dot"></span></h1>
</div>
<div class="main">
<!-- *** START PAGE CONTENT *** -->
<p><b>So you decided you want to take part in this little series and want to make a Light Website of your own? That's great. This page will get you started.</b></p>
<p>This series works a bit like a wizard. Once you click on the <i>Let's Go!</i> button below, you will be taken to the first stage of the series. The site will be extremely basic and contain pretty much no formatting.</p>
<p>At the bottom of each step there's a link to the <i>Next Step</i>. This will take you to the next step in the series were you can add a little more to your site. Eventually you will get to the end of the series and will have a site that looks just like this. <b>Good luck!</b></p>
<h5>If you have any problems with this series, or find a bug, please <a href="https://kevquirk.com/contact">contact me</a>.</h5>
<a class="button" href="steps/step01/index.html">Let's Go! --></a>
<!-- *** 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>