-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
39 lines (36 loc) · 1.39 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
<!DOCTYPE html>
<html lang="fr">
<head>
<meta charset='utf-8'>
<meta http-equiv='X-UA-Compatible' content='IE=edge'>
<title>Moteur de recherche personnalisé</title>
<meta name="description"
content="Un outil pour créer un moteur de recherche personnalisé à partir d'une liste de sites" />
<meta name="author" content="Cédric Eyssette" />
<meta name='viewport' content='width=device-width, initial-scale=1'>
<link rel='stylesheet' type='text/css' href='css/styles.min.css'>
<link rel="icon" href="favicon.svg">
</head>
<body>
<header>
<h1 id="cse-title"></h1>
<div id="initial-message"></div>
</header>
<main id="search">
<label for="search-input">Votre recherche :</label>
<input type="text" id="search-input" name="search" size="50" />
<button id="send-button">OK</button>
<div id="additional-content"></div>
<div id="wait-message">
<p>Recherche en cours, merci de patienter
<span id="loader"></span>
</p>
</div>
</main>
<footer id="credits">
<p>Outil libre et gratuit créé par <a href="http://eyssette.forge.apps.education.fr/">Cédric Eyssette</a></p>
<p>Sources sur <a href="https://forge.apps.education.fr/cse/cse.forge.apps.education.fr">la Forge</a></p>
</footer>
<script src='script.min.js'></script>
</body>
</html>