-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtitrator.html
65 lines (41 loc) · 1.3 KB
/
titrator.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
<!DOCTYPE html>
<html>
<head>
<title>titrator</title>
<link rel="stylesheet" type="text/css" href="css/titrator.css">
<script src="https://code.jquery.com/jquery-1.10.2.js"></script>
<!-- Global site tag (gtag.js) - Google Analytics -->
<script async src="https://www.googletagmanager.com/gtag/js?id=G-L6865FVEBZ"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'G-L6865FVEBZ');
</script>
</head>
<body>
<!--Navigation bar-->
<div id="nav-placeholder">
</div>
<script>
$(function(){
$("#nav-placeholder").load("nav_titrator.html");
});
</script>
<!--end of Navigation bar-->
<div id="titrator" class="titrator">
<h1>A Shiny app to generate acid/base titration data and figures (in French)</h1>
<br>
<h3><a href="https://elargy.shinyapps.io/titratoR" target="_blank"</a>The app is also available on shinyapps.io</h3>
<iframe src="https://elargy.shinyapps.io/titratoR" width="100%" height="1000" frameborder="0" allowfullscreen="allowfullscreen"></iframe>
<br>
</div>
<footer>
<br>
<p>This page is hosted by GitHub Pages.</p>
<p><a href="mailto: eric.largy@u-bordeaux.fr">Contact</a></p>
<p><a href="https://arna.cnrs.fr">ARNA lab website</a></p>
<br>
</footer>
</body>
</html>