-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
87 lines (78 loc) · 3.45 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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
<!doctype html>
<html lang="en">
<head>
<!-- Required meta tags -->
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<!-- Bootstrap CSS -->
<link rel="stylesheet" href="css/bootstrap.css">
<!-- Fontawesom -->
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.0.13/css/all.css" integrity="sha384-DNOHZ68U8hZfKXOrtjWvjxusGo9WQnrNx2sqG0tfsghAvtVlRW3tvkXWZh58N9jp" crossorigin="anonymous">
<!-- local style -->
<link rel="stylesheet" href="css/style.css">
<title>Daniel Morin</title>
</head>
<body>
<nav class="navbar navbar-expand-lg navbar-light bg-light">
<a class="navbar-brand" href="bio.html">Daniel Morin</a>
<button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#navbarSupportedContent" aria-controls="navbarSupportedContent" aria-expanded="false" aria-label="Toggle navigation">
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse" id="navbarSupportedContent">
<ul class="navbar-nav mr-auto">
<li class="nav-item active">
<a class="nav-link" href="index.html">Bio<span class="sr-only">(current)</span></a>
</li>
<li class="nav-item">
<a class="nav-link" href="mailto:[email protected]">Contact</a>
</li>
</ul>
</div>
</nav>
<div class="container">
<p>Welcome to my site. At the moment the most useful information you can find here is my <a href="mailto:[email protected]">contact</a></p>
<br>
<h1>Professional</h1>
<p>I'm a professional software engineer working in the field since 2006.</p>
<h1>Expertises</h1>
<h2>Programming Languages</h2>
<ul>
<li>C, Expert</li>
<li>C++, Expert</li>
<li>Python, Good</li>
<li>Rust, Beginner</li>
</ul>
<br>
<h1>Languages</h1>
<ul>
<li>French</li>
<li>English</li>
</ul>
<h1>Projects Contributor</h1>
<ul>
<li>GStreamer</li>
</ul>
</div>
<footer class="main-footer">
<div class="container">
<div class="container">
<div class="row">
<div class="col-md-3">
<h3>About Me</h3>
<p>Copyright © 2018</p>
</div>
<div class="col-md-3">
<ul class="fa-ul">
<li><a href="mailto:[email protected]"><span class="fa-li"><i class="fas fa-envelope" ></i></span>[email protected]</a></li>
</ul>
</div>
</div>
</div>
</footer>
<!-- Optional JavaScript -->
<!-- jQuery first, then Popper.js, then Bootstrap JS -->
<script src="https://code.jquery.com/jquery-3.3.1.slim.min.js" integrity="sha384-q8i/X+965DzO0rT7abK41JStQIAqVgRVzpbzo5smXKp4YfRvH+8abtTE1Pi6jizo" crossorigin="anonymous"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.14.3/umd/popper.min.js" integrity="sha384-ZMP7rVo3mIykV+2+9J3UJ46jBk0WLaUAdn689aCwoqbBJiSnjAK/l8WvCWPIPm49" crossorigin="anonymous"></script>
<script src="js/bootstrap.js"></script>
</body>
</html>