-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
51 lines (44 loc) · 2.05 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
<!DOCTYPE html>
<html>
<head>
<!-- Global site tag (gtag.js) - Google Analytics -->
<script async src="https://www.googletagmanager.com/gtag/js?id=UA-129901820-1"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'UA-129901820-1');
</script>
<script src="/js/main.js"></script>
<title>Steve's Stuff</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="https://www.w3schools.com/w3css/4/w3.css">
<link rel="stylesheet" href="https://www.w3schools.com/lib/w3-theme-blue-grey.css">
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Roboto">
<link rel="stylesheet" href="/css/main.css">
<link rel="stylesheet" href="/css/vs2015.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
<style>
body {font-family: "Roboto", sans-serif}
.w3-bar-block .w3-bar-item{padding:16px;font-weight:bold}
</style>
</head>
<body>
<div w3-include-html="/menu.html"></div>
<div class="w3-main" style="padding:32px">
<h3 style="margin: 25px 0px 0px 0px">Welcome to Steve's Stuff.</h3>
<p>This will be a personal site about some of my coding projects and other things. I will post new releases and more documentation in the future.</p>
<p>On my blog, I will post new site content and code releases</p>
<p>I will also some new projects on here like my new programming language PX will have releases and docs on here as well when it's ready.</p>
<p>Right now, we have a web version of Reversi I made using HTML5 and Javascript.</p>
<p>This is also the home for Flat-File SQL (or fSQL), a PHP library to run SQL calls on flat files.</p>
<p>I have added photo albums from my trips and activies</p>
</div>
<footer class="w3-container" style="padding:32px">
<p>© 2018 Steve Buberl</p>
</footer>
<script>
includeHTML();
</script>
</body>
</html>