-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
50 lines (50 loc) · 1.95 KB
/
index.html
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
<html lang="en">
<head>
<meta name="viewport" content="width=device-width,initial-scale=1"\>
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.6/css/bootstrap.min.css"\>
<title>About me</title>
</head>
<body>
<div class="jumbotron">
<div class="container">
<h1>Welcome !</h1>
</div>
</div>
<div class="container">
<div class="row">
<div class="col-md-6">
<h2>About me</h2>
<p>
I'm a passionate python developper, in love husband and happy father :-). I'm living in the vibrant city of Brussels. Although Python3 is my current language of choice, I have also experience within C/C++, HTML5, javascript, Java and Delphi.
</p>
</div>
<div class="col-md-6">
<h2>Library</h2>
<p>
Here is a list of books I appreciated and really recommend for people who share my interests and want to have a pleasant time.
</p>
<p>
<a class="btn btn-default" href="/library" role="button">Library</a>
</p>
</div>
<div class="col-md-6">
<h2>Contact</h2>
<p>
Drop a mail to denayer.norman (at) gmail (dot) com.
</p>
<p>
<a class="btn btn-default" href="/contact" role="button">Contact</a>
</p>
</div>
</div>
</div>
<hr></hr>
<footer>
<div class="container">
<p>© nde inc. 2016</p>
</div>
</footer>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.6/js/bootstrap.min.js"></script>
</body>
</html>