-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
20 lines (20 loc) · 782 Bytes
/
Copy pathindex.html
File metadata and controls
20 lines (20 loc) · 782 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
<!DOCTYPE html>
<html lang="fr">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Citation generator</title>
<link rel="stylesheet" href="styles.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/animate.css/4.1.1/animate.min.css" />
<link rel="website icon" type="png" href="images/gemicon.png">
<script src="script.js" defer></script>
</head>
<body>
<div id="conteneur">
<h1 class="animate__animated animate__fadeInDown">Citation generator</h1>
<p id="citation"></p>
<div id="espace"></div>
<button class="animate__animated animate__fadeInDown" id="generer" onclick="genererCitation()">Générer</button>
</div>
</body>
</html>