blob: 45fb092791d3f305d52e57c86d3f012651b56a43 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
---
project: Andrew's Website
---
<HTML>
<HEAD>
{% include heading.html %}
<TITLE>{{ site.title }}</TITLE>
</HEAD>
<BODY>
{% include navigator.html %}
<h1 class ="title">{{ site.title }}</h1>
<h2>Who am I?</h2>
<p>Hey there! My name is Andrew Lee and I like program things such as C# and JavaScript.</p>
<h2>When did I start programming?</h2>
<p>Well.. I started back in 2016 when I made my first VB program which is a HTML Editor.</p>
{% include footer.html %}
</BODY>
</HTML>
|