-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstate.html
95 lines (86 loc) · 2.47 KB
/
state.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
88
89
90
91
92
93
94
95
<!DOCTYPE html>
<html lang="fr">
<head>
<meta charset='utf-8'>
<title>Tracker Solaire</title>
<link rel="icon" href="assets/images/logo.ico"/>
<link rel="stylesheet" type="text/css" href="assets/css/barre.css"/>
<link rel="stylesheet" type="text/css" href="assets/css/design.css"/>
<link rel="stylesheet" type="text/css" href="assets/css/animFondHeadHorloge.css"/>
</head>
<body>
<div id="header"></div>
<div id="horloge"></div>
<!---MENU -->
<center>
<ul class="menu">
<li class="menuContent"><a href="index.html#presentation">Présentation</a></li>
<li class="menuContent"><a href="page1.html">Expérience</a></li>
<li class="menuContent"><a href="page2.html">Galerie</a></li>
<li class="menuContent"><a href="conclusion.html">Synthèse</a></li>
</ul>
</center>
<div class="contenuPage">
<div class="btnConnection" onclick="coucou(1);">open</div>
<div class="btnConnection" onclick="coucou(0);">close</div>
<style>
.btnConnection{
display: inline-block;
cursor: default;
margin: 20px;
padding: 3px 0 3px 0;
width: 100px;
text-align: center;
border-radius: 7px;
background-color: rgba(0,0,255,0.3);
border: 2px solid rgba(0,0,255,0.01);
}
.btnConnection:hover{
border: 2px solid rgba(0,0,255,0.4);
}
</style>
<p id="results"></p>
<p>
<script type="text/javascript" src="assets/js/stats.js"></script>
<script type="text/javascript">
//coucou(1);
</script>
</p>
</div>
</body>
<footer><!---====FOOTER====-->
<div>
<div class="text">
TS4 - ISN © 2018-2019
</div>
<div class= "text">
|
</div>
<div style="color:blue;text-decoration:underline;" class="text">
Léa JEAN
</div>
<div class= "text">
|
</div>
<div class= "text">
<a href="https://lanryu.000webhostapp.com/">Adélaïde LOUIS</a>
</div>
<div class= "text">
|
</div>
<div class= "text">
<a href="https://lost-sh.000webhostapp.com/">Yohann VERNHES</a>
</div>
<div class= "text">
|
</div>
<div class= "text">
<a style="color: black;text-decoration: none;" href="https://lyceeduruy.fr/">Lycée Victor Duruy</a>
</div>
<div class= "accueil">
<a style="color: black;text-decoration: none;" href="index.html">ACCUEIL</a>
</div>
</div>
</footer>
<script type="text/javascript" src="assets/js/anim-fondHead.js"></script>
</html>