-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex.php
More file actions
35 lines (34 loc) · 829 Bytes
/
Copy pathindex.php
File metadata and controls
35 lines (34 loc) · 829 Bytes
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
<?php
require_once('_templates/head.php');
?>
<body>
<div class="header">
<h1>Bjørnar Hagen</h1>
<p>Lists with commands & settings</p>
</div>
<dl>
<dt>
<a href="web_dev"><input value="Web Dev" type="text" readonly></a>
</dt>
<dt>
<a href="linux"><input value="Linux" type="text" readonly></a>
</dt>
<dt>
<a href="windows"><input value="Windows" type="text" readonly></a>
</dt>
<dt>
<a href="sublime"><input value="Sublime" type="text" readonly></a>
</dt>
<dt>
<a href="vscode"><input value="VS Code" type="text" readonly></a>
</dt>
<dt>
<a href="wordpress"><input value="Wordpress" type="text" readonly></a>
</dt>
</dl>
<style>
nav {
display: none;
}
</style>
<?php require_once('_templates/footer.php'); ?>