aboutsummaryrefslogtreecommitdiffstats
path: root/index.html
blob: 02ec7a89bd3bee0d3004615cbaa953a0c14da5b1 (plain)
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
62
63
64
65
66
67
68
69
70
71
72
73
74
<html>
  <head>
	<title>Joe's own website</title>
	<link rel="stylesheet" type="text/css" href="css/site.css">
	<meta charset="UTF-8">
  </head>
  <body>
	<div class="fullpage">
	  <header>
		<h1>Joe's dev blog</h1>
	  </header>
	  <div class="sidebar">
		<ul>
		  <li>
			<a href="index.html">Home</a>
		  </li>
		  <li>
			<a href="">C</a>
		  </li>
		  <li>
			<a href="">C++</a>
		  </li>
		  <li>
			<a href="">Lisp</a>
		  </li>
		  <li>
			<a href="">Assembly</a>
		  </li>
		  <li>
			<a href="">UNIX</a>
		  </li>
		  <li>
			<a href="">GNU Emacs</a>
		  </li>
		  <li>
			<a href="">My projects</a>
		  </li>
		  <li>
			<a href="">My C/C++ style</a>
		  </li>
		  <li>
			<a href="">Links</a>
		  </li>
		</ul>
	  </div>
	  <div class="body-contents">
		<h1>About the site</h1>
		<p>
		  Welcome to my personnal blog. There you can find my tips and articles
		  on various tech and programming subjects.
		  <br><br>
		  The site is still in active developpement, come back sometimes.
		</p>
		<h1>About me</h1>
		<p>
		  I am a student for
		  <a href="https://www.42lyon.fr/" target="_blank">42Lyon</a>
		  IT school based in Lyon, France.
		  I work on various personnal project beside that.
		</p>
		<p>
		  <a href="phptest.php">PHP test</a>
		</p>
	  </div>
	  <footer>
		<p>
		  Copyright Joe 2020 -
		  see <a href="LICENSE">LICENSE</a> -
		  we do not use cookies
		</p>
	  </footer>
	</div>
  </body>
</html>