-
Notifications
You must be signed in to change notification settings - Fork 0
/
liste.html
79 lines (72 loc) · 2.29 KB
/
liste.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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta http-equiv="X-UA-Compatible" content="ie=edge" />
<title> ACNH </title>
<link href="https://fonts.googleapis.com/css?family=Open+Sans:400" rel="stylesheet" />
<link href="https://fonts.googleapis.com/css2?family=Bebas+Neue&display=swap" rel="stylesheet">
<link href="css/templatemo-style.css" rel="stylesheet" />
<link href="css/all.min.css" rel="stylesheet" />
</head>
<body>
<div class="container">
<!-- Top box -->
<!-- Logo & Site Name -->
<div class="placeholder">
<div class="parallax-window">
<div class="tm-header">
<div class="row tm-header-inner">
<div class="col-md-6 col-12">
<img src="img/logo.png" alt="Logo" class="tm-site-logo" />
<div class="tm-site-text-box">
<h1 class="tm-site-title">Animal Crossing</h1>
<h6 class="tm-site-description">new horizons Villagers</h6>
</div>
</div>
<nav class="col-md-6 col-12 tm-nav">
<ul class="tm-nav-ul">
<li class="tm-nav-li"><a href="index.html" class="tm-nav-link">Home</a></li>
<li class="tm-nav-li"><a href="liste.html" class="tm-nav-link active">Liste</a></li>
</nav>
</div>
</div>
</div>
</div>
<main>
<header class="row tm-welcome-section">
<h2 class="col-12 text-center tm-section-title">All the villagers! ({ici le nombre de villagers}) </h2>
</header>
<div class="row tm-gallery">
<div class="table-container">
<table>
<tr>
<th>Nom</th>
<th>Gender</th>
<th>voir</th>
</tr>
<tr>
<td>Tarina</td>
<td>Female</td>
<td>
<a href='detail.html'><i class="far fa-eye"></i></a> <!-- envoi vers la page dédié au villager -->
</td>
</tr>
<tr>
<td>Curt</td>
<td>Male</td>
<td>
<a href='detail.html'><i class="far fa-eye"></i></a> <!-- envoi vers la page dédié au villager -->
</td>
</tr>
</table>
</div>
</main>
<footer class="tm-footer text-center">
<p>Copyright © 2020 Simple House
| Design: <a rel="nofollow" href="https://templatemo.com">TemplateMo</a></p>
</footer>
</div>
</body>
</html>