-
Notifications
You must be signed in to change notification settings - Fork 0
/
banques-boursorama-vs-hello-bank-banque-vs.html
55 lines (40 loc) · 1.47 KB
/
banques-boursorama-vs-hello-bank-banque-vs.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
<html>
<head>
<!-- https://www.geeksforgeeks.org/what-is-greater-than-sign-selector-in-css/
-->
<style>
.g {
background: green;
}
.r {
background: red;
}
table{ border-collapse: collapse;}
table, th, td {
border: 1px solid;
}
body{ scrollbar-color: purple white; }
</style>
</head>
<body>
<h1>Comparatif des banques en ligne</h1>
<br>
v = 235
<!-- auto https://developer.mozilla.org/en-US/docs/Web/CSS/table-layout -->
<!-- border https://www.w3schools.com/css/css_table.asp
colors //https://stackoverflow.com/questions/31395859/background-color-of-table-cells-using-css-and-html
accents https://www.designvegetal.com/gadrat/cours/informatique/html/accents.html
-->
<table table-layout: auto;
width: 150px;>
<tr><td></td><td>Boursorama <br>BoursoBank</td><td>Hello</td><tr>
<tr><td> Dépôt espèces</td><td class="r" >X</td><td class="g" >V</td></tr>
<tr><td>Virement instantané gratuit</td><td class="g" >V</td><td class="r" >X(Paylib)</td> </tr>
<tr><td>Empreintes digitales</td> <td class="g" >V</td><td class="r" >X </td> </tr>
</table>
<br>
<a hreflang="fr" href="parrainages.html">Parrainages</a>
<br>
<a class="navbar-brand" href="index-des-ressources-resources-moueza-peter.html">Index des ressources</a>
</body>
</html>