-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
68 lines (59 loc) · 1.92 KB
/
Copy pathindex.html
File metadata and controls
68 lines (59 loc) · 1.92 KB
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
<!doctype html>
<html lang="en-US">
<head>
<meta charset="utf-8">
<title>Splashsky</title>
<style>
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
background-color: #ededed;
color: #555;
font-family: sans-serif;
padding: 1em;
line-height: 1.5;
}
h1 {
display: inline-block;
background-color: rgb(56, 132, 2017);
color: white;
padding: 0.1em 1.2em;
font-size: 2em;
border-radius: 4px;
}
ul {
margin-left: 1em;
}
ul li {
margin: 1em 0;
}
</style>
</head>
<body>
<h1>splashsky</h1> <h2>on github.io</h2>
<p style="margin: 1em 0;">
Hey there! Here's a quick list of my Github-hosted projects!
</p>
<h3>Projects</h3>
<ul>
<li>
<a href="https://splashsky.github.io/simple-format-tool/">Simple Format Tool</a>
<p>A simple tool I built for my fellow call center agents that formats customer info into our internal chat format for questions!</p>
</li>
<li>
<a href="https://splashsky.github.io/system-compatibility-guide/">System Compatibility Guide</a>
<p>This is a guide I'm writing that teaches product knowledge and system compatibility for ADT-supported home security systems.</p>
</li>
<li>
<a href="https://splashsky.github.io/simple-browser-notepad/">Simple Browser Notepad</a>
<p>This is a browser-based notepad made to be as simple and efficient as I can make it!</p>
</li>
</ul>
<footer>
Copyright 2018, Skylear Johnson. All rights reserved.
</footer>
</body>
</html>