-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
40 lines (31 loc) · 1.07 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
<!DOCTYPE html>
<html lang="fr">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="author" content="Gianni HUYNH">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="icon" type="image/png" href="favicon.png" />
<link rel="stylesheet" href="style.css" />
<script type="text/javascript" src="script.js"></script>
<title>syrac.js</title>
</head>
<body>
<div class = "beforeCalcul">
<h1 id = "title">syrac.js</h1>
<h2>Syracuse Collatz calculator 💷</h2>
<input type="text" id="input" placeholder="Enter number" >
<br/>
<a href="#" class = "button" onclick="launchCalcul()">
<span></span>
<span></span>
<span></span>
<span></span>
Launch calcul 🚀
</a>
<p>Created in 2 hours by Gianni HUYNH ! - All rights reserved 2021 ©</p>
</div>
<div class = "afterCalcul">
</div>
</body>
</html>