-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathabout.php
More file actions
20 lines (18 loc) · 760 Bytes
/
about.php
File metadata and controls
20 lines (18 loc) · 760 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
<meta charset='utf-8'/>
<meta name="viewport" content="width=device-width, initial-scale=0.6">
<html>
<head>
<title>About - Plange</title>
<link rel=StyleSheet href='css/general.css' type='text/css' />
</head>
<body>
<?php require('header.php') ?>
<ul>
<li>Plange was first conceptualized in 2013.</li>
<li>This website was launched in 2015.</li>
<li>The name is a reference to the 4th episode of the series "IT Crowd". See the clip <a href="https://www.youtube.com/watch?v=ct1-zq8gf_0">here</a>.</li>
<li>This site is javascript free. It's just HTML and <a href="/css/">some styling</a>.</li>
</ul>
<?php require('footer.php') ?>
</body>
</html>