-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
82 lines (69 loc) · 2.81 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
<!doctype html>
<meta content="text/html; charset=utf-8" http-equiv="content-type">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="icon" type="image/x-icon" href="/template/Image/favicon.ico">
<link rel="stylesheet" href="template/style.css" />
<html style="background-image: linear-gradient(270deg,black,black,rgb(37, 41, 45))">
<title>NeuronApp</title>
<head>
<!-- Google Balise -->
<script async src="https://www.googletagmanager.com/gtag/js?id=G-SQNQQT4LBS"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'G-SQNQQT4LBS');
</script>
<!-- Menu loading -->
<script src="https://code.jquery.com/jquery-3.7.0.js"></script>
<script>
$(function(){
$("#includedContent").load("/French/FR-menu.html");
});</script>
<!-- Header -->
<header>
<div class="wrapper">
<div class = "page-header">
<div class="menu-icon">
<!--Menu icon-->
<img src = "template/Image/menu icon white.png" alt = "Menu icon white" class="menu-icon"/>
<!-- Primary Menu Overlay-->
<div class="overlay-primary-menu" id="includedContent">
</div>
</div>
<!--Bouton back to homepage-->
<a href="index.html" class = "homepage-logo">
<img src="template/Image/Homepage-logo-white.png" alt="Logo menu" class="homepage-logo"/>
</a>
<!-- Title on the top of the app-->
<h1>NeuronApp</h1>
</div>
<hr class = "separation-line-homepage"/>
</div>
</header>
</head>
<body class="body">
<div class = "left-box">
<!--Image centrale-->
<img class="homepage-tutorat-image" alt="Homepage Image", src="template/Image/Full_animated_logo.gif">
<!--Lien clicable portion de gauche-->
</div>
<div class = "right-box">
<main>
<div class="justified-text">
<p style="font-size: x-large; ">
Bienvenue sur cette application web de modélisation neuronale faite dans le
cadre du tutorat de programmation pour les étudiants du Master de Neurosciences.
</p>
<p class="justified-text" style="font-style: italic;">
by Alexandre and Cyprien.
</p>
<div class="Choose-Language">
<label for="Language">Cliquer ici pour passer à la version Anglaise :</label>
<a id="Language" href="/English/EN-Homepage.html" class="Choose-Language"> Version Anglaise</a>
</div>
</div>
</main>
</div>
</body>
</html>