-
Notifications
You must be signed in to change notification settings - Fork 20
/
Copy pathindex.html
64 lines (64 loc) · 2.13 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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
<!DOCTYPE html>
<html lang="fr">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Alyra Gradients</title>
<link
rel="stylesheet"
href="https://stackpath.bootstrapcdn.com/bootstrap/5.0.0-alpha1/css/bootstrap.min.css"
integrity="sha384-r4NyP46KrjDleawBgD5tp8Y7UzmLA05oM1iAEQ17CSuDqnUK2+k9luXQOfXJCJ4I"
crossorigin="anonymous"
/>
<link rel="icon" type="image/png" href="favicon-32x32.png" sizes="32x32" />
<link rel="stylesheet" href="style.css" />
</head>
<body>
<header id="page-header" class="text-center bg-dark text-white py-5 mb-5">
<h1 class="display-1">Alyra Gradients</h1>
<p class="tagline">
Ultime collection de plus beaux dégradés
</p>
<button
id="header-button"
type="button"
class="btn btn-outline-light"
aria-label="Change le fond de l'entête"
>
<svg
width="1em"
height="1em"
viewBox="0 0 16 16"
class="bi bi-arrow-clockwise"
fill="currentColor"
xmlns="http://www.w3.org/2000/svg"
>
<path
fill-rule="evenodd"
d="M3.17 6.706a5 5 0 0 1 7.103-3.16.5.5 0 1 0 .454-.892A6 6 0 1 0 13.455 5.5a.5.5 0 0 0-.91.417 5 5 0 1 1-9.375.789z"
/>
<path
fill-rule="evenodd"
d="M8.147.146a.5.5 0 0 1 .707 0l2.5 2.5a.5.5 0 0 1 0 .708l-2.5 2.5a.5.5 0 1 1-.707-.708L10.293 3 8.147.854a.5.5 0 0 1 0-.708z"
/>
</svg>
</button>
</header>
<main class="container">
<p class="text-center display-6" id="intro"></p>
<div class="input-group mb-3">
<label for="filtertags" class="input-group-text">
Tags
</label>
<select id="filtertags" name="filtertags" class="form-select">
<option value="toutes les couleurs" selected
>toutes les couleurs</option
>
</select>
</div>
<div id="grid-container"></div>
</main>
<script src="js/gradients.js"></script>
<script src="js/script.js"></script>
</body>
</html>