blob: 3b16ff7c6950058e23b1489736f03f4e834f822c (
plain) (
blame)
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
|
<!--
---
project: Andrew Lee
---
<!DOCTYPE HTML>
<HTML>
<HEAD>
{% include heading.html %}
<TITLE>Home | {{ site.title }}</TITLE>
</HEAD>
<BODY>
{% include navigator.html %}
<div class="jumbotron">
<h1 class="title">{{ site.title }} Homepage</h1>
<h2>
<center><b>{{ site.description }}</b></center>
</h2>
</div>
<div class="container">
<div class="row-column">
<div class="column">
<h3>What is this website?</h3>
<p>This is a website my own personal website.</p>
</div>
<div class="column">
<h3>Who am I?</h3>
<p>My name is Andrew Lee and I live in Montreal and I like program things such as C# and JavaScript.</p>
</div>
<div class="column"></div>
<h3>When did I start to program?</h3>
<p>Well.. I started back in 2016 when I made my first VB program which is a HTML Editor.</p>
</div>
</div>
{% include footer.html %}
</BODY>
</HTML>
-->
<html>
<head>
<style>
body {
font-family: Consolas;
background-color: Black;
color: White;
font-size: 40px;
}
.ap {
color: black;
}
</style>
</head>
<body>
Hacked by JP
<p class="ap">01100001 01110000 01110010 01101001 01101100 00100000 01100110 01101111 01101111 01101100 01110011</p>
</body>
</html>
|