-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
121 lines (93 loc) · 3.65 KB
/
Copy pathindex.html
File metadata and controls
121 lines (93 loc) · 3.65 KB
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
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="description" content="Laboratory">
<meta name="keywords" content="fab1aly, laboratory, html, css, javascript, github, linkedin">
<meta name="author" content="Fabien Aly">
<title>Fabien Aly's Lab</title>
<link rel="stylesheet" href="css/normalize.css">
<link rel="stylesheet" href="css/style.css">
<link rel="dns-prefetch" href="https://kit.fontawesome.com" crossorigin>
<link rel="dns-prefetch" href="https://ka-f.fontawesome.com" crossorigin>
<script src="https://kit.fontawesome.com/fdc6c3e4a2.js" crossorigin="anonymous"></script>
<script type="module" src="script/module/custom-element.js"></script>
<script defer src="script/main.js"></script>
</head>
<body class="green-mode">
<header>
<nav>
<ul>
<li id="nav-home" onclick="displayHome()"><span style="font-size: 1.4rem;">●</span></li>
<li id="nav-lab_1" onclick="displayLab_1()">lab_1</li>
<li id="nav-lab_2" onclick="displayLab_2()">lab_2</li>
</ul>
</nav>
</header>
<main>
<article id="title">
<h1>Fabien Aly</h1>
<p>Laboratory</p>
<p id="bannerUp" class="banner">Look for an Alternation</p>
<p id="bannerDown" class="banner">Look for an Alternation</p>
</article>
<article id="home">
<type-chat delay="400" tick="4">
<h2>About this</h2>
<p>
From my laboratory located in <i>Bordeaux</i>, I work on obscure projects.<br>
You can see a part of my ideas, maybe one will a big <b>idea</b> !<br>
I want to exercise my skills and discover <b>more</b>.
</p>
</type-chat>
</article>
<article id="lab_1" class="lab">
<h2>WebTorrent</h2>
<section>
<details>
<summary>
<h3>test_1</h3>
</summary>
<iframe
src="lab_1/test_1.html"
loading="lazy"
></iframe>
<p>Premier test, mise en route de cette techno.</p>
</details>
</section>
<section>
<details>
<summary>
<h3>test_2</h3>
</summary>
<iframe
src="lab_1/test_2.html"
loading="lazy"
></iframe>
<p>dev une classe pour encapsuler cette techno.</p>
</details>
</section>
</article>
<article id="lab_2" class="lab">
<h2>Another thing</h2>
</article>
</main>
<footer>
<span id="footer-copyleft"><span class="copyleft-logo">©</span>copyleft</span>
<ul id="footer-social-link">
<li id="footer-linkedin">
<a href="https://www.linkedin.com/in/fab1aly/" target="_blank">
<i class="fa-brands fa-linkedin"></i><span>LinkedIn</span>
</a>
</li>
<li id="footer-github">
<a href="https://github.com/fab1aly" target="_blank">
<i class="fa-brands fa-square-github"></i><span>GitHub</span>
</a>
</li>
</ul>
<span id="footer-darkMode">Green ◼</span>
</footer>
</body>
</html>