-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
53 lines (46 loc) · 1.12 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
<!DOCTYPE html>
<html>
<head>
<script async
src="//pagead2.googlesyndication.com/pagead/js/adsbygoogle.js"></script>
<script>
(adsbygoogle = window.adsbygoogle || []).push({
google_ad_client: "ca-pub-6404684992964225",
enable_page_level_ads: true
});
</script>
<style>
.card {
box-shadow: 0 4px 8px 0 rgba(0,0,0,0.2);
transition: 0.3s;
width: 300px;
border-radius: 5px;
}
.card:hover {
box-shadow: 0 8px 16px 0 rgba(0,0,0,0.2);
}
.container {
padding: 2px 16px;
}
img {
border-radius: 5px 5px 0 0;
}
.card a {
text-decoration-line: inherit;
color: inherit;
}
</style>
</head>
<body>
<h1>Projets hébergés sur Github :</h1>
<div class="card">
<a href="https://dgac.github.io/simupaye/">
<img src="./img/bulletin-de-paie1.jpg" alt="Avatar" style="width:100%">
<div class="container">
<h4><b>Simupaye</b></h4>
<p>Simulateur de salaire pour les agents DGAC</p>
</div>
</a>
</div>
</body>
</html>